vkiryukhin / vkBeautify

vkBeautify is a small, simple and powerfull javascript plugin to beautify XML, JSON, CSS and SQL text.
http://www.eslinstructor.net/vkbeautify/
Other
316 stars 97 forks source link

Issue with wrong shift fix #24

Closed maximzmushko closed 6 years ago

maximzmushko commented 6 years ago

xml to reproduse:

<tag1><tag2><tag3><tag4><tag5 xmlns:ns="url"/></tag4></tag3></tag2></tag1>

</tag4> will have incorrect shift

<tag1>
    <tag2>
        <tag3>
            <tag4>
                <tag5
                    xmlns:ns="url"/>
                </tag4>
            </tag3>
        </tag2>
    </tag1>