Closed as not planned
Description
Initial checklist
- I read the support docs
- I read the contributing guide
- I agree to follow the code of conduct
- I searched issues and couldn’t find anything (or linked relevant results below)
Problem
Hi team,
Is it possible to support such structural conversion?
1. milk
> banana
2. cheese
Expect
[
{
type: "list",
children: [
{ type: "list item", ... },
{ type: "blockquote", ... },
{ type: "list item", ... },
]
}
]
Actual
[
{
type: "list",
children: [
{ type: "list item", ... },
]
},
{ type: "blockquote", ... },
{
type: "list",
children: [
{ type: "list item", ... },
]
}
]
The markdown works fine in GitHub
- milk
banana
- cheese
- milk
banana
- cheese
Solution
None
Alternatives
None