I'm attempting to use this library with Heist by passing the results from the markdown function through xmlhtml's renderHtmlNodes.
import Text.Markdown (markdown, defaultMarkdownSettings, msXssProtect)
import Text.Blaze.Renderer.XmlHtml (renderHtmlNodes)
renderHtmlNodes $ markdown defaultMarkdownSettings { msXssProtect = False } "# Title\n\n* one\n* two (*foo*)\n"
The results are pretty close to what I would expect except for one little problem: the opening and closing tags for the unordered list are in a TextNode:
[Element {elementTag = "h1", elementAttrs = [], elementChildren = [TextNode "Title"]}
,TextNode "<ul>"
,Element {elementTag = "li", elementAttrs = [], elementChildren = [TextNode "one"]}
,Element {elementTag = "li", elementAttrs = [], elementChildren =
[TextNode "two ("
,Element {elementTag = "i", elementAttrs = [], elementChildren = [TextNode "foo"]}
,TextNode ")"
]}
,TextNode "</ul>"
]
The correct output should look like this:
[Element {elementTag = "h1", elementAttrs = [], elementChildren = [TextNode "Title"]}
,Element {elementTag = "ul", elementAttrs = [], elementChildren =
[Element {elementTag = "li", elementAttrs = [], elementChildren = TextNode "one"]}
,Element {elementTag = "li", elementAttrs = [], elementChildren =
[TextNode "two ("
,Element {elementTag = "i", elementAttrs = [], elementChildren = [TextNode "foo"]}
,TextNode ")"
]}
]}
]
The results are the same for both ordered and unordered lists.
I'm attempting to use this library with Heist by passing the results from the markdown function through xmlhtml's renderHtmlNodes.
The results are pretty close to what I would expect except for one little problem: the opening and closing tags for the unordered list are in a TextNode:
The correct output should look like this:
The results are the same for both ordered and unordered lists.