diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-09-20 19:23:43 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-09-20 19:23:43 +0000 |
commit | 0935e380c57b3c7e0cf3ecae587cca945f4eceb3 (patch) | |
tree | a3d0e7d37efeef734f2d0a12a73eb6e7ccd1656c /IkiWiki/Plugin | |
parent | 1f4e5852d40289ede137edda9f3589cdf1280f35 (diff) |
* tag: Add taglink preprocessor directive, supporting visible tag links.
* map: Fully specify paths to links to avoid issues when the bestlink
didn't point to the correct page.
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/map.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/map.pm b/IkiWiki/Plugin/map.pm index 1194f6ed2..8037db773 100644 --- a/IkiWiki/Plugin/map.pm +++ b/IkiWiki/Plugin/map.pm @@ -23,7 +23,7 @@ sub preprocess (@) { #{{{ my @mapitems = (); foreach my $page (keys %pagesources) { if (pagespec_match($page, $params{pages}, location => $params{page})) { - push @mapitems, $page; + push @mapitems, "/".$page; } } |