aboutsummaryrefslogtreecommitdiffstats
path: root/queries/markdown_inline/injections.scm
Commit message (Collapse)AuthorAgeFilesLines
* feat!: drop modules, general refactor and cleanupChristian Clason2025-05-121-7/+0
|
* chore: query formattingPham Huy Hoang2024-01-191-4/+4
|
* fix(markdown_inline): latex highlight injection (#5397)Zhuofeng Wang2024-01-051-1/+2
| | | | The `injection.include-children` is needed in markdown_inline parser.
* refactor: remove `include-children` from queries (#5226)Pham Huy Hoang2023-09-121-4/+2
| | | These `include-children` were to alleviate an issue with empty range language tree, which has been fixed for Neovim nightly/Neovim 0.9.2
* chore(injections)!: update injection syntax to 0.9Pham Huy Hoang2023-08-121-2/+8
| | | | | | | | | Since 0.9, @lang syntax is still available as fallback but will soon be deprecated. Because of that, new syntax should be adopted once 0.9 becomes the baseline requirements for nvim-treesitter - update health check - update doc
* fix: add @combined to markdown htmlPham Huy Hoang2023-05-031-1/+1
|
* feat(markdown): add latex injectionsChristian Clason2023-02-051-0/+1
| | | | added in https://github.com/MDeiml/tree-sitter-markdown/pull/71
* feat(markdown)!: switch to split parser (#3048)Matthias Deiml2022-06-261-0/+1
* switch to split markdown parser with separate block and inline parsers to improve performance * add exclude_children! directive (useful for something like Injected markdown incorrectly highlights indented docstrings #2212) * split markdown queries into block and inline ones and add the injection for inline into block grammar * add include_dir option to parser configs (needed because the two grammars don't live in the repos root directory) BREAKING CHANGE: downstream queries need to be adapted to new parser