We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to parse the following text: **bold *ital***, expecting bold ital, but I'm getting bold *ital*.
**bold *ital***
This is caused by close the strong tag on the first instance of 2 *s, even though there is an open ital tag *.
what its being parsed as now:
[ { "content": "bold *ital", "type": "bold" }, { "content": "*", "type": "text" } ]
what it should be parsed as:
[ { "type": "bold", "children": [ { "content": "bold ", "type": "text" }, { "content": "ital", "type": "ital" } ] } ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I want to parse the following text:
**bold *ital***
, expecting bold ital, but I'm getting bold *ital*.This is caused by close the strong tag on the first instance of 2 *s, even though there is an open ital tag *.
what its being parsed as now:
what it should be parsed as:
The text was updated successfully, but these errors were encountered: