Simon-He95/vue-markdown-renderer

Unordered lists don't render when using * as the bullet marker

Closed this issue · 3 comments

Describe the bug

vue-renderer-markdown fails to render unordered lists when using * as the bullet marker. The same content renders correctly when using -.

Minimal Repro

* List item 1
* List item 2

This produces in the DOM:

<ul class="list-node list-disc" is-dark="false"></ul> <!-- no <li> children -->

Changing only the marker to hyphen works:

- List item 1
- List item 2

DOM (same as expected):

<ul class="list-node list-disc" is-dark="false">
  <li class="list-item"><p class="paragraph-node"><span>List item 1</span></p></li>
  <li class="list-item"><p class="paragraph-node"><span>List item 2</span></p></li>
</ul>

Reproduction

Steps are outlined in summary

System Info

Version: Tested with `0.0.59` and `0.0.60-beta.1`

Used Package Manager

yarn

Logs

No response

try with vue-renderer-markdown-0.0.60-beta.5

Verified that it is now working with vue-renderer-markdown-0.0.60-beta.5
Thank you so much @Simon-He95

You're welcome