markdown-to-jsx icon indicating copy to clipboard operation
markdown-to-jsx copied to clipboard

Bulletpoints only work with additional empty line

Open devchris opened this issue 4 years ago • 0 comments

Normally doing something like

Test:
- first
- second

should result in

Test:

  • first
  • second

like it does here. But with markdown-to-jsx when doing bulletpoints without an additional line break it will result in

Test:  - first - second

To make this work in markdown-to-jsx you have to add an additional line

Test: 

- first
- second

only then it will recognize the bulletpoints.

devchris avatar Oct 22 '20 09:10 devchris