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
In this example:
use v6; use Pod::To::HTML; my $pod = q:to/END/; =pod =defn What is this My I<super B<awesome>> embedded C<pod> document! END say Pod::To::HTML.render($pod);
Produced HTML is:
<dt>What is this</dt> <dd><p>My I<super B<awesome>> embedded C<pod> document!</p>
The text was updated successfully, but these errors were encountered:
Example for Raku/Pod-To-HTML#45
792431e
I think this is the same problem as #17. Defn is returned as text, not as a block...
Sorry, something went wrong.
Related: Raku/doc@d4c9b23 (=defn dropped in favour of multi-paragraph lists because of this issue).
=defn
See also @tbrowder's rakudo/rakudo#3275 report.
Revise formatting on the community page (=defn to multi-para lists).
d4c9b23
Markup in =defn terms and definitions is currently ignored; the use of itemisation here is a workaround.
No branches or pull requests
In this example:
Produced HTML is:
The text was updated successfully, but these errors were encountered: