nvim-treesitter/queries/markdown/injections.scm

27 lines
685 B
Scheme
Raw Normal View History

(fenced_code_block
(info_string
(language) @_lang)
(code_fence_content) @injection.content
(#set-lang-from-info-string! @_lang))
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"))