X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/e90c9ada43f72f692aeb9c1ad512dbd5c3513a18..8b72f09d216106edc22fc484af5943d007c6bedf:/perl.plp diff --git a/perl.plp b/perl.plp index 0d9a415..89b906e 100644 --- a/perl.plp +++ b/perl.plp @@ -11,6 +11,7 @@ Html({ data => ['perl.inc.pl'], }); +use experimental 'signatures'; :>

Perl release summary

@@ -131,7 +132,9 @@ sub featattrs ($attr) { $title = $title ? sprintf ' (%s)', $title : ''; if (my $eg = $attr->{eg}) { - my $pre = sprintf ' {%s}', Entity($eg); + my $pre = Entity($eg); + $pre =~ s<\N{ZERO WIDTH SPACE}>{}g; + $pre = " {$pre}"; $title = $pre . $title; } return $title;