aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-11-26 14:10:21 -0500
committerJoey Hess <joey@gnu.kitenet.net>2009-11-26 14:10:21 -0500
commit268a2dd54cd47d6ec39c22d61baa5f6f9d40b7f5 (patch)
tree1885ce008191a865f0ff6445944aaafb281501a7 /IkiWiki.pm
parentd334e0221143e20b95e5b979dfc8eac0440c12a7 (diff)
downloadikiwiki-268a2dd54cd47d6ec39c22d61baa5f6f9d40b7f5.tar
ikiwiki-268a2dd54cd47d6ec39c22d61baa5f6f9d40b7f5.tar.gz
htmllink: allow a title attribute to be specified
Diffstat (limited to 'IkiWiki.pm')
-rw-r--r--IkiWiki.pm9
1 files changed, 4 insertions, 5 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm
index 1e9d1ca2a..611ba6f65 100644
--- a/IkiWiki.pm
+++ b/IkiWiki.pm
@@ -1081,11 +1081,10 @@ sub htmllink ($$$;@) {
}
my @attrs;
- if (defined $opts{rel}) {
- push @attrs, ' rel="'.$opts{rel}.'"';
- }
- if (defined $opts{class}) {
- push @attrs, ' class="'.$opts{class}.'"';
+ foreach my $attr (qw{rel class title}) {
+ if (defined $opts{$attr}) {
+ push @attrs, " $attr=\"".$opts{attr}.'"';
+ }
}
return "<a href=\"$bestlink\"@attrs>$linktext</a>";