Sophie

Sophie

distrib > Mandriva > 2010.2 > x86_64 > by-pkgid > 98fa3150023cd62f23f15f22f44a51b1 > files > 1

apache-mod_tidy-0.5.5-10mdv2010.1.x86_64.rpm

<IfDefine HAVE_TIDY>
    <IfModule !mod_tidy.c>
	LoadModule tidy_module	extramodules/mod_tidy.so
    </IfModule>
</IfDefine>
	
<IfModule mod_tidy.c>
	
    # Run all HTML and XHTML through mod_tidy
    AddOutputFilterByType TIDY text/html application/xhtml+xml

    # Tidy Options
    # (see also Tidy's Quick Reference on http://tidy.sourceforge.net/docs/quickref.html)
    TidyOption accessibility-check 3
    TidyOption add-xml-decl yes
    TidyOption char-encoding utf8
    TidyOption enclose-text yes
    TidyOption indent auto
    TidyOption logical-emphasis yes    
    TidyOption output-xhtml yes
    TidyOption tidy-mark yes
    TidyOption wrap 0
    TidyOption doctype strict
	    
</IfModule>