blob: 73f98645b6278abfa154b0846d38bad3b794d069 [file] [log] [blame]
Hao Zhueaef4312018-01-10 17:05:23 -05001#' @import htmlwidgets
2#' @export
Hao Zhu7cb0e372018-01-10 18:29:30 -05003kableExtraWidget <- function(kable_input, width = NULL, height = NULL) {
Hao Zhueaef4312018-01-10 17:05:23 -05004 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}