From c5e7965fec017d2a51ae42ddd781d472fc89bff8 Mon Sep 17 00:00:00 2001 From: Asko Nomm Date: Sun, 10 Apr 2022 18:24:19 +0200 Subject: Close #11: Support dash unordered lists --- resources/test/core.md | 5 +++++ resources/test/core_result.html | 2 ++ 2 files changed, 7 insertions(+) (limited to 'resources') diff --git a/resources/test/core.md b/resources/test/core.md index 619ab5e..afc972a 100644 --- a/resources/test/core.md +++ b/resources/test/core.md @@ -52,6 +52,11 @@ function markdownToHTML(markdown) { } ``` +- Test 123 +- Test 223 + - Test 334 + 1. Test test + This is ___bold italic text___ and ***this is also***. *What about italic text that **has bold text***? ## Hi there, world! diff --git a/resources/test/core_result.html b/resources/test/core_result.html index 59ca907..aaad44a 100644 --- a/resources/test/core_result.html +++ b/resources/test/core_result.html @@ -44,6 +44,8 @@ function markdownToHTML(markdown) { return parsedBlocks.join(""); } + +

This is bold italic text and this is also. What about italic text that has bold text?

Hi there, world!

-- cgit v1.2.3