aboutsummaryrefslogtreecommitdiffstats
path: root/queries/xml/injections.scm
blob: 99b3a9cc826d6aba9ca4c7944a5f42be97c03c2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
((Comment) @injection.content 
 (#set! injection.language "comment"))

; SVG style
((element
   (STag (Name) @_name)
   (content) @injection.content)
 (#eq? @_name "style")
 (#set! injection.combined)
 (#set! injection.include-children)
 (#set! injection.language "css"))

; SVG script
((element
   (STag (Name) @_name)
   (content) @injection.content)
 (#eq? @_name "script")
 (#set! injection.combined)
 (#set! injection.include-children)
 (#set! injection.language "javascript"))

; phpMyAdmin dump
((element
   (STag (Name) @_name)
   (content) @injection.content)
 (#eq? @_name "pma:table")
 (#set! injection.combined)
 (#set! injection.include-children)
 (#set! injection.language "sql"))