library(XML)
txt = newXMLTextNode("x < 1")
txt # okay
saveXML(txt) # x &lt; 1
txt = newXMLTextNode(I("x < 1"))
txt # okay
saveXML(txt) # x &lt; 1
.Call("R_setXMLInternalTextNode_noenc", txt)
saveXML(txt)
#
xml <- xmlTree("tree")
xml$addNode("test", "a ∩ b")
xml$addNode("test", I("a ∩ b"))
xml$value()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.