queries: Inject markdown into Rust doc comments

Co-authored-by: Nik Revenco <154856872+nik-rev@users.noreply.github.com>
This commit is contained in:
Michael Davis 2025-02-25 11:57:27 -05:00
parent ac88096c98
commit 813f771c0a
No known key found for this signature in database
5 changed files with 30 additions and 1 deletions

View file

@ -0,0 +1,14 @@
; 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))