ezyang / htmlpurifier

Standards compliant HTML filter written in PHP
http://htmlpurifier.org
GNU Lesser General Public License v2.1
3.02k stars 323 forks source link

Is it possible to put a div inside an anchor tag? #368

Closed mathsgod closed 1 year ago

mathsgod commented 1 year ago

When purifier a div tag inside a tag, output is not my expected. HTML5 show be allow tag to be wrapped around a

element.

Source:

<a href="www.example.com">        
    <div> this is a link </div>
</a>

Output:

<a href="www.example.com">        
    </a><div><a href="www.example.com"> this is a link </a></div><a href="www.example.com">
</a>

Preview

bytestream commented 1 year ago

This package doesn't support HTML5. You'll need to use xemlock/htmlpurifier-html5

mathsgod commented 1 year ago

Thanks.