morbac / xmltools

XML Tools plugin for Notepad++
GNU General Public License v3.0
257 stars 57 forks source link

Does not handle html5 style void tags such as source, img and picture #211

Open drahgon55 opened 5 months ago

drahgon55 commented 5 months ago

Example: <li><span><picture><source><img></span></li>

This will format to look like this:

<li>
    <span>
        <picture>
            <source>
                <img>
            </li>

This is due to , and tags being void tags and not needing a self-closed ending /

If I add closing slashes to all the void tags it will work but many many html5 existing code will not be closed since it is valid.