X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/9652cdfe2eb16150518e34af33c8858118fe0a09..5166cebee48668e279454d3a3e669ab30f171ad0:/IkiWiki/Plugin/toc.pm diff --git a/IkiWiki/Plugin/toc.pm b/IkiWiki/Plugin/toc.pm index 5380dd965..dff9d9aa5 100644 --- a/IkiWiki/Plugin/toc.pm +++ b/IkiWiki/Plugin/toc.pm @@ -8,10 +8,19 @@ use IkiWiki 2.00; use HTML::Parser; sub import { #{{{ + hook(type => "getsetup", id => "toc", call => \&getsetup); hook(type => "preprocess", id => "toc", call => \&preprocess); - hook(type => "sanitize", id => "toc", call => \&sanitize); + hook(type => "format", id => "toc", call => \&format); } # }}} +sub getsetup () { #{{{ + return + plugin => { + safe => 1, + rebuild => undef, + }, +} #}}} + my %tocpages; sub preprocess (@) { #{{{ @@ -33,7 +42,7 @@ sub preprocess (@) { #{{{ } } # }}} -sub sanitize (@) { #{{{ +sub format (@) { #{{{ my %params=@_; my $content=$params{content};