Login

prettify html

Author:
marchino
Posted:
April 11, 2007
Language:
Python
Version:
.96
Score:
8 (after 8 ratings)

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

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

henriklied (on April 12, 2007):

This is great, I needed this for a upcoming project. Thanks!

#

whiteinge (on April 12, 2007):

I wonder what the performance hit is. Still, this is awesome. Thanks!

#

luckystarr (on September 10, 2007):

Has problems with unicode though... messes up all my umlauts.

#

findlay (on May 12, 2008):

In the latest Django SVN (0.97-pre-SVN-7523) line 16 is just

if response['Content-Type'].split(';', 1)[0] == 'text/html':

#

Please login first before commenting.