#156 add align to add_header_above
diff --git a/man/add_header_above.Rd b/man/add_header_above.Rd
index a056225..0c54c36 100644
--- a/man/add_header_above.Rd
+++ b/man/add_header_above.Rd
@@ -5,7 +5,7 @@
\title{Add a header row on top of current header}
\usage{
add_header_above(kable_input, header = NULL, bold = FALSE, italic = FALSE,
- monospace = FALSE, escape = TRUE, line = TRUE)
+ monospace = FALSE, align = "c", escape = TRUE, line = TRUE)
}
\arguments{
\item{kable_input}{Output of \code{knitr::kable()} with \code{format} specified}
@@ -23,6 +23,10 @@
\item{monospace}{A T/F value to control whether the text of the selected column
need to be monospaced (verbatim)}
+\item{align}{A character string for cell alignment. For HTML, possible values could
+be \code{l}, \code{c}, \code{r} plus \code{left}, \code{center}, \code{right}, \code{justify}, \code{initial} and \code{inherit}
+while for LaTeX, you can only choose from \code{l}, \code{c} & \code{r}.}
+
\item{escape}{A T/F value showing whether special characters should be
escaped.}