3 # requires 'tidy' binary, found in Debian or http://tidy.sf.net/
4 # mostly a proof-of-concept on how to use external filters.
5 # It is particularly useful when the html plugin is used.
8 package IkiWiki::Plugin::htmltidy;
16 hook(type => "getsetup", id => "tidy", call => \&getsetup);
17 hook(type => "sanitize", id => "tidy", call => \&sanitize);
28 description => "tidy command line",
35 if (! defined $config{htmltidy}) {
36 $config{htmltidy}="tidy -quiet -asxhtml -utf8 --show-body-only yes --show-warnings no --tidy-mark no --markup yes";
45 $SIG{PIPE}=sub { $sigpipe=1 };
46 $pid=open2(*IN, *OUT, "$config{htmltidy} 2>/dev/null");
48 # open2 doesn't respect "use open ':utf8'"
49 binmode (IN, ':utf8');
50 binmode (OUT, ':utf8');
52 print OUT $params{content};
61 if ($sigpipe || ! defined $ret) {
62 return gettext("htmltidy failed to parse this html");