diff options
author | Antoine Beaupré <anarcat@debian.org> | 2017-04-12 15:42:42 -0400 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2017-05-16 08:55:23 +0100 |
commit | b5b48d5bb56105e1188b78131de2d575e918969c (patch) | |
tree | 811844c77c4020524e50e105df11a01d05c38992 /IkiWiki | |
parent | 55ae3c7368627c5c875b27df8cedba05a112b2aa (diff) | |
download | ikiwiki-b5b48d5bb56105e1188b78131de2d575e918969c.tar ikiwiki-b5b48d5bb56105e1188b78131de2d575e918969c.tar.gz |
use heading identifiers in TOC links
reasoning: if headings have identifiers, they are probably more useful
anchors than the automatically generated anchors we build in the toc
plugin. this can happen if, for example, you use the `multimarkdown`
plugin, which inserts `id` tags for every header it encounters. this
also leverages the `headinganchors` plugin nicely.
keeps backwards-compatibility with old toc-generated #indexXhY
anchors.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/toc.pm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/IkiWiki/Plugin/toc.pm b/IkiWiki/Plugin/toc.pm index ac07b9af6..4d29e7040 100644 --- a/IkiWiki/Plugin/toc.pm +++ b/IkiWiki/Plugin/toc.pm @@ -59,13 +59,16 @@ sub format (@) { my $liststarted=0; my $indent=sub { "\t" x $curlevel }; $p->handler(start => sub { - my $tagname=shift; - my $text=shift; + my ($tagname, $text, $attr) = @_; if ($tagname =~ /^h(\d+)$/i) { my $level=$1; my $anchor="index".++$anchors{$level}."h$level"; $page.="$text<a name=\"$anchor\"></a>"; - + # if the heading already has a unique ID, use that instead in TOC + if ($attr->{id}) { + $anchor = $attr->{id}; + } + # Unless we're given startlevel as a parameter, # take the first header level seen as the topmost level, # even if there are higher levels seen later on. @@ -124,7 +127,7 @@ sub format (@) { else { $page.=$text; } - }, "tagname, text"); + }, "tagname, text, attr"); $p->handler(default => sub { $page.=join("", @_) }, "text"); $p->parse($content); $p->eof; |