The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<%init>
my $html = $m->content();

my $path = $c->request()->uri()->path();

$html =~ s{<a[^>]+href="\Q$path\E"[^>]*>([^<]+)</a>}{<span class="current">$1</a>};

$m->print($html);

return;
</%init>