mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 10:57:48 +03:00
14 lines
462 B
Scheme
14 lines
462 B
Scheme
; inherits: markdown
|
|
|
|
; In Rust, it is common to have documentation code blocks not specify the
|
|
; language, and it is assumed to be Rust if it is not specified.
|
|
|
|
(fenced_code_block
|
|
(code_fence_content) @injection.content
|
|
(#set! injection.language "rust")
|
|
(#set! injection.include-unnamed-children))
|
|
|
|
(fenced_code_block
|
|
(info_string
|
|
(language) @injection.language)
|
|
(code_fence_content) @injection.content (#set! injection.include-unnamed-children))
|