mirror of
https://github.com/folke/snacks.nvim
synced 2025-07-07 21:25:11 +00:00
23 lines
512 B
Scheme
23 lines
512 B
Scheme
|
|
(element
|
|
(start_tag
|
|
(tag_name) @tag (#eq? @tag "img")
|
|
(attribute
|
|
(attribute_name) @attr_name (#eq? @attr_name "src")
|
|
(quoted_attribute_value (attribute_value) @image.src)
|
|
)
|
|
)
|
|
) @image
|
|
|
|
(self_closing_tag
|
|
(tag_name) @tag (#eq? @tag "img")
|
|
(attribute
|
|
(attribute_name) @attr_name (#eq? @attr_name "src")
|
|
(quoted_attribute_value (attribute_value) @image.src)
|
|
)
|
|
) @image
|
|
|
|
(element
|
|
(start_tag (tag_name) @tag (#eq? @tag "svg"))
|
|
(#set! image.ext "svg")
|
|
) @image @image.content
|