Marks the given text as HTML, which means thetag functions will knownot to perform HTML escaping on it.
HTML(text,..., .noWS=NULL)The inputtext, but marked as HTML.
el<-div(HTML("I like <u>turtles</u>"))cat(as.character(el))#> <div>I like <u>turtles</u></div>