This commit is contained in:
2026-01-24 23:40:22 +01:00
parent 1a0f7f51a1
commit 8c1a721c4c
105 changed files with 23275 additions and 94 deletions
+8
View File
@@ -0,0 +1,8 @@
// retoor <retoor@molodetz.nl>
import "markdown" for Markdown
System.print(Markdown.toHtml("**bold**")) // expect: <p><strong>bold</strong></p>
System.print(Markdown.toHtml("*italic*")) // expect: <p><em>italic</em></p>
System.print(Markdown.toHtml("`code`")) // expect: <p><code>code</code></p>
System.print(Markdown.toHtml("~~deleted~~")) // expect: <p><del>deleted</del></p>