Made changes to add_header_left.
Change the name of attr original_kable_meta to kable_meta
diff --git a/man/add_header_above.Rd b/man/add_header_above.Rd
index 09b976d..cbe6988 100644
--- a/man/add_header_above.Rd
+++ b/man/add_header_above.Rd
@@ -4,7 +4,7 @@
\alias{add_header_above}
\title{Add a header row on top of current header}
\usage{
-add_header_above(kable_input, header = NULL)
+add_header_above(kable_input, header = NULL, bold = F, italic = F)
}
\arguments{
\item{kable_input}{Output of `knitr::kable()` with `format` specified}
@@ -14,6 +14,10 @@
for a 3-column table with "title" spanning across column 2 and 3. For
convenience, when `colspan` equals to 1, users can drop the ` = 1` part.
As a result, `c(" ", "title" = 2)` is the same as `c(" " = 1, "title" = 2)`.}
+
+\item{bold}{A T/F value to control whether the text should be bolded.}
+
+\item{italic}{A T/F value to control whether the text should to be emphasized.}
}
\description{
Tables with multiple rows of header rows are extremely useful