HTML in description isn't parsed

Issue #58 resolved
Rick Barrett created an issue

HTML content within the XML isn't parsed

Comments (2)

  1. Rick Barrett reporter

    HTML tags are being seen as child tags of the XML. The proper way to do this is to enclose the HTML stuff in a CDATA tag:

    <![CDATA[ <ul> <li>Item 1</li> <li>Item 2</li> </ul> ]]>

  2. Log in to comment