blob: 89884eaa327057501c498c39a8589a3bbeed29b8 [file] [log] [blame]
Hao Zhuad4ea392020-08-10 01:24:50 -04001% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/light_themes.R
3\name{kable_classic}
4\alias{kable_classic}
5\alias{kable_minimal}
6\alias{kable_material}
7\title{Alternative HTML themes}
8\usage{
Hao Zhudcbdff62020-08-10 13:29:53 -04009kable_classic(kable_input, lightable_options = "basic", ...)
Hao Zhuad4ea392020-08-10 01:24:50 -040010
Hao Zhudcbdff62020-08-10 13:29:53 -040011kable_minimal(kable_input, lightable_options = "basic", ...)
Hao Zhuad4ea392020-08-10 01:24:50 -040012
Hao Zhudcbdff62020-08-10 13:29:53 -040013kable_material(kable_input, lightable_options = "basic", ...)
Hao Zhuad4ea392020-08-10 01:24:50 -040014}
15\arguments{
16\item{kable_input}{A HTML kable object.}
17
Hao Zhudcbdff62020-08-10 13:29:53 -040018\item{lightable_options}{Options to customize lightable. Similar with
19\code{bootstrap_options} in \code{kable_styling}. Choices include \code{basic}, \code{striped}
20and \code{hover}.}
Hao Zhuad4ea392020-08-10 01:24:50 -040021
22\item{...}{Everything else you need to specify in \code{kable_styling}.}
23}
24\description{
25kableExtra uses the built-in bootstrap themes by default in
26\code{kable_styling()}. Alternatively, you can use a customized table themes for
27your table. This \code{lightable} table style sheet comes with three formats,
28namely \code{lightable-minimal}, \code{lightable-classic} and \code{lightable-material} with
29\code{hover} and \code{striped} options.
30}