h1. Customization _Describes how to customize and add your own functionality to django-compress_ django-compress can be customized an a couple of ways. If you need to change the output of the HTML-tags generated from the templatetags, this can be done by overriding the templates compress/css.html and compress/js.html. You can also write your own filter-class, if you for example want to implement other types of compressors. All you need to do is to define a filter_css and/or a filter_js functions in a class that inherits from compress.filter_base.FilterBase, and specify it in the tuple of filters (COMPRESS_CSS_FILTERS/COMPRESS_JS_FILTERS) (see [Configuration] for more information) in the settings. For now, see the files under [http://django-compress.googlecode.com/svn/trunk/filters/ filters/] for more details. CSSTidyFilter uses and external program, and JSMinCompressor just calls a Python-function, so it will probably be able to point you in the right direction when writing custom filters.