diff options
| author | Asko Nomm <asko@bien.ee> | 2022-04-10 18:24:19 +0200 |
|---|---|---|
| committer | Asko Nomm <asko@bien.ee> | 2022-04-10 18:24:19 +0200 |
| commit | c5e7965fec017d2a51ae42ddd781d472fc89bff8 (patch) | |
| tree | 69c50b9f4e575eaa6995337135373eb352b931a9 /resources | |
| parent | 187bfeaeb559e8d17f63aef46deb1b2c28ee9829 (diff) | |
Close #11: Support dash unordered lists
Diffstat (limited to 'resources')
| -rw-r--r-- | resources/test/core.md | 5 | ||||
| -rw-r--r-- | resources/test/core_result.html | 2 |
2 files changed, 7 insertions, 0 deletions
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(""); }</code></pre> +<ul><li>Test 123</li><li>Test 223<ul><li>Test 334<ol><li>Test test</li></ol></li></ul></li></ul> + <p>This is <em><strong>bold italic text</strong></em> and <em><strong>this is also</strong></em>. <em>What about italic text that <strong>has bold text</strong></em>?</p> <h2>Hi there, world!</h2> |
