aboutsummaryrefslogtreecommitdiffstats
path: root/queries/rst/highlights.scm
blob: 75908713096144bebb460c5486ed0286fc4f84ba (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
;; Marks

[
  ".."
  "|"
  "--"
  "__"
  ":"
  "::"
  "bullet"
  "adornment"
  (transition)
] @punctuation.special

;; Resets for injection

(doctest_block) @none

;; Directives

(directive
  name: (type) @function)

(directive
  body: (body (arguments) @parameter))

((directive
  name: (type) @include)
 (#eq? @include "include"))

((directive
   name: (type) @function.builtin)
 (#any-of?
  @function.builtin
  ; https://docutils.sourceforge.io/docs/ref/rst/directives.html
  "attention" "caution" "danger" "error" "hint" "important" "note" "tip" "warning" "admonition"
  "image" "figure"
  "topic" "sidebar" "line-block" "parsed-literal" "code" "math" "rubric" "epigraph" "highlights" "pull-quote" "compound" "container"
  "table" "csv-table" "list-table"
  "contents" "sectnum" "section-numbering" "header" "footer"
  "target-notes"
  "meta"
  "replace" "unicode" "date"
  "raw" "class" "role" "default-role" "title" "restructuredtext-test-directive"))

;; Blocks

[
  (literal_block)
  (line_block)
] @text.literal

(block_quote
  (attribution)? @text.emphasis) @text.literal

(substitution_definition
  name: (substitution) @constant)

(footnote
  name: (label) @constant)

(citation
  name: (label) @constant)

(target
  name: (name)? @constant
  link: (_)? @text.literal)

;; Lists

; Definition lists
(list_item
  (term) @text.strong
  (classifier)? @text.emphasis)

; Field lists
(field (field_name) @constant)

;; Inline markup

(emphasis) @text.emphasis

(strong) @text.strong

(standalone_hyperlink) @text.uri @nospell

(role) @function

((role) @function.builtin
 (#any-of?
  @function.builtin
  ; https://docutils.sourceforge.io/docs/ref/rst/roles.html
  ":emphasis:"
  ":literal:"
  ":code:"
  ":math:"
  ":pep-reference:"
  ":PEP:"
  ":rfc-reference:"
  ":RFC:"
  ":strong:"
  ":subscript:"
  ":sub:"
  ":superscript:"
  ":sup:"
  ":title-reference:"
  ":title:"
  ":t:"
  ":raw:"))

[
 "interpreted_text"
  (literal)
] @text.literal

; Prefix role
((interpreted_text
  (role) @_role
  "interpreted_text" @text.emphasis)
 (#eq? @_role ":emphasis:"))

((interpreted_text
  (role) @_role
  "interpreted_text" @text.strong)
 (#eq? @_role ":strong:"))

((interpreted_text
  (role) @_role
  "interpreted_text" @none)
 (#eq? @_role ":math:"))

; Suffix role
((interpreted_text
  "interpreted_text" @text.emphasis
  (role) @_role)
 (#eq? @_role ":emphasis:"))

((interpreted_text
  "interpreted_text" @text.strong
  (role) @_role)
 (#eq? @_role ":strong:"))

((interpreted_text
  "interpreted_text" @none
  (role) @_role)
 (#eq? @_role ":math:"))

[
  (inline_target)
  (substitution_reference)
  (footnote_reference)
  (citation_reference)
  (reference)
] @text.reference @nospell

;; Others

(title) @text.title

(comment) @comment @spell
(comment "..") @comment

(directive
    name: (type) @_directive
    body: (body
        (content) @spell
        (#not-any-of? @_directive "code" "code-block" "sourcecode")))

(paragraph) @spell

(ERROR) @error