html-agility-pack icon indicating copy to clipboard operation
html-agility-pack copied to clipboard

Closing tag is missing within <![CDATA

Open bytecode77 opened this issue 4 months ago • 6 comments

1. Description

Closing tag is missing within <![CDATA object.

Background: This issue surfaced when parsing HTML <code> blocks. The HTML content is given by Confluence, where the HTML is parsed from.

3. Fiddle or Project

https://dotnetfiddle.net/XmcOB6

Expected Result

<![CDATA[<a href="foo">
bar
</a>]]>

Actual Result

<![CDATA[<a href="foo">
bar
]]>

4. Any further technical details

  • HAP version: 1.11.67
  • NET version 7.0

bytecode77 avatar Oct 11 '24 10:10 bytecode77