X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/c5919df5f3697e0f8968e2b8f49cd15c1e0aa412..819b31d46c05c00d4183f824f74bfe3836471d78:/IkiWiki/Plugin/meta.pm diff --git a/IkiWiki/Plugin/meta.pm b/IkiWiki/Plugin/meta.pm index b6226ed88..adfd688a6 100644 --- a/IkiWiki/Plugin/meta.pm +++ b/IkiWiki/Plugin/meta.pm @@ -10,6 +10,7 @@ my %meta; my %title; my %permalink; my %author; +my %authorurl; sub import { #{{{ IkiWiki::hook(type => "preprocess", id => "meta", @@ -68,6 +69,9 @@ sub preprocess (@) { #{{{ if ($key eq 'author') { $author{$page}=$value; } + elsif ($key eq 'authorurl') { + $authorurl{$page}=$value; + } } return ""; @@ -86,6 +90,8 @@ sub pagetemplate (@) { #{{{ if exists $permalink{$page} && $template->query(name => "permalink"); $template->param(author => $author{$page}) if exists $author{$page} && $template->query(name => "author"); + $template->param(authorurl => $authorurl{$page}) + if exists $authorurl{$page} && $template->query(name => "authorurl"); } # }}}