2024-01-06 15:05:50 +09:00
|
|
|
((Comment) @injection.content
|
|
|
|
|
(#set! injection.language "comment"))
|
2024-01-20 18:47:56 +09:00
|
|
|
|
2023-08-04 14:50:28 +03:00
|
|
|
; SVG style
|
|
|
|
|
((element
|
2024-01-06 15:05:50 +09:00
|
|
|
(STag
|
|
|
|
|
(Name) @_name)
|
|
|
|
|
(content) @injection.content)
|
|
|
|
|
(#eq? @_name "style")
|
|
|
|
|
(#set! injection.combined)
|
|
|
|
|
(#set! injection.include-children)
|
|
|
|
|
(#set! injection.language "css"))
|
2023-08-04 14:50:28 +03:00
|
|
|
|
|
|
|
|
; SVG script
|
|
|
|
|
((element
|
2024-01-06 15:05:50 +09:00
|
|
|
(STag
|
|
|
|
|
(Name) @_name)
|
|
|
|
|
(content) @injection.content)
|
|
|
|
|
(#eq? @_name "script")
|
|
|
|
|
(#set! injection.combined)
|
|
|
|
|
(#set! injection.include-children)
|
|
|
|
|
(#set! injection.language "javascript"))
|
2023-08-04 14:50:28 +03:00
|
|
|
|
|
|
|
|
; phpMyAdmin dump
|
|
|
|
|
((element
|
2024-01-06 15:05:50 +09:00
|
|
|
(STag
|
|
|
|
|
(Name) @_name)
|
|
|
|
|
(content) @injection.content)
|
|
|
|
|
(#eq? @_name "pma:table")
|
|
|
|
|
(#set! injection.combined)
|
|
|
|
|
(#set! injection.include-children)
|
|
|
|
|
(#set! injection.language "sql"))
|