1 [[!template id=plugin name=headinganchors author="[[PaulWise]]"]]
3 This is a simple plugin to add ids to all headings, based on their text. It
4 works as a postprocessing filter, allowing it to work on mdwn, wiki, html,
5 rst and any other format that produces html. The code is available here:
8 # quick HTML heading id adder by Paul Wise
9 package IkiWiki::Plugin::headinganchors;
16 hook(type => "sanitize", id => "headinganchors", call => \&headinganchors);
24 $str =~ s/[&\?"\'\.,\(\)!]//mig;
25 $str =~ s/[^a-z]/_/mig;
29 sub headinganchors (@) {
31 my $content=$params{content};
32 $content=~s{<h([0-9])>([^>]*)</h([0-9])>}{'<h'.$1.' id="'.text_to_anchor($2).'">'.$2.'</h'.$3.'>'}gie;