aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/htmltidy.pm
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-04 07:04:16 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-04 07:04:16 +0000
commitacaee3d0bce78b6e6d8989821150d28a87026ff0 (patch)
treed6929a1c944d206f3071110e8bc62664b4acb136 /IkiWiki/Plugin/htmltidy.pm
parenta6a61f9e38d91b4fce551cd220d36fae7534c1b7 (diff)
downloadikiwiki-acaee3d0bce78b6e6d8989821150d28a87026ff0.tar
ikiwiki-acaee3d0bce78b6e6d8989821150d28a87026ff0.tar.gz
* Fix the htmltidy plugin, which wasn't working due my breaking it when
I added it..
Diffstat (limited to 'IkiWiki/Plugin/htmltidy.pm')
-rw-r--r--IkiWiki/Plugin/htmltidy.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/htmltidy.pm b/IkiWiki/Plugin/htmltidy.pm
index ad405dce5..fa08e4ef5 100644
--- a/IkiWiki/Plugin/htmltidy.pm
+++ b/IkiWiki/Plugin/htmltidy.pm
@@ -5,7 +5,7 @@
# It is particularly useful when the html plugin is used.
#
# by Faidon Liambotis
-package IkiWiki::Plugin::tidy;
+package IkiWiki::Plugin::htmltidy;
use warnings;
use strict;
@@ -21,7 +21,7 @@ sub sanitize ($) { #{{{
# open2 doesn't respect "use open ':utf8'"
binmode (IN, ':utf8');
binmode (OUT, ':utf8');
-
+
print OUT shift;
close OUT;