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
When writing a list you cannot "exit" the list anymore Example
* A * B C
will output to something like
You can only add new lines with further list items.
calling it with simply
markdown_to_html( "* A\n* B\nC", &comrak::Options::default(), )
The text was updated successfully, but these errors were encountered:
That's how the syntax of CommonMark works. You will need a blank line after the last item to escape the list.
See how it behaves in the CommonMark dingus, https://spec.commonmark.org/dingus/?text=*%20A%0A*%20B%0AC%0A
Sorry, something went wrong.
Since this complies to the spec, I am closing this issue.☮️
Thank you all! 🤍
No branches or pull requests
When writing a list you cannot "exit" the list anymore
Example
will output to something like
You can only add new lines with further list items.
calling it with simply
The text was updated successfully, but these errors were encountered: