-
Notifications
You must be signed in to change notification settings - Fork 347
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 Markdown diff highilighting #380
base: master
Are you sure you want to change the base?
Conversation
memcpy() with a null destination or source is undefined
Avoid undefined behaviour
fix path to repository
Use MDeiml/tree-sitter-markdown project to support Markdown as a supported language. The instructions provided in [documentation][] were used to add this tree-sitter parser for the Markdown syntax. [documentation]: https://difftastic.wilfred.me.uk/adding_a_parser.html
TreeSitterConfig doesn't seem to have the `name` attribute, anymore. I discovered this discrepancy while integrating Markdown language parser in PR Wilfred#380.
TreeSitterConfig doesn't seem to have the `name` attribute, anymore. I discovered this discrepancy while integrating Markdown language parser in PR #380.
Just came across this today; I'd be interested. Would this PR be merged in principle (I presume yes, based on the manual)? What's needed to get this PR across the finish line? Rebasing, a regression test, anything else? |
Thanks for the PR! I'm hesitant to merge this before #372 is fixed, because changing one word in a large paragraph might be hard to read otherwise. |
Given the ubiquity of Markdown these days, merging this PR would be very welcome :) |
Use MDeiml/tree-sitter-markdown project to support Markdown as a
supported language.
The instructions provided in documentation were used to add this
tree-sitter parser for the Markdown syntax.