| DR::SunDown(3pm) | User Contributed Perl Documentation | DR::SunDown(3pm) |
DR::SunDown - perl bindings for sundown
use DR::SunDown;
my $markdown = `cat README.markdown`;
my $html = markdown2html $markdown;
The converter returns utf8-strings if it receives utf8-strings.
use Encode 'encode', 'decode';
# $string is encoded utf8
my $string = markdown2html encode utf8 => $data;
# $string and $data have the same utf8 flag
my $string = markdown2html $data;
utf8::decode( $data ) if utf8::is_utf8( $data );
# $string is decoded utf8
my $string = markdown2html $data;
The library is a perl binding for C-library sundown <https://github.com/vmg/sundown.git>.
Converts markdown text to html.
Dmitry E. Oboukhov <unera@debian.org>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.
| 2024-04-01 | perl v5.38.2 |