voku / HtmlMin

:clamp: HtmlMin: HTML Compressor and Minifier via PHP
MIT License
160 stars 21 forks source link

Less-Than Sign #54

Closed illuminati0n closed 3 years ago

illuminati0n commented 3 years ago

What is this feature about (expected vs actual behaviour)?

How can I reproduce it?

I have a table with specifications. <table> <tr> <td><3</td> </tr></table>

And i use: $htmlMin->doRemoveOmmitedHtmlTags(false); $htmlMin->minify($table);

I want: <table><tr><td><3</td></tr></table>

I got: <table><tr><td></td></tr></table>

How can I save <3 in html?

issue-label-bot[bot] commented 3 years ago

Issue Label Bot is not confident enough to auto-label this issue. See dashboard for more details.

voku commented 3 years ago

Screenshot_20200709-165838

https://validator.w3.org/nu/#textarea

illuminati0n commented 3 years ago

Ok, sorry. Thanks.