aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/htmlbalance.pm
diff options
context:
space:
mode:
authorSimon McVittie <smcv@ http://smcv.pseudorandom.co.uk/>2008-11-16 18:11:39 +0000
committerSimon McVittie <smcv@ http://smcv.pseudorandom.co.uk/>2008-11-17 10:46:21 +0000
commite7a840ed9a817cf4db59c90e680afd89e146b581 (patch)
tree73b0d9e81f4bd9d7be9b65f42edbcd15ca847378 /IkiWiki/Plugin/htmlbalance.pm
parent408d483dc2938af527100f2201ceea0efb5019af (diff)
downloadikiwiki-e7a840ed9a817cf4db59c90e680afd89e146b581.tar
ikiwiki-e7a840ed9a817cf4db59c90e680afd89e146b581.tar.gz
htmlbalance: new plugin that balances tags by parsing and re-serializing
Diffstat (limited to 'IkiWiki/Plugin/htmlbalance.pm')
-rw-r--r--IkiWiki/Plugin/htmlbalance.pm57
1 files changed, 57 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/htmlbalance.pm b/IkiWiki/Plugin/htmlbalance.pm
new file mode 100644
index 000000000..667d73b6c
--- /dev/null
+++ b/IkiWiki/Plugin/htmlbalance.pm
@@ -0,0 +1,57 @@
+#!/usr/bin/perl
+package IkiWiki::Plugin::htmlbalance;
+
+# htmlbalance: Parse and re-serialize HTML to ensure balanced tags
+#
+# Copyright 2008 Simon McVittie <http://smcv.pseudorandom.co.uk/>
+# Licensed under the GNU GPL, version 2, or any later version published by the
+# Free Software Foundation
+
+use warnings;
+use strict;
+use IkiWiki 2.00;
+
+sub import { #{{{
+ hook(type => "getsetup", id => "htmlbalance", call => \&getsetup);
+ hook(type => "sanitize", id => "htmlbalance", call => \&sanitize);
+} # }}}
+
+sub getsetup () { #{{{
+ return
+ plugin => {
+ safe => 1,
+ rebuild => undef,
+ },
+} #}}}
+
+sub sanitize (@) { #{{{
+ my %params=@_;
+ my $ret = '';
+
+ eval {
+ use HTML::TreeBuilder;
+ use XML::Atom::Util qw(encode_xml);
+ };
+
+ if ($@) {
+ error($@);
+ return $params{content};
+ }
+
+ my $tree = HTML::TreeBuilder->new_from_content($params{content});
+ my @nodes = $tree->disembowel();
+ foreach my $node (@nodes) {
+ if (ref $node) {
+ $ret .= $node->as_XML();
+ chomp $ret;
+ $node->delete();
+ }
+ else {
+ $ret .= encode_xml($node);
+ }
+ }
+ $tree->delete();
+ return $ret;
+} # }}}
+
+1