with this middleware you can use tidy to prettify your html, just add the class to the MIDDLEWARE_CLASSES
setting.
tidy has an enormous number of options, se Tidy Options Reference .
you must have µTidylib installed.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | import tidy
options = dict(output_xhtml=True,
add_xml_decl=True,
doctype='strict',
indent='auto',
tidy_mark=False,
hide_comments=True,
wrap=100)
class PrettifyMiddleware(object):
"""Prettify middleware"""
def process_response(self, request, response):
if response.headers['Content-Type'].split(';', 1)[0] == 'text/html':
content = response.content
content = str(tidy.parseString(content, **options))
response.content = content
return response
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
This is great, I needed this for a upcoming project. Thanks!
#
I wonder what the performance hit is. Still, this is awesome. Thanks!
#
Has problems with unicode though... messes up all my umlauts.
#
In the latest Django SVN (0.97-pre-SVN-7523) line 16 is just
#
Please login first before commenting.