]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/htmltidy.pm
* Disable tidy generator tag.
[ikiwiki.git] / IkiWiki / Plugin / htmltidy.pm
index 6c1fba98e1b98e913ead06258a74ac21050d34de..94263e558284e6c18863799cb83d5a78ba599ca4 100644 (file)
@@ -17,7 +17,7 @@ sub import { #{{{
 } # }}}
 
 sub format ($) { #{{{
-       open2(*IN, *OUT, 'tidy -quiet -asxhtml -indent -utf8 --show-warnings no') or return shift;
+       open2(*IN, *OUT, 'tidy -quiet -asxhtml -indent -utf8 --show-warnings no --tidy-mark no') or return shift;
        # open2 doesn't respect "use open ':utf8'"
        binmode (IN, ':utf8'); 
        binmode (OUT, ':utf8');