Metadata-Version: 1.1
Name: feincms-cleanse
Version: 5
Summary: Default HTML cleansing in FeinCMS
Home-page: http://github.com/feincms/feincms-cleanse/
Author: Matthias Kestenholz
Author-email: mk@feinheit.ch
License: BSD License
Description: ===============
        feincms-cleanse
        ===============
        
        This is the FeinCMS HTML cleansing function which lived under the name of
        ``feincms.utils.html.cleanse.cleanse_html``, and has been moved to
        its own repository now to be usable in other projects, and to not set a
        precedent for a particular HTML cleaning technique in FeinCMS anymore.
        
        Usage is simple::
        
            from feincms_cleanse import cleanse_html
        
            >>> cleanse_html(u'<span style="font-weight:bold">some text</span>')
            u'<strong>some text</strong>'
        
Platform: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development
