aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/htmltidy.pm
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-05 02:31:38 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-05 02:31:38 +0000
commita41abc80ac6e4cb8bd146fe157d53bb6576b9426 (patch)
treef35ac2b48a88cba286d7b6437b2c71421965e300 /IkiWiki/Plugin/htmltidy.pm
parentd98b2480f9bef1205bb6014c39e9af22843074d6 (diff)
downloadikiwiki-a41abc80ac6e4cb8bd146fe157d53bb6576b9426.tar
ikiwiki-a41abc80ac6e4cb8bd146fe157d53bb6576b9426.tar.gz
* Turn off tidy indentation too.
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 5a6a494ed..e39297319 100644
--- a/IkiWiki/Plugin/htmltidy.pm
+++ b/IkiWiki/Plugin/htmltidy.pm
@@ -17,7 +17,7 @@ sub import { #{{{
} # }}}
sub sanitize ($) { #{{{
- open2(*IN, *OUT, 'tidy -quiet -asxhtml -indent -utf8 --show-body-only yes --show-warnings no --tidy-mark no') or return shift;
+ open2(*IN, *OUT, 'tidy -quiet -asxhtml -utf8 --show-body-only yes --show-warnings no --tidy-mark no') or return shift;
# open2 doesn't respect "use open ':utf8'"
binmode (IN, ':utf8');
binmode (OUT, ':utf8');