We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Footnote codes (N<>) are incorrectly handled by Pod::To::Text. Given
N<>
Pod::To::Text
=begin pod TestN<note>. =end pod
perl6 --doc outputs: “Testnote.”
perl6 --doc
Any of the following would make sense:
The formatting code is simply stripped and the footnote joined directly to the immediately preceding text.
> use Pod::To::Text; Nil > my $pod = EVAL "\$=pod;\n=begin pod\nTestN<note>.\n=end pod"; [Pod::Block::Named{:name("pod")} Pod::Block::Para Test Pod::FormattingCode{:type("N")} note . ] > pod2text $pod Testnote.
This is Rakudo version 2018.12 built on MoarVM version 2018.12 implementing Perl 6.d.
The text was updated successfully, but these errors were encountered:
Inline footnotes (workaround for rakudo/rakudo#2711).
3cd2962
No branches or pull requests
The Problem
Footnote codes (
N<>) are incorrectly handled byPod::To::Text. Givenperl6 --docoutputs: “Testnote.”Expected Behavior
Any of the following would make sense:
Actual Behavior
The formatting code is simply stripped and the footnote joined directly to the immediately preceding text.
Environment
The text was updated successfully, but these errors were encountered: