I would like to add things like bullet points "•" and such to html using the XML Builder in Nokogiri, but everything is being escaped. How do I prevent it from being escaped?
I would like the result to be:
<span>•</span>
rather than
<span>&#8226;</span>
What am I missing?
I'm just doing this:
xml.span {
xml.text "•\ "
}
Thanks!