html_class | R Documentation |
Combine 'HTML' classes to produce nice, clean 'HTML' class
string via combine_html_class
, or to remove a class via
remove_html_class
combine_html_class(...)
remove_html_class(target, class)
... |
one or more characters, classes to combine; duplicated classes will be removed |
target |
characters, class list |
class |
one or more characters, classes to be removed from |
A character string of new 'HTML' class
# Combine classes "a b c d e"
combine_html_class("a", "b a", c("c", " d", "b"), list("e ", "a"))
# Remove class
remove_html_class("a b c e", c("b", "c "))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.