diff options
Diffstat (limited to 'src/development')
-rwxr-xr-x | src/development/md2html.pl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/development/md2html.pl b/src/development/md2html.pl new file mode 100755 index 0000000..e2f4cec --- /dev/null +++ b/src/development/md2html.pl @@ -0,0 +1,9 @@ +#!/usr/bin/env perl + +use v5.34; +use CommonMark; + +my $doc = CommonMark->parse( + string => "# xablau\n# xupliu", +); +say $doc->render_html; |