blob: b4537484913fc6cf9f691a0e602d2fe25175be9f [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{
9kable_classic(kable_input, striped = FALSE, hover = FALSE, ...)
10
11kable_minimal(kable_input, striped = FALSE, hover = FALSE, ...)
12
13kable_material(kable_input, striped = FALSE, hover = FALSE, ...)
14}
15\arguments{
16\item{kable_input}{A HTML kable object.}
17
18\item{striped}{T/F for adding striped rows.}
19
20\item{hover}{T/F for adding hover effects.}
21
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}