I use this library in combination with symfony/html-sanitizer to get rid of xss exploits etc.
In my html there is a <div> </div> symfony/html-sanitizer changes this to <div> </div> (so a non breaking space without html entity)
Now if voku/htmlmin minifies this, it becomes <div>â </div>
I fixed it locally with a str_replace, but it would be better if this library can handle this properly?