-
-
Notifications
You must be signed in to change notification settings - Fork 278
Closed
Labels
Description
kramdown seems to treat CDATA like normal text in XML (HTML) parts of a markdown input.
$ kramdown -o html
<figure anchor="xml_happy3">
<artwork align="left" name="" type="" alt=""><![CDATA[
+-----------------------+
| Use XML, be Happy :-) |
|_______________________|
]]></artwork>
</figure>
^D
<figure anchor="xml_happy3">
<artwork align="left" name="" type="" alt=""><![CDATA[
+-----------------------+
| Use XML, be Happy :-) |
|_______________________|
]]></artwork>
</figure>
Actually, I cannot find any CDATA processing on the input side of the kramdown parser.
Reactions are currently unavailable