blob: a1fdcdd66df736eca075bf84a78a1ef0f129aead [file] [log] [blame]
Hao Zhueaef4312018-01-10 17:05:23 -05001#' @import htmlwidgets
2#' @export
3kableWidget <- function(kable_input, width = NULL, height = NULL) {
4 kable_format <- attr(kable_input, "format")
5 if (kable_format != "html") {
6 stop("kable_as_widget only works for HTML tables.")
7 }
8 x <- as.character(kable_input)
9 htmlwidgets::createWidget("kable_as_widget", x,
10 width = width, height = height)
11}