Skip to content

Instantly share code, notes, and snippets.

@rdegges
Created March 5, 2012 07:28
Show Gist options
  • Save rdegges/1977241 to your computer and use it in GitHub Desktop.
Save rdegges/1977241 to your computer and use it in GitHub Desktop.
A snippet of Django's settings.py with django-htmlmin enabled.
MIDDLEWARE_CLASSES = (
'django.middleware.gzip.GZipMiddleware',
'htmlmin.middleware.HtmlMinifyMiddleware',
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment