``` html <![CDATA[ This should be CDATA... ]]> ``` results in ``` js [ { data: '[CDATA[\nThis should be CDATA...\n]]', type: 'comment' } ] ``` when it should result in ``` js [ { data: '\nThis should be CDATA...\n', type: 'cdata' } ] ``` using version 3.1.5
<![CDATA[ This should be CDATA... ]]>results in
when it should result in
using version 3.1.5