commit | f2dfd14759a038dd9ec7b52e48728cc2be6e0f7e | [log] [tgz] |
---|---|---|
author | Hao Zhu <haozhu233@gmail.com> | Mon Jul 24 14:43:28 2017 -0400 |
committer | Hao Zhu <haozhu233@gmail.com> | Mon Jul 24 14:43:28 2017 -0400 |
tree | bb0551fe68c7f0eba41f930984e72017b8e111e8 | |
parent | 9eeb10bb9d9e3d94c55b218a03bfe2faa8559a2e [diff] [blame] |
solve the XML declaration problem
diff --git a/R/add_header_above.R b/R/add_header_above.R index 1242868..5384f4d 100644 --- a/R/add_header_above.R +++ b/R/add_header_above.R
@@ -53,8 +53,7 @@ new_header_row <- htmlTable_new_header_generator(header, bold, italic) xml_add_child(kable_xml_thead, new_header_row, .where = 0) - out <- structure(as.character(kable_xml), format = "html", - class = "knitr_kable") + out <- as_kable_xml(kable_xml) attributes(out) <- kable_attrs return(out) }