Drop version due to CRAN resubmission; Add examples as requested
diff --git a/man/add_header_above.Rd b/man/add_header_above.Rd
index b65516f..09b976d 100644
--- a/man/add_header_above.Rd
+++ b/man/add_header_above.Rd
@@ -21,3 +21,10 @@
function and adds an header row on top of it. This function can work with
both `HTML` and `LaTeX` outputs
}
+\examples{
+x <- knitr::kable(head(mtcars), "html")
+# Add a row of header with 3 columns on the top of the table. The column
+# span for the 2nd and 3rd one are 5 & 6.
+add_header_above(x, c(" ", "Group 1" = 5, "Group 2" = 6))
+
+}