aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-09-20 19:23:43 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-09-20 19:23:43 +0000
commit0935e380c57b3c7e0cf3ecae587cca945f4eceb3 (patch)
treea3d0e7d37efeef734f2d0a12a73eb6e7ccd1656c /IkiWiki
parent1f4e5852d40289ede137edda9f3589cdf1280f35 (diff)
downloadikiwiki-0935e380c57b3c7e0cf3ecae587cca945f4eceb3.tar
ikiwiki-0935e380c57b3c7e0cf3ecae587cca945f4eceb3.tar.gz
* 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')
-rw-r--r--IkiWiki/Plugin/map.pm2
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;
}
}