Pod::To::Markdown - Render Pod as Markdown
From command line:
$ perl6 --doc=Markdown lib/To/Class.pm
From Perl6:
use Pod::To::Markdown;
=NAME
foobar.pl
=SYNOPSIS
foobar.pl <options> files ...
print pod2markdown($=pod);class Pod::To::Markdown
sub pod2markdown
sub pod2markdown(
$pod,
Bool :$no-fenced-codeblocks
) returns StrRender Pod as Markdown
To render without fenced codeblocks (```), as some markdown engines don't support this, use the :no-fenced-codeblocks option. If you want to have code show up as ```perl6 to enable syntax highlighting on certain markdown renderers, use:
=begin code :lang<perl6>
method render(
$pod,
Bool :$no-fenced-codeblocks
) returns StrRender Pod as Markdown, see pod2markdown
This is free software; you can redistribute it and/or modify it under the terms of The Artistic License 2.0.