Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make, e.g., L<C<boom>> DWIM
atroxaper++
  • Loading branch information
Mouq committed Jul 7, 2014
1 parent c400b66 commit f70c57d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Pod/To/HTML.pm
Expand Up @@ -433,7 +433,7 @@ multi sub node2inline(Pod::FormattingCode $node) returns Str {
#= Links
when 'L' {
my $text = node2inline($node.content);
my $url = $node.meta[0] // $text;
my $url = $node.meta[0] // node2text($node.content);
if $text ~~ /^'#'/ {
# if we have an internal-only link, strip the # from the text.
$text = $/.postmatch
Expand Down

0 comments on commit f70c57d

Please sign in to comment.