]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Plugin/htmltidy.pm
* Fix the htmltidy plugin, which wasn't working due my breaking it when
[git.ikiwiki.info.git] / IkiWiki / Plugin / htmltidy.pm
index ad405dce581184860b819cd077cc262ff6728875..fa08e4ef5d29f218018fa9da172a1fe2f5b1eb5a 100644 (file)
@@ -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;