summaryrefslogtreecommitdiff
path: root/IkiWiki.pm
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-09-22 16:32:24 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-09-22 16:32:24 +0000
commit7bde880fa8cf2e7d3413a7ede7ae5b604a97e85b (patch)
tree3724032d76ffdc46e9a87a7999b2f4bc8d7b9857 /IkiWiki.pm
parentd4117e20e35ecfd0686997a3aa00cbb0dee9eaee (diff)
* map: Render pages on the way to subpages whose parent pages
are not included in the map. Include special styling for such pages. * map: Remove common prefixes and don't over-indent. * Add class option to htmllink().
Diffstat (limited to 'IkiWiki.pm')
-rw-r--r--IkiWiki.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm
index 720afdecd..1c15e9299 100644
--- a/IkiWiki.pm
+++ b/IkiWiki.pm
@@ -588,6 +588,9 @@ sub htmllink ($$$;@) { #{{{
if (defined $opts{rel}) {
push @attrs, ' rel="'.$opts{rel}.'"';
}
+ if (defined $opts{class}) {
+ push @attrs, ' class="'.$opts{class}.'"';
+ }
return "<a href=\"$bestlink\"@attrs>$linktext</a>";
} #}}}