-
-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
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
Add support for nested fenced code blocks #119
Comments
Welcome @nokome! 👋 ````md
First code block
```python
# Nested code block
```
```` |
Thanks @ChristianMurphy for the quick response! That syntax is a little more awkward to implement for my use case but great to know it is supported. |
I assume your use case is wanting to use markdown. If your use case includes making yet another markdown flavor, see #32 for work toward plugins and syntax extensions. |
Sticking with standards (in this case, CommonMark/GFM), means that your markdown files will work everywhere. Here on GH too. And in the syntax highlighter in your editor. |
First, thanks for this crate! (and more generally all the awesome work you do to help developers parse Markdown! 🙌🏽 )
In my usage, I need to handle nested fenced code blocks, but as the follow test shows, this is currently not supported. If you think this would be a good thing to support let me know and I can have a go at a PR.
The text was updated successfully, but these errors were encountered: