cobrateam / django-htmlmin

HTML minifier for Python frameworks (not only Django, despite the name).
http://pypi.python.org/pypi/django-htmlmin
BSD 2-Clause "Simplified" License
542 stars 73 forks source link

Tag is being closed when not needed </source> #116

Open khrizo opened 7 years ago

khrizo commented 7 years ago
<audio controls>
  <source src="file.ogg" type="audio/ogg"> <-- right 
  <source src="files.mp3" type="audio/mpeg"></source> <-- This the output I get.
</audio>