add all_cols to add_indent
diff --git a/man/kable_styling.Rd b/man/kable_styling.Rd
index ee6de44..f21be79 100644
--- a/man/kable_styling.Rd
+++ b/man/kable_styling.Rd
@@ -4,14 +4,24 @@
\alias{kable_styling}
\title{HTML table attributes}
\usage{
-kable_styling(kable_input, bootstrap_options = "basic",
- latex_options = "basic", full_width = NULL, position = "center",
- font_size = NULL, row_label_position = "l",
+kable_styling(
+ kable_input,
+ bootstrap_options = "basic",
+ latex_options = "basic",
+ full_width = NULL,
+ position = "center",
+ font_size = NULL,
+ row_label_position = "l",
repeat_header_text = "\\\\textit{(continued)}",
repeat_header_method = c("append", "replace"),
- repeat_header_continued = FALSE, stripe_color = "gray!6",
- stripe_index = NULL, latex_table_env = NULL, protect_latex = TRUE,
- table.envir = "table", fixed_thead = FALSE)
+ repeat_header_continued = FALSE,
+ stripe_color = "gray!6",
+ stripe_index = NULL,
+ latex_table_env = NULL,
+ protect_latex = TRUE,
+ table.envir = "table",
+ fixed_thead = FALSE
+)
}
\arguments{
\item{kable_input}{Output of \code{knitr::kable()} with \code{format} specified}
@@ -30,14 +40,14 @@
table to the exact position. It is useful when the \code{LaTeX} table is contained
in a \code{table} environment after you specified captions in \code{kable()}. It will
force the table to stay in the position where it was created in the document.
-A stronger version: \code{HOLD_position} requires the \code{float} package and specifies \code{[H]}.
+A stronger version: \code{HOLD_position} requires the \code{float} package and specifies \verb{[H]}.
\code{scale_down} is useful for super wide table. It will automatically adjust
the table to page width. \code{repeat_header} in only meaningful in a longtable
environment. It will let the header row repeat on every page in that long
table.}
\item{full_width}{A \code{TRUE} or \code{FALSE} variable controlling whether the HTML
-table should have 100\% width. Since HTML and pdf have different flavors on
+table should have 100\\% width. Since HTML and pdf have different flavors on
the preferable format for \code{full_width}. If not specified, a HTML table will
have full width by default but this option will be set to \code{FALSE} for a
LaTeX table}
@@ -45,7 +55,7 @@
\item{position}{A character string determining how to position the table
on a page. Possible values include \code{left}, \code{center}, \code{right}, \code{float_left}
and \code{float_right}. Please see the package doc site for demonstrations. For
-a \code{LaTeX} table, if \code{float_*} is selected, \code{LaTeX} package \code{wrapfig} will be
+a \code{LaTeX} table, if \verb{float_*} is selected, \code{LaTeX} package \code{wrapfig} will be
imported.}
\item{font_size}{A numeric input for table font size}
@@ -79,7 +89,7 @@
\item{table.envir}{LaTeX floating table environment. \code{kable_style} will put
a plain no-caption table in a \code{table} environment in order to center the
-table. You can specify this option to things like \code{table*} or \code{float*} based
+table. You can specify this option to things like \verb{table*} or \verb{float*} based
on your need.}
\item{fixed_thead}{HTML table option so table header row is fixed at top.