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

Can I avoid the automatic addition of <html> <head> <body> tags ? #138

Closed raratiru closed 5 years ago

raratiru commented 5 years ago

I am trying to minify fragments of code in django templates and the default behavior will not help.

pyminify the following: <div></div> it will return <html><head></head><body><div></div></body></html>

raratiru commented 5 years ago

Apparently not.