nvim-treesitter/runtime/queries/markdown/injections.scm

26 lines
659 B
Scheme
Raw Permalink Normal View History

(fenced_code_block
(info_string
(language) @injection.language)
(code_fence_content) @injection.content)
2024-01-06 15:05:50 +09:00
((html_block) @injection.content
(#set! injection.language "html")
(#set! injection.combined)
(#set! injection.include-children))
2021-12-29 10:38:13 +01:00
2024-01-06 15:05:50 +09:00
((minus_metadata) @injection.content
(#set! injection.language "yaml")
(#offset! @injection.content 1 0 -1 0)
(#set! injection.include-children))
2024-01-06 15:05:50 +09:00
((plus_metadata) @injection.content
(#set! injection.language "toml")
(#offset! @injection.content 1 0 -1 0)
(#set! injection.include-children))
([
(inline)
(pipe_table_cell)
2024-01-06 15:05:50 +09:00
] @injection.content
(#set! injection.language "markdown_inline"))