Escape or unescape text in cells
Setting escape_contents
to FALSE
allows you to include raw HTML or
TeX code in your cells.
escape_contents(ht) escape_contents(ht) <- value set_escape_contents(ht, row, col, value ) map_escape_contents(ht, row, col, fn)
ht |
A huxtable. |
row |
A row specifier. See rowspecs for details. |
col |
An optional column specifier. |
fn |
A mapping function. See mapping-functions for details. |
value |
A logical vector or matrix. Set to |
If markdown()
is TRUE
for a cell, the escape_contents
property
will be ignored.
escape_contents()
returns the escape_contents
property.
set_escape_contents()
returns the modified huxtable.
sanitize()
for escaping text manually.
ht <- huxtable( Text = "x squared", Maths = "$x^2$" ) ht <- set_escape_contents(ht, FALSE) ## Not run: quick_pdf(ht) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.