unescape tag names

Since tag names are now retrieved from the file names, we must revert
the escaping process that santizes the file names. Solve by adding a
`pagetitle()` call at the end of the tagname()
(cherry picked from commit 0ee0612b1ab11d76eb3790c8db7a2ba992c54f6b)
master
Giuseppe Bilotta 2011-01-05 07:20:47 +01:00 committed by Joey Hess
parent 3d893db65f
commit 5365a72e42
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ sub tagname ($) {
} else {
$tag =~ s!^\.?/!!;
}
return $tag;
return pagetitle($tag, 1);
}
sub htmllink_tag ($$$;@) {