}
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>";
* date: New plugin that allows inserting date directives that expand to
pretty-printed dates, using the same formatting as used for page
modification date display, etc.
+ * htmllink: Allow a title attribute to be specified.
-- Joey Hess <joeyh@debian.org> Mon, 16 Nov 2009 15:46:45 -0500
* anchor - set to make the link include an anchor
* rel - set to add a rel attribute to the link
* class - set to add a css class to the link
+* title - set to add a title attribute to the link
#### `readfile($;$)`