html row_spec
diff --git a/man/row_spec.Rd b/man/row_spec.Rd
new file mode 100644
index 0000000..169c05a
--- /dev/null
+++ b/man/row_spec.Rd
@@ -0,0 +1,29 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/row_spec.R
+\name{row_spec}
+\alias{row_spec}
+\title{Specify the look of the selected row}
+\usage{
+row_spec(kable_input, row, bold = FALSE, italic = FALSE)
+}
+\arguments{
+\item{kable_input}{Output of `knitr::kable()` with `format` specified}
+
+\item{row}{A numeric value indicating which row to be selected}
+
+\item{bold}{A T/F value to control whether the text of the selected row
+need to be bolded.}
+
+\item{italic}{A T/F value to control whether the text of the selected row
+need to be emphasized.}
+}
+\description{
+This function allows users to select a row and then specify
+its look. Right now it supports the following two properties: bold text and
+italic text.
+}
+\examples{
+x <- knitr::kable(head(mtcars), "html")
+row_spec(x, 1, bold = TRUE, italic = TRUE)
+
+}