aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/htmltidy.pm
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-05 01:09:04 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-05 01:09:04 +0000
commite8ec0187dad6eb81e71fedfaefced2dc2f6b2fda (patch)
treeadbfdbbd5ab4324a3c04681661df5a96255a7f3d /IkiWiki/Plugin/htmltidy.pm
parent00ee90622cde1d2f82490994f4034d948b90c7cc (diff)
downloadikiwiki-e8ec0187dad6eb81e71fedfaefced2dc2f6b2fda.tar
ikiwiki-e8ec0187dad6eb81e71fedfaefced2dc2f6b2fda.tar.gz
* Disable tidy generator tag.
Diffstat (limited to 'IkiWiki/Plugin/htmltidy.pm')
-rw-r--r--IkiWiki/Plugin/htmltidy.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/htmltidy.pm b/IkiWiki/Plugin/htmltidy.pm
index 6c1fba98e..94263e558 100644
--- a/IkiWiki/Plugin/htmltidy.pm
+++ b/IkiWiki/Plugin/htmltidy.pm
@@ -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');