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
Parse the markdown:
[ref] [ref]: http://example.com
This results in the tree:
(document (paragraph (link (link_text (text)))) (paragraph (link (link_text (text))) (text) (uri_autolink (text))))
Notice how the link definition is not found
If I add a blank line the end of the file like so:
I instead see:
(document (paragraph (link (link_text (text)))) (link_reference_definition (link_label (text)) (link_destination (text))))
This seems to be the expected parsing
The text was updated successfully, but these errors were encountered:
I have also created issue in treesitter repo.
Sorry, something went wrong.
seems like this is a different problem, sorry
Merge pull request ikatyang#47 from ghishadow/patch-1
8bac940
fix path to repository
No branches or pull requests
Steps to reproduce
Parse the markdown:
Bug 🐛
This results in the tree:
Notice how the link definition is not found
Expected
If I add a blank line the end of the file like so:
I instead see:
This seems to be the expected parsing
The text was updated successfully, but these errors were encountered: