alek-sys / sublimetext_indentxml

Plugin for Sublime Text editor for reindenting XML and JSON files
MIT License
534 stars 135 forks source link

CDATA support #3

Closed du-song closed 12 years ago

du-song commented 12 years ago

INPUT

<a><content><![CDATA[xxx]]></content></a>

OUTPUT

<a>
    <content>
<![CDATA[xxx]]> </content>
</a>

EXPECTED

<a>
    <content>
        <![CDATA[xxx]]>
    </content>
</a>