You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
subend_L {
my ($self) = @_;
my$flags = pop @{ $self->_private->{link} }
ordie'Invalid state: link end with no link start';
my ($type, $to, $section) = @{$flags}{qw( type to section )};
The $to param from Pod::Simple is "." which makes sense based on the pod spec, but i'm not sure if that's useful.
I considered adding this code to Pod::Markdown:
if ($toeq'.') {
$type = 'url';
$to = "$to/$section";
}
and then I thought I should ask for thoughts here.
The text was updated successfully, but these errors were encountered:
Has support ever been considered for links like
<text|./some/file>
?I received this question on Pod::Markdown rwstauner/Pod-Markdown#23
From the context of markdown/html, it's a reasonable request.
Right now Pod::Markdown has code like this: https://github.com/rwstauner/Pod-Markdown/blob/master/lib/Pod/Markdown.pm#L1129-L1134
The
$to
param from Pod::Simple is"."
which makes sense based on the pod spec, but i'm not sure if that's useful.I considered adding this code to Pod::Markdown:
and then I thought I should ask for thoughts here.
The text was updated successfully, but these errors were encountered: