Skip to content

Lists (ordered & unordered) don't use the correct internal Type #36

@cimmanon

Description

@cimmanon

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions