Fix #30 by adding option escape to add_header_abover & group_rows
diff --git a/man/add_header_above.Rd b/man/add_header_above.Rd
index d879bc7..6e3f214 100644
--- a/man/add_header_above.Rd
+++ b/man/add_header_above.Rd
@@ -4,7 +4,8 @@
 \alias{add_header_above}
 \title{Add a header row on top of current header}
 \usage{
-add_header_above(kable_input, header = NULL, bold = F, italic = F)
+add_header_above(kable_input, header = NULL, bold = FALSE, italic = FALSE,
+  monospace = FALSE, escape = TRUE)
 }
 \arguments{
 \item{kable_input}{Output of \code{knitr::kable()} with \code{format} specified}
@@ -18,6 +19,12 @@
 \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{monospace}{A T/F value to control whether the text of the selected column
+need to be monospaced (verbatim)}
+
+\item{escape}{A T/F value showing whether special characters should be
+escaped.}
 }
 \description{
 Tables with multiple rows of header rows are extremely useful
diff --git a/man/group_rows.Rd b/man/group_rows.Rd
index 8275309..b89ad91 100644
--- a/man/group_rows.Rd
+++ b/man/group_rows.Rd
@@ -5,7 +5,8 @@
 \title{Put a few rows of a table into one category}
 \usage{
 group_rows(kable_input, group_label, start_row, end_row,
-  label_row_css = "border-bottom: 1px solid;", latex_gap_space = "0.5em")
+  label_row_css = "border-bottom: 1px solid;", latex_gap_space = "0.5em",
+  escape = TRUE)
 }
 \arguments{
 \item{kable_input}{Output of \code{knitr::kable()} with \code{format} specified}
@@ -26,6 +27,9 @@
 \item{latex_gap_space}{A character value telling LaTeX how large the gap
 between the previous row and the group labeling row. Only useful for LaTeX
 documents.}
+
+\item{escape}{A T/F value showing whether special characters should be
+escaped.}
 }
 \description{
 Group a few rows in a table together under a label.