as.html {r2symbols} | R Documentation |
Transform to html
Description
Transform string into HTML ready for Rmarkdown and Shiny
Usage
as.html(h)
Arguments
h |
string |
Value
HTML form of the string for easy insertion in Shiny or Rmarkdown documents
Examples
string <- "<b>smile</b>" #html b tag included to make the string bold
string_trans <- as.html(string)
cat(string) #when inserted in Rmarkdown will not show up as bolded
cat(string_trans) #when inserted into Rmarkdown will show up as bolded after knitting
[Package r2symbols version 1.4 Index]