Drop version due to CRAN resubmission; Add examples as requested
diff --git a/man/column_spec.Rd b/man/column_spec.Rd
index d7a08ec..a107eb8 100644
--- a/man/column_spec.Rd
+++ b/man/column_spec.Rd
@@ -4,7 +4,8 @@
\alias{column_spec}
\title{Specify the look of the selected column}
\usage{
-column_spec(kable_input, column, width = NULL, bold = F, italic = F)
+column_spec(kable_input, column, width = NULL, bold = FALSE,
+ italic = FALSE)
}
\arguments{
\item{kable_input}{Output of `knitr::kable()` with `format` specified}
@@ -25,3 +26,8 @@
its look. Right now it supports the following three properties: column width,
bold text and italic text.
}
+\examples{
+x <- knitr::kable(head(mtcars), "html")
+column_spec(x, 1, width = "20em", bold = TRUE, italic = TRUE)
+
+}