mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 13:15:09 -07:00
11844dde81
* bundle split Markdown parser from https://github.com/MDeiml/tree-sitter-markdown * add queries from https://github.com/nvim-treesitter/nvim-treesitter/tree/main * upstream `#trim!` and `#inject-language!` directives Co-authored-by: dundargoc <gocdundar@gmail.com>
27 lines
671 B
Scheme
27 lines
671 B
Scheme
(fenced_code_block
|
|
(info_string
|
|
(language) @_lang)
|
|
(code_fence_content) @injection.content
|
|
(#inject-language! @_lang))
|
|
|
|
((html_block) @injection.content
|
|
(#set! injection.language "html")
|
|
(#set! injection.combined)
|
|
(#set! injection.include-children))
|
|
|
|
((minus_metadata) @injection.content
|
|
(#set! injection.language "yaml")
|
|
(#offset! @injection.content 1 0 -1 0)
|
|
(#set! injection.include-children))
|
|
|
|
((plus_metadata) @injection.content
|
|
(#set! injection.language "toml")
|
|
(#offset! @injection.content 1 0 -1 0)
|
|
(#set! injection.include-children))
|
|
|
|
([
|
|
(inline)
|
|
(pipe_table_cell)
|
|
] @injection.content
|
|
(#set! injection.language "markdown_inline"))
|