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 <
for example.
How can I avoid this escaping behaviour?
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 <
for example.
How can I avoid this escaping behaviour?
Copyright © 2021 Jogjafile Inc.
You can avoid the escaping behavior by parsing the whatever you want to include into a list of
Node
s 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