blob: 4250603747f18e17e324bde7fd8875aac9aff4d3 [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}
Hao Zhud8a2e332020-08-11 01:26:32 -04005\alias{kable_classic_2}
Hao Zhuad4ea392020-08-10 01:24:50 -04006\alias{kable_minimal}
7\alias{kable_material}
Hao Zhu9bf19982020-08-11 00:50:33 -04008\alias{kable_material_dark}
Hao Zhuad4ea392020-08-10 01:24:50 -04009\title{Alternative HTML themes}
10\usage{
Hao Zhudcbdff62020-08-10 13:29:53 -040011kable_classic(kable_input, lightable_options = "basic", ...)
Hao Zhuad4ea392020-08-10 01:24:50 -040012
Hao Zhud8a2e332020-08-11 01:26:32 -040013kable_classic_2(kable_input, lightable_options = "basic", ...)
14
Hao Zhudcbdff62020-08-10 13:29:53 -040015kable_minimal(kable_input, lightable_options = "basic", ...)
Hao Zhuad4ea392020-08-10 01:24:50 -040016
Hao Zhudcbdff62020-08-10 13:29:53 -040017kable_material(kable_input, lightable_options = "basic", ...)
Hao Zhu9bf19982020-08-11 00:50:33 -040018
19kable_material_dark(kable_input, lightable_options = "basic", ...)
Hao Zhuad4ea392020-08-10 01:24:50 -040020}
21\arguments{
22\item{kable_input}{A HTML kable object.}
23
Hao Zhudcbdff62020-08-10 13:29:53 -040024\item{lightable_options}{Options to customize lightable. Similar with
25\code{bootstrap_options} in \code{kable_styling}. Choices include \code{basic}, \code{striped}
26and \code{hover}.}
Hao Zhuad4ea392020-08-10 01:24:50 -040027
28\item{...}{Everything else you need to specify in \code{kable_styling}.}
29}
30\description{
31kableExtra uses the built-in bootstrap themes by default in
32\code{kable_styling()}. Alternatively, you can use a customized table themes for
33your table. This \code{lightable} table style sheet comes with three formats,
Hao Zhud8a2e332020-08-11 01:26:32 -040034namely \code{lightable-minimal}, \code{lightable-classic}, \code{lightable-material} and
35\code{lightable-material-dark} with \code{hover} and \code{striped} options.
Hao Zhuad4ea392020-08-10 01:24:50 -040036}