-
-
Notifications
You must be signed in to change notification settings - Fork 600
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
Given the following Markdown:
Ordered list:
1. one
2. two
3. three
Unordered list:
* one
* two
* three
Checklist:
* [ ] one
* [x] two
* [ ] three
Converting this to blocks with tryParseMarkdownToBocks
and then back to Markdown with blocksToMarkdownLossy
produces:
Ordered list:
1. one
2. two
3. three
Unordered list:
* one
* two
* three
Checklist:
* [ ] one
* [x] two
* [ ] three
(Note the checklist is rendered to Markdown correctly.)
While this does import back into BlockNote correctly, they are not valid Markdown lists.

To Reproduce
This can be reproduced in the Playground: https://blocknote-main.vercel.app/interoperability/converting-blocks-to-md
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working