as.html | R Documentation |
Transform string into HTML ready for Rmarkdown and Shiny
as.html(h)
h |
string |
HTML form of the string for easy insertion in Shiny or Rmarkdown documents
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