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
diff --git a/man/add_header_left.Rd b/man/add_header_left.Rd
index 54515a4..51b2ae6 100644
--- a/man/add_header_left.Rd
+++ b/man/add_header_left.Rd
@@ -5,7 +5,7 @@
 \title{Add a heading column to the left side of the table}
 \usage{
 add_header_left(kable_input, header = NULL, header_name = "", align = "c",
-  ...)
+  width = NULL, bold = F, italic = F, full_midline)
 }
 \arguments{
 \item{kable_input}{Output of `knitr::kable()` with `format` specified}
@@ -21,9 +21,16 @@
 
 \item{align}{Column alignment. you can choose from "c", "l" or "r"}
 
-\item{...}{extra variables for latex or html. For LaTeX table, you can have
-a TRUE/FALSE option `full_midline` to control if the mid line needs to be
-extended to the end of row.}
+\item{width}{A character string for the width of the new column. Values
+could be "10cm", "3in" or "30em", etc..}
+
+\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.}
+
+\item{full_midline}{This option currently only work in LaTeX. It's a
+TRUE/FALSE option to control if the mid line needs to be extended to the end
+of row.}
 }
 \description{
 This function uses the same syntax as add_header_above. It will