-
Notifications
You must be signed in to change notification settings - Fork 105
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
Support for commonmark extensions #345
Comments
If I'm not mistaken, we have table and footnote support enabled
I agree about GFM. As for Math, someone also filed an issue about MathJax (#280). Maruku feels like someone trying too hard at wanting to write HTML in not-HTML., What is the benefit there? |
It's exactly that, writing HTML in non-HTML. Basically, I'd use this for adding a class to a link. While I can just use regular HTML, it looks out of place compared to regular links. |
Are you thinking of switching parser renderers? Line 34 in dedec02
We're using comrak for web development, and I'm gonna continue developing markdown's spec and a Rust lib, most likely comrak. So it'd be cool coordinate with you guys for any overlapping features you need too. I need to fix a few ambiguities and structured writing limits. Edit: here's most of what I have planned https://github.com/foundpatterns/contentdb/issues/20 |
While I want GFM features, I have a lot of other higher priority tasks, so I probably won't be putting time towards adding it to either comrak or pulldown. I'd gladly use it if someone gets it implemented though! Maybe it'd even be tempting enough to take the performance hit of switching from pulldown to comrak. This update on pulldown is promising though:
https://raphlinus.github.io/personal/2019/02/20/more-small-updates.html |
This issue has been open for quite a while… I'm mainly missing the strikethrough thing, which, strangely enough, should work in pulldown-cmark, yet certainly doesn't in Cobalt 0.16.4, at least my own tests with double tildes all failed, giving me raw double tildes in the result. Disallowing raw HTML might actually be undesirable, at least I myself use raw HTML for |
Fixes #345 Co-authored-by: Ed Page <[email protected]>
Some useful extensions to commonmark:
The GFM things are already implemented in comrak, which is another rust based markdown parser, which is quite a bit slower than the currently used pulldown-cmark.
The text was updated successfully, but these errors were encountered: