cell_spec | R Documentation |
Specify Cell format before it gets into kable
cell_spec(
x,
format,
bold = FALSE,
italic = FALSE,
monospace = FALSE,
underline = FALSE,
strikeout = FALSE,
color = NULL,
background = NULL,
align = NULL,
font_size = NULL,
angle = NULL,
tooltip = NULL,
popover = NULL,
link = NULL,
new_tab = FALSE,
extra_css = NULL,
escape = TRUE,
background_as_tile = TRUE,
latex_background_in_cell = TRUE
)
text_spec(
x,
format,
bold = FALSE,
italic = FALSE,
monospace = FALSE,
underline = FALSE,
strikeout = FALSE,
color = NULL,
background = NULL,
align = NULL,
font_size = NULL,
angle = NULL,
tooltip = NULL,
popover = NULL,
link = NULL,
new_tab = FALSE,
extra_css = NULL,
escape = TRUE,
background_as_tile = TRUE,
latex_background_in_cell = FALSE
)
x |
Things to be formatted. It could be a vector of numbers or strings. |
format |
Either "html" or "latex". It can also be set through
|
bold |
T/F for font bold. |
italic |
T/F for font italic. |
monospace |
T/F for font monospaced (verbatim) |
underline |
A T/F value to control whether the text of the selected row need to be underlined |
strikeout |
A T/F value to control whether the text of the selected row need to be struck out. |
color |
A character string for text color. Here please pay attention to the differences in color codes between HTML and LaTeX. |
background |
A character string for background color. Here please pay attention to the differences in color codes between HTML and LaTeX. Also note that in HTML, background defined in cell_spec won't cover the whole cell. |
align |
A character string for cell alignment. For HTML, possible
values could be |
font_size |
A numeric input for font size. For HTML, you can also use
options including |
angle |
0-360, degree that the text will rotate. Can be a vector. |
tooltip |
A vector of strings to be displayed as tooltip. Obviously, this feature is only available in HTML. Read the package vignette to see how to use bootstrap tooltip css to improve the loading speed and look. |
popover |
Similar with tooltip but can hold more contents. The best way
to build a popover is through |
link |
A vector of strings for url links. Can be used together with tooltip and popover. |
new_tab |
T/F for whether to open up the new link in new tab. |
extra_css |
Extra css text to be passed into the cell |
escape |
T/F value showing whether special characters should be escaped. |
background_as_tile |
T/F value indicating if you want to have round cornered tile as background in HTML. |
latex_background_in_cell |
T/F value. It only takes effect in LaTeX
when |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.