Skip to content

Commit 9da5a03

Browse files
committed
Fix htmlify.pl for the latest Rakudo
1 parent f189ac4 commit 9da5a03

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

htmlify.pl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,9 +339,8 @@ (Bool :$debug, Bool :$typegraph = False)
339339
sub pod-link($text, $url) {
340340
Pod::FormattingCode.new(
341341
type => 'L',
342-
content => [
343-
join('|', $text, $url),
344-
],
342+
content => [$text],
343+
meta => [$url],
345344
);
346345
}
347346

0 commit comments

Comments
 (0)