I wonder: I have some POD with =item
s like this:
=item B<some-option=>I<some_value>
When I try to create a link in the text, none of those works:
L<B<some-option=>I<some_value>>, L<some-option=some_value>
Using pod2html
I see that there are name=
for the =item
s, but the L<..>
command just produces <em>...</em>
output.
How can I create a proper link for the =item
?
Here's a short sample POD:
=pod
See L<B<--some-option=>I<some_value>> or L<--some-option=some_value>.
=over
=item B<--some-option=>I<some_value>
Blabla...
=back
Also podchecker --warnings --warnings --warnings
says pod syntax OK.
.
See --some-option=some_value or --some-option=some_value.
`. – U. Windl Sep 04 '18 at 05:56