kableExtra (version 0.9.0)

add_indent: Add indentations to row headers

Description

Add indentations to row headers

Usage

add_indent(kable_input, positions)

Arguments

kable_input

Output of knitr::kable() with format specified

positions

A vector of numeric row numbers for the rows that need to be indented.

Examples

Run this code
# NOT RUN {
x <- knitr::kable(head(mtcars), "html")
# Add indentations to the 2nd & 4th row
add_indent(x, c(2, 4))

# }

Run the code above in your browser using DataLab