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
Describe the bug
CommonMark allows the * character to be used to italicize text. Marked supports this, but not when the text contains double quotes.
*
To Reproduce
Consider this markdown input:
1. *"hello"* - INCORRECT 2. *"hello* - INCORRECT 3. *hello"* - correct 4. _"Hello"_ - correct 5. *'hello'* - correct 6. **"hello"** - correct
Marked Demo renders the first two strings incorrectly.
Expected behavior
CommonMark Demo renders it correctly: Items 1 through 5 are italicized, and item 6 is boldfaced.
The text was updated successfully, but these errors were encountered:
duplicate of #1358
Sorry, something went wrong.
No branches or pull requests
Describe the bug
CommonMark allows the
*
character to be used to italicize text. Marked supports this, but not when the text contains double quotes.To Reproduce
Consider this markdown input:
Marked Demo renders the first two strings incorrectly.
Expected behavior
CommonMark Demo renders it correctly: Items 1 through 5 are italicized, and item 6 is boldfaced.
The text was updated successfully, but these errors were encountered: