as.html: Transform to html

View source: R/asHtml.R

as.htmlR 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


r2symbols documentation built on March 31, 2023, 8:19 p.m.