Transform string into HTML ready for Rmarkdown and Shiny
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
#> <b>smile</b>
cat(string_trans) #when inserted into Rmarkdown will show up as bolded after knitting
#> <b>smile</b>