Is there an alternative to textSplice that does not escape the content?

68 Views Asked by At

https://hackage.haskell.org/package/heist-1.0.1.0/docs/Heist-Interpreted.html#v:textSplice textSplice appears to escape the contents. It replaces < to &lt; for example.

How can I avoid this escaping behaviour?

1

There are 1 best solutions below

2
On

You can avoid the escaping behavior by parsing the whatever you want to include into a list of Nodes and then returning those directly. Here's the function you want:

http://hackage.haskell.org/package/xmlhtml-0.2.3.5/docs/Text-XmlHtml.html#v:parseHTML