mirror of
https://github.com/folke/snacks.nvim
synced 2025-07-07 21:25:11 +00:00
18 lines
414 B
Scheme
18 lines
414 B
Scheme
|
|
(jsx_element
|
|
(jsx_opening_element
|
|
(identifier) @tag (#eq? @tag "img")
|
|
(jsx_attribute
|
|
(property_identifier) @attr_name (#eq? @attr_name "src")
|
|
(string (string_fragment) @image)
|
|
)
|
|
)
|
|
) @anchor
|
|
|
|
(jsx_self_closing_element
|
|
(identifier) @tag (#eq? @tag "img")
|
|
(jsx_attribute
|
|
(property_identifier) @attr_name (#eq? @attr_name "src")
|
|
(string (string_fragment) @image)
|
|
)
|
|
) @anchor
|