diff options
author | Ricardo Signes <rjbs@cpan.org> | 2009-12-07 18:19:28 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-12-08 10:59:48 +0100 |
commit | f6e963e4dd62b8e3c01b31f4a4dd57e47e104997 (patch) | |
tree | 4beee89789bb73a2ceaf238fd1b7070e1ee1e504 /pod/perlpodspec.pod | |
parent | a92c0cd070f2017820463754d4257b62b59c1e05 (diff) | |
download | perl-f6e963e4dd62b8e3c01b31f4a4dd57e47e104997.tar.gz |
remove prohibition against L<text|href>
Diffstat (limited to 'pod/perlpodspec.pod')
-rw-r--r-- | pod/perlpodspec.pod | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pod/perlpodspec.pod b/pod/perlpodspec.pod index 8973a7080c..537f29ad70 100644 --- a/pod/perlpodspec.pod +++ b/pod/perlpodspec.pod @@ -1208,6 +1208,14 @@ For example: 'url', # what sort of link "http://www.perl.org/" # original content + L<Perl.org|http://www.perl.org/> + => "Perl.org", # link text + "http://www.perl.org/", # possibly inferred link text + "http://www.perl.org/", # name + undef, # section + 'url', # what sort of link + "Perl.org|http://www.perl.org/" # original content + Note that you can distinguish URL-links from anything else by the fact that they match C<m/\A\w+:[^:\s]\S*\z/>. So C<LE<lt>http://www.perl.comE<gt>> is a URL, but |