42d780b103
* add tree-sitter-edoc * fix escape character capture in markdown queries * add field negation operator "!" to tsq highlights
20 lines
496 B
Scheme
20 lines
496 B
Scheme
((xhtml_tag) @injection.content
|
|
(#set! injection.combined)
|
|
(#set! injection.include-children)
|
|
(#set! injection.language "html"))
|
|
|
|
((block_quote
|
|
!language
|
|
(quote_content) @injection.content)
|
|
(#set! injection.language "erlang"))
|
|
|
|
(block_quote
|
|
language: (language_identifier) @injection.language
|
|
(quote_content) @injection.content)
|
|
|
|
((macro
|
|
(tag) @_tag
|
|
(argument) @injection.content)
|
|
(#eq? @_tag "@type")
|
|
(#set injection.language "erlang")
|
|
(#set injection.include-children))
|