aboutsummaryrefslogtreecommitdiff
path: root/src/development
diff options
context:
space:
mode:
Diffstat (limited to 'src/development')
-rwxr-xr-xsrc/development/md2html.pl9
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;