raf 0.0.0 → 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/COPYING +674 -0
- data/Gemfile.lock +20 -0
- data/History.rdoc +2 -0
- data/LICENSE.txt +11 -17
- data/README.rdoc +2 -13
- data/Rakefile +3 -3
- data/VERSION +1 -1
- data/bin/raf2html +18 -0
- data/lib/default.css +116 -0
- data/lib/parserutility.rb +18 -0
- data/lib/raf2html.rb +167 -0
- data/lib/raf2html_element.rb +195 -0
- data/lib/rafblockparser.output +670 -0
- data/lib/rafblockparser.ry +356 -0
- data/lib/rafblockparser.tab.rb +717 -0
- data/lib/rafelement.rb +219 -0
- data/lib/rafinlineparser.output +1804 -0
- data/lib/rafinlineparser.ry +451 -0
- data/lib/rafinlineparser.tab.rb +1117 -0
- data/raf.gemspec +118 -0
- data/test/test_descblock.rb +88 -0
- data/test/test_emphasis.rb +76 -0
- data/test/test_erb.rb +23 -0
- data/test/test_footnote.rb +38 -0
- data/test/test_headline.rb +43 -0
- data/test/test_headline_and_itemlist.rb +40 -0
- data/test/test_helper.rb +2 -0
- data/test/test_image.rb +81 -0
- data/test/test_italic.rb +76 -0
- data/test/test_itemlistblock.rb +151 -0
- data/test/test_numlistblock.rb +342 -0
- data/test/test_paragraph.rb +76 -0
- data/test/test_quoteblock.rb +109 -0
- data/test/test_reference.rb +47 -0
- data/test/test_ruby.rb +66 -0
- data/test/test_strike.rb +76 -0
- data/test/test_tableblock.rb +63 -0
- data/test/test_verb.rb +86 -0
- data/test/ts_block.rb +9 -0
- data/test/ts_inline.rb +8 -0
- data/test/ts_rafparser.rb +4 -0
- metadata +67 -12
- data/lib/raf.rb +0 -0
- data/test/test_raf.rb +0 -7
@@ -0,0 +1,1804 @@
|
|
1
|
+
state 15 contains 5 shift/reduce conflicts
|
2
|
+
|
3
|
+
|
4
|
+
-------- Grammar --------
|
5
|
+
|
6
|
+
rule 1 content:
|
7
|
+
rule 2 content: elements
|
8
|
+
rule 3 elements: elements element
|
9
|
+
rule 4 elements: element
|
10
|
+
rule 5 element: emphasis
|
11
|
+
rule 6 element: italic
|
12
|
+
rule 7 element: strike
|
13
|
+
rule 8 element: label
|
14
|
+
rule 9 element: reference
|
15
|
+
rule 10 element: ruby
|
16
|
+
rule 11 element: footnote
|
17
|
+
rule 12 element: image
|
18
|
+
rule 13 element: verb
|
19
|
+
rule 14 element: erb
|
20
|
+
rule 15 element: manuedo
|
21
|
+
rule 16 element: normal_strings
|
22
|
+
rule 17 emphasis: EM_OPEN content EM_CLOSE
|
23
|
+
rule 18 italic: ITALIC_OPEN content ITALIC_CLOSE
|
24
|
+
rule 19 strike: STRIKE_OPEN content STRIKE_CLOSE
|
25
|
+
rule 20 footnote: FOOTNOTE_OPEN content FOOTNOTE_CLOSE
|
26
|
+
rule 21 image_string: OTHER
|
27
|
+
rule 22 image_string: QUOTE
|
28
|
+
rule 23 image_string: BAR
|
29
|
+
rule 24 image_string: SLASH
|
30
|
+
rule 25 image_string: BACK_SLASH
|
31
|
+
rule 26 image_string: EM_OPEN
|
32
|
+
rule 27 image_string: EM_CLOSE
|
33
|
+
rule 28 image_string: ITALIC_OPEN
|
34
|
+
rule 29 image_string: ITALIC_CLOSE
|
35
|
+
rule 30 image_string: STRIKE_OPEN
|
36
|
+
rule 31 image_string: STRIKE_CLOSE
|
37
|
+
rule 32 image_string: RUBY_OPEN
|
38
|
+
rule 33 image_string: RUBY_CLOSE
|
39
|
+
rule 34 image_string: MANUEDO_OPEN
|
40
|
+
rule 35 image_string: MANUEDO_CLOSE
|
41
|
+
rule 36 image_string: ERB_OPEN
|
42
|
+
rule 37 image_string: ERB_CLOSE
|
43
|
+
rule 38 image_string: REFERENCE_OPEN
|
44
|
+
rule 39 image_string: REFERENCE_CLOSE
|
45
|
+
rule 40 image_string: LABEL_OPEN
|
46
|
+
rule 41 image_string: LABEL_CLOSE
|
47
|
+
rule 42 image_string: FOOTNOTE_OPEN
|
48
|
+
rule 43 image_string: FOOTNOTE_CLOSE
|
49
|
+
rule 44 image_string: VERB_OPEN
|
50
|
+
rule 45 image_string: VERB_CLOSE
|
51
|
+
rule 46 image_string: IMAGE_OPEN
|
52
|
+
rule 47 image_strings: image_strings image_string
|
53
|
+
rule 48 image_strings: image_string
|
54
|
+
rule 49 image: IMAGE_OPEN image_strings IMAGE_CLOSE
|
55
|
+
rule 50 ruby_string: OTHER
|
56
|
+
rule 51 ruby_string: QUOTE
|
57
|
+
rule 52 ruby_string: BAR
|
58
|
+
rule 53 ruby_string: SLASH
|
59
|
+
rule 54 ruby_string: BACK_SLASH
|
60
|
+
rule 55 ruby_string: EM_OPEN
|
61
|
+
rule 56 ruby_string: EM_CLOSE
|
62
|
+
rule 57 ruby_string: ITALIC_OPEN
|
63
|
+
rule 58 ruby_string: ITALIC_CLOSE
|
64
|
+
rule 59 ruby_string: STRIKE_OPEN
|
65
|
+
rule 60 ruby_string: STRIKE_CLOSE
|
66
|
+
rule 61 ruby_string: IMAGE_OPEN
|
67
|
+
rule 62 ruby_string: IMAGE_CLOSE
|
68
|
+
rule 63 ruby_string: MANUEDO_OPEN
|
69
|
+
rule 64 ruby_string: MANUEDO_CLOSE
|
70
|
+
rule 65 ruby_string: ERB_OPEN
|
71
|
+
rule 66 ruby_string: ERB_CLOSE
|
72
|
+
rule 67 ruby_string: REFERENCE_OPEN
|
73
|
+
rule 68 ruby_string: REFERENCE_CLOSE
|
74
|
+
rule 69 ruby_string: LABEL_OPEN
|
75
|
+
rule 70 ruby_string: LABEL_CLOSE
|
76
|
+
rule 71 ruby_string: RUBY_OPEN
|
77
|
+
rule 72 ruby_string: FOOTNOTE_OPEN
|
78
|
+
rule 73 ruby_string: FOOTNOTE_CLOSE
|
79
|
+
rule 74 ruby_string: VERB_OPEN
|
80
|
+
rule 75 ruby_string: VERB_CLOSE
|
81
|
+
rule 76 ruby_strings: ruby_strings ruby_string
|
82
|
+
rule 77 ruby_strings: ruby_string
|
83
|
+
rule 78 ruby: RUBY_OPEN ruby_strings RUBY_CLOSE
|
84
|
+
rule 79 erb: ERB_OPEN verb_string ERB_CLOSE
|
85
|
+
rule 80 manuedo: MANUEDO_OPEN content MANUEDO_CLOSE
|
86
|
+
rule 81 label_string: OTHER
|
87
|
+
rule 82 label_string: QUOTE
|
88
|
+
rule 83 label_string: BAR
|
89
|
+
rule 84 label_string: SLASH
|
90
|
+
rule 85 label_string: BACK_SLASH
|
91
|
+
rule 86 label_strings: label_strings label_string
|
92
|
+
rule 87 label_strings: label_string
|
93
|
+
rule 88 label: LABEL_OPEN label_strings LABEL_CLOSE
|
94
|
+
rule 89 reference_string: OTHER
|
95
|
+
rule 90 reference_string: QUOTE
|
96
|
+
rule 91 reference_string: BAR
|
97
|
+
rule 92 reference_string: SLASH
|
98
|
+
rule 93 reference_string: BACK_SLASH
|
99
|
+
rule 94 reference_strings: reference_strings reference_string
|
100
|
+
rule 95 reference_strings: reference_string
|
101
|
+
rule 96 reference: REFERENCE_OPEN reference_strings REFERENCE_CLOSE
|
102
|
+
rule 97 verb_string: OTHER
|
103
|
+
rule 98 verb_string: QUOTE
|
104
|
+
rule 99 verb_string: BAR
|
105
|
+
rule 100 verb_string: SLASH
|
106
|
+
rule 101 verb_string: BACK_SLASH
|
107
|
+
rule 102 verb_string: EM_OPEN
|
108
|
+
rule 103 verb_string: EM_CLOSE
|
109
|
+
rule 104 verb_string: ITALIC_OPEN
|
110
|
+
rule 105 verb_string: ITALIC_CLOSE
|
111
|
+
rule 106 verb_string: STRIKE_OPEN
|
112
|
+
rule 107 verb_string: STRIKE_CLOSE
|
113
|
+
rule 108 verb_string: IMAGE_OPEN
|
114
|
+
rule 109 verb_string: IMAGE_CLOSE
|
115
|
+
rule 110 verb_string: MANUEDO_OPEN
|
116
|
+
rule 111 verb_string: MANUEDO_CLOSE
|
117
|
+
rule 112 verb_string: ERB_OPEN
|
118
|
+
rule 113 verb_string: ERB_CLOSE
|
119
|
+
rule 114 verb_string: REFERENCE_OPEN
|
120
|
+
rule 115 verb_string: REFERENCE_CLOSE
|
121
|
+
rule 116 verb_string: LABEL_OPEN
|
122
|
+
rule 117 verb_string: LABEL_CLOSE
|
123
|
+
rule 118 verb_string: RUBY_OPEN
|
124
|
+
rule 119 verb_string: RUBY_CLOSE
|
125
|
+
rule 120 verb_string: FOOTNOTE_OPEN
|
126
|
+
rule 121 verb_string: FOOTNOTE_CLOSE
|
127
|
+
rule 122 verb_string: VERB_OPEN
|
128
|
+
rule 123 verb_strings: verb_string
|
129
|
+
rule 124 verb_strings: verb_strings verb_string
|
130
|
+
rule 125 verb: VERB_OPEN verb_strings VERB_CLOSE
|
131
|
+
rule 126 normal_strings: normal_string
|
132
|
+
rule 127 normal_strings: normal_strings normal_string
|
133
|
+
rule 128 normal_string: OTHER
|
134
|
+
rule 129 normal_string: QUOTE
|
135
|
+
rule 130 normal_string: BAR
|
136
|
+
rule 131 normal_string: SLASH
|
137
|
+
rule 132 normal_string: BACK_SLASH
|
138
|
+
|
139
|
+
------- Symbols -------
|
140
|
+
|
141
|
+
**Nonterminals, with rules where they appear
|
142
|
+
|
143
|
+
$start (29)
|
144
|
+
on right:
|
145
|
+
on left :
|
146
|
+
content (30)
|
147
|
+
on right: 17 18 19 20 80
|
148
|
+
on left : 1 2
|
149
|
+
elements (31)
|
150
|
+
on right: 2 3
|
151
|
+
on left : 3 4
|
152
|
+
element (32)
|
153
|
+
on right: 3 4
|
154
|
+
on left : 5 6 7 8 9 10 11 12 13 14 15 16
|
155
|
+
emphasis (33)
|
156
|
+
on right: 5
|
157
|
+
on left : 17
|
158
|
+
italic (34)
|
159
|
+
on right: 6
|
160
|
+
on left : 18
|
161
|
+
strike (35)
|
162
|
+
on right: 7
|
163
|
+
on left : 19
|
164
|
+
label (36)
|
165
|
+
on right: 8
|
166
|
+
on left : 88
|
167
|
+
reference (37)
|
168
|
+
on right: 9
|
169
|
+
on left : 96
|
170
|
+
ruby (38)
|
171
|
+
on right: 10
|
172
|
+
on left : 78
|
173
|
+
footnote (39)
|
174
|
+
on right: 11
|
175
|
+
on left : 20
|
176
|
+
image (40)
|
177
|
+
on right: 12
|
178
|
+
on left : 49
|
179
|
+
verb (41)
|
180
|
+
on right: 13
|
181
|
+
on left : 125
|
182
|
+
erb (42)
|
183
|
+
on right: 14
|
184
|
+
on left : 79
|
185
|
+
manuedo (43)
|
186
|
+
on right: 15
|
187
|
+
on left : 80
|
188
|
+
normal_strings (44)
|
189
|
+
on right: 16 127
|
190
|
+
on left : 126 127
|
191
|
+
image_string (45)
|
192
|
+
on right: 47 48
|
193
|
+
on left : 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
|
194
|
+
image_strings (46)
|
195
|
+
on right: 47 49
|
196
|
+
on left : 47 48
|
197
|
+
ruby_string (47)
|
198
|
+
on right: 76 77
|
199
|
+
on left : 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
|
200
|
+
ruby_strings (48)
|
201
|
+
on right: 76 78
|
202
|
+
on left : 76 77
|
203
|
+
verb_string (49)
|
204
|
+
on right: 79 123 124
|
205
|
+
on left : 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
|
206
|
+
label_string (50)
|
207
|
+
on right: 86 87
|
208
|
+
on left : 81 82 83 84 85
|
209
|
+
label_strings (51)
|
210
|
+
on right: 86 88
|
211
|
+
on left : 86 87
|
212
|
+
reference_string (52)
|
213
|
+
on right: 94 95
|
214
|
+
on left : 89 90 91 92 93
|
215
|
+
reference_strings (53)
|
216
|
+
on right: 94 96
|
217
|
+
on left : 94 95
|
218
|
+
verb_strings (54)
|
219
|
+
on right: 124 125
|
220
|
+
on left : 123 124
|
221
|
+
normal_string (55)
|
222
|
+
on right: 126 127
|
223
|
+
on left : 128 129 130 131 132
|
224
|
+
|
225
|
+
**Terminals, with rules where they appear
|
226
|
+
|
227
|
+
$end (0)
|
228
|
+
error (1)
|
229
|
+
EM_OPEN (2) 17 26 55 102
|
230
|
+
EM_CLOSE (3) 17 27 56 103
|
231
|
+
ITALIC_OPEN (4) 18 28 57 104
|
232
|
+
ITALIC_CLOSE (5) 18 29 58 105
|
233
|
+
STRIKE_OPEN (6) 19 30 59 106
|
234
|
+
STRIKE_CLOSE (7) 19 31 60 107
|
235
|
+
LABEL_OPEN (8) 40 69 88 116
|
236
|
+
LABEL_CLOSE (9) 41 70 88 117
|
237
|
+
REFERENCE_OPEN (10) 38 67 96 114
|
238
|
+
REFERENCE_CLOSE (11) 39 68 96 115
|
239
|
+
VERB_OPEN (12) 44 74 122 125
|
240
|
+
VERB_CLOSE (13) 45 75 125
|
241
|
+
ERB_OPEN (14) 36 65 79 112
|
242
|
+
ERB_CLOSE (15) 37 66 79 113
|
243
|
+
FOOTNOTE_OPEN (16) 20 42 72 120
|
244
|
+
FOOTNOTE_CLOSE (17) 20 43 73 121
|
245
|
+
RUBY_OPEN (18) 32 71 78 118
|
246
|
+
RUBY_CLOSE (19) 33 78 119
|
247
|
+
IMAGE_OPEN (20) 46 49 61 108
|
248
|
+
IMAGE_CLOSE (21) 49 62 109
|
249
|
+
MANUEDO_OPEN (22) 34 63 80 110
|
250
|
+
MANUEDO_CLOSE (23) 35 64 80 111
|
251
|
+
BAR (24) 23 52 83 91 99 130
|
252
|
+
QUOTE (25) 22 51 82 90 98 129
|
253
|
+
SLASH (26) 24 53 84 92 100 131
|
254
|
+
BACK_SLASH (27) 25 54 85 93 101 132
|
255
|
+
OTHER (28) 21 50 81 89 97 128
|
256
|
+
|
257
|
+
--------- State ---------
|
258
|
+
|
259
|
+
state 0
|
260
|
+
|
261
|
+
|
262
|
+
EM_OPEN shift, and go to state 16
|
263
|
+
ITALIC_OPEN shift, and go to state 17
|
264
|
+
STRIKE_OPEN shift, and go to state 18
|
265
|
+
LABEL_OPEN shift, and go to state 24
|
266
|
+
REFERENCE_OPEN shift, and go to state 25
|
267
|
+
VERB_OPEN shift, and go to state 26
|
268
|
+
ERB_OPEN shift, and go to state 22
|
269
|
+
FOOTNOTE_OPEN shift, and go to state 19
|
270
|
+
RUBY_OPEN shift, and go to state 21
|
271
|
+
IMAGE_OPEN shift, and go to state 20
|
272
|
+
MANUEDO_OPEN shift, and go to state 23
|
273
|
+
BAR shift, and go to state 30
|
274
|
+
QUOTE shift, and go to state 29
|
275
|
+
SLASH shift, and go to state 31
|
276
|
+
BACK_SLASH shift, and go to state 32
|
277
|
+
OTHER shift, and go to state 28
|
278
|
+
$default reduce using rule 1 (content)
|
279
|
+
|
280
|
+
content go to state 1
|
281
|
+
elements go to state 2
|
282
|
+
element go to state 3
|
283
|
+
emphasis go to state 4
|
284
|
+
italic go to state 5
|
285
|
+
strike go to state 6
|
286
|
+
label go to state 7
|
287
|
+
reference go to state 8
|
288
|
+
ruby go to state 9
|
289
|
+
footnote go to state 10
|
290
|
+
image go to state 11
|
291
|
+
verb go to state 12
|
292
|
+
erb go to state 13
|
293
|
+
manuedo go to state 14
|
294
|
+
normal_strings go to state 15
|
295
|
+
normal_string go to state 27
|
296
|
+
|
297
|
+
state 1
|
298
|
+
|
299
|
+
|
300
|
+
$end shift, and go to state 33
|
301
|
+
|
302
|
+
|
303
|
+
state 2
|
304
|
+
|
305
|
+
2) content : elements _
|
306
|
+
3) elements : elements _ element
|
307
|
+
|
308
|
+
EM_OPEN shift, and go to state 16
|
309
|
+
ITALIC_OPEN shift, and go to state 17
|
310
|
+
STRIKE_OPEN shift, and go to state 18
|
311
|
+
LABEL_OPEN shift, and go to state 24
|
312
|
+
REFERENCE_OPEN shift, and go to state 25
|
313
|
+
VERB_OPEN shift, and go to state 26
|
314
|
+
ERB_OPEN shift, and go to state 22
|
315
|
+
FOOTNOTE_OPEN shift, and go to state 19
|
316
|
+
RUBY_OPEN shift, and go to state 21
|
317
|
+
IMAGE_OPEN shift, and go to state 20
|
318
|
+
MANUEDO_OPEN shift, and go to state 23
|
319
|
+
BAR shift, and go to state 30
|
320
|
+
QUOTE shift, and go to state 29
|
321
|
+
SLASH shift, and go to state 31
|
322
|
+
BACK_SLASH shift, and go to state 32
|
323
|
+
OTHER shift, and go to state 28
|
324
|
+
$default reduce using rule 2 (content)
|
325
|
+
|
326
|
+
element go to state 34
|
327
|
+
emphasis go to state 4
|
328
|
+
italic go to state 5
|
329
|
+
strike go to state 6
|
330
|
+
label go to state 7
|
331
|
+
reference go to state 8
|
332
|
+
ruby go to state 9
|
333
|
+
footnote go to state 10
|
334
|
+
image go to state 11
|
335
|
+
verb go to state 12
|
336
|
+
erb go to state 13
|
337
|
+
manuedo go to state 14
|
338
|
+
normal_strings go to state 15
|
339
|
+
normal_string go to state 27
|
340
|
+
|
341
|
+
state 3
|
342
|
+
|
343
|
+
4) elements : element _
|
344
|
+
|
345
|
+
$default reduce using rule 4 (elements)
|
346
|
+
|
347
|
+
|
348
|
+
state 4
|
349
|
+
|
350
|
+
5) element : emphasis _
|
351
|
+
|
352
|
+
$default reduce using rule 5 (element)
|
353
|
+
|
354
|
+
|
355
|
+
state 5
|
356
|
+
|
357
|
+
6) element : italic _
|
358
|
+
|
359
|
+
$default reduce using rule 6 (element)
|
360
|
+
|
361
|
+
|
362
|
+
state 6
|
363
|
+
|
364
|
+
7) element : strike _
|
365
|
+
|
366
|
+
$default reduce using rule 7 (element)
|
367
|
+
|
368
|
+
|
369
|
+
state 7
|
370
|
+
|
371
|
+
8) element : label _
|
372
|
+
|
373
|
+
$default reduce using rule 8 (element)
|
374
|
+
|
375
|
+
|
376
|
+
state 8
|
377
|
+
|
378
|
+
9) element : reference _
|
379
|
+
|
380
|
+
$default reduce using rule 9 (element)
|
381
|
+
|
382
|
+
|
383
|
+
state 9
|
384
|
+
|
385
|
+
10) element : ruby _
|
386
|
+
|
387
|
+
$default reduce using rule 10 (element)
|
388
|
+
|
389
|
+
|
390
|
+
state 10
|
391
|
+
|
392
|
+
11) element : footnote _
|
393
|
+
|
394
|
+
$default reduce using rule 11 (element)
|
395
|
+
|
396
|
+
|
397
|
+
state 11
|
398
|
+
|
399
|
+
12) element : image _
|
400
|
+
|
401
|
+
$default reduce using rule 12 (element)
|
402
|
+
|
403
|
+
|
404
|
+
state 12
|
405
|
+
|
406
|
+
13) element : verb _
|
407
|
+
|
408
|
+
$default reduce using rule 13 (element)
|
409
|
+
|
410
|
+
|
411
|
+
state 13
|
412
|
+
|
413
|
+
14) element : erb _
|
414
|
+
|
415
|
+
$default reduce using rule 14 (element)
|
416
|
+
|
417
|
+
|
418
|
+
state 14
|
419
|
+
|
420
|
+
15) element : manuedo _
|
421
|
+
|
422
|
+
$default reduce using rule 15 (element)
|
423
|
+
|
424
|
+
|
425
|
+
state 15
|
426
|
+
|
427
|
+
16) element : normal_strings _
|
428
|
+
127) normal_strings : normal_strings _ normal_string
|
429
|
+
|
430
|
+
BAR shift, and go to state 30
|
431
|
+
BAR [reduce using rule 16 (element)]
|
432
|
+
QUOTE shift, and go to state 29
|
433
|
+
QUOTE [reduce using rule 16 (element)]
|
434
|
+
SLASH shift, and go to state 31
|
435
|
+
SLASH [reduce using rule 16 (element)]
|
436
|
+
BACK_SLASH shift, and go to state 32
|
437
|
+
BACK_SLASH [reduce using rule 16 (element)]
|
438
|
+
OTHER shift, and go to state 28
|
439
|
+
OTHER [reduce using rule 16 (element)]
|
440
|
+
$default reduce using rule 16 (element)
|
441
|
+
|
442
|
+
normal_string go to state 35
|
443
|
+
|
444
|
+
state 16
|
445
|
+
|
446
|
+
17) emphasis : EM_OPEN _ content EM_CLOSE
|
447
|
+
|
448
|
+
EM_OPEN shift, and go to state 16
|
449
|
+
ITALIC_OPEN shift, and go to state 17
|
450
|
+
STRIKE_OPEN shift, and go to state 18
|
451
|
+
LABEL_OPEN shift, and go to state 24
|
452
|
+
REFERENCE_OPEN shift, and go to state 25
|
453
|
+
VERB_OPEN shift, and go to state 26
|
454
|
+
ERB_OPEN shift, and go to state 22
|
455
|
+
FOOTNOTE_OPEN shift, and go to state 19
|
456
|
+
RUBY_OPEN shift, and go to state 21
|
457
|
+
IMAGE_OPEN shift, and go to state 20
|
458
|
+
MANUEDO_OPEN shift, and go to state 23
|
459
|
+
BAR shift, and go to state 30
|
460
|
+
QUOTE shift, and go to state 29
|
461
|
+
SLASH shift, and go to state 31
|
462
|
+
BACK_SLASH shift, and go to state 32
|
463
|
+
OTHER shift, and go to state 28
|
464
|
+
$default reduce using rule 1 (content)
|
465
|
+
|
466
|
+
elements go to state 2
|
467
|
+
element go to state 3
|
468
|
+
emphasis go to state 4
|
469
|
+
italic go to state 5
|
470
|
+
strike go to state 6
|
471
|
+
label go to state 7
|
472
|
+
reference go to state 8
|
473
|
+
ruby go to state 9
|
474
|
+
footnote go to state 10
|
475
|
+
image go to state 11
|
476
|
+
verb go to state 12
|
477
|
+
erb go to state 13
|
478
|
+
manuedo go to state 14
|
479
|
+
normal_strings go to state 15
|
480
|
+
content go to state 36
|
481
|
+
normal_string go to state 27
|
482
|
+
|
483
|
+
state 17
|
484
|
+
|
485
|
+
18) italic : ITALIC_OPEN _ content ITALIC_CLOSE
|
486
|
+
|
487
|
+
EM_OPEN shift, and go to state 16
|
488
|
+
ITALIC_OPEN shift, and go to state 17
|
489
|
+
STRIKE_OPEN shift, and go to state 18
|
490
|
+
LABEL_OPEN shift, and go to state 24
|
491
|
+
REFERENCE_OPEN shift, and go to state 25
|
492
|
+
VERB_OPEN shift, and go to state 26
|
493
|
+
ERB_OPEN shift, and go to state 22
|
494
|
+
FOOTNOTE_OPEN shift, and go to state 19
|
495
|
+
RUBY_OPEN shift, and go to state 21
|
496
|
+
IMAGE_OPEN shift, and go to state 20
|
497
|
+
MANUEDO_OPEN shift, and go to state 23
|
498
|
+
BAR shift, and go to state 30
|
499
|
+
QUOTE shift, and go to state 29
|
500
|
+
SLASH shift, and go to state 31
|
501
|
+
BACK_SLASH shift, and go to state 32
|
502
|
+
OTHER shift, and go to state 28
|
503
|
+
$default reduce using rule 1 (content)
|
504
|
+
|
505
|
+
elements go to state 2
|
506
|
+
element go to state 3
|
507
|
+
emphasis go to state 4
|
508
|
+
italic go to state 5
|
509
|
+
strike go to state 6
|
510
|
+
label go to state 7
|
511
|
+
reference go to state 8
|
512
|
+
ruby go to state 9
|
513
|
+
footnote go to state 10
|
514
|
+
image go to state 11
|
515
|
+
verb go to state 12
|
516
|
+
erb go to state 13
|
517
|
+
manuedo go to state 14
|
518
|
+
normal_strings go to state 15
|
519
|
+
content go to state 37
|
520
|
+
normal_string go to state 27
|
521
|
+
|
522
|
+
state 18
|
523
|
+
|
524
|
+
19) strike : STRIKE_OPEN _ content STRIKE_CLOSE
|
525
|
+
|
526
|
+
EM_OPEN shift, and go to state 16
|
527
|
+
ITALIC_OPEN shift, and go to state 17
|
528
|
+
STRIKE_OPEN shift, and go to state 18
|
529
|
+
LABEL_OPEN shift, and go to state 24
|
530
|
+
REFERENCE_OPEN shift, and go to state 25
|
531
|
+
VERB_OPEN shift, and go to state 26
|
532
|
+
ERB_OPEN shift, and go to state 22
|
533
|
+
FOOTNOTE_OPEN shift, and go to state 19
|
534
|
+
RUBY_OPEN shift, and go to state 21
|
535
|
+
IMAGE_OPEN shift, and go to state 20
|
536
|
+
MANUEDO_OPEN shift, and go to state 23
|
537
|
+
BAR shift, and go to state 30
|
538
|
+
QUOTE shift, and go to state 29
|
539
|
+
SLASH shift, and go to state 31
|
540
|
+
BACK_SLASH shift, and go to state 32
|
541
|
+
OTHER shift, and go to state 28
|
542
|
+
$default reduce using rule 1 (content)
|
543
|
+
|
544
|
+
elements go to state 2
|
545
|
+
element go to state 3
|
546
|
+
emphasis go to state 4
|
547
|
+
italic go to state 5
|
548
|
+
strike go to state 6
|
549
|
+
label go to state 7
|
550
|
+
reference go to state 8
|
551
|
+
ruby go to state 9
|
552
|
+
footnote go to state 10
|
553
|
+
image go to state 11
|
554
|
+
verb go to state 12
|
555
|
+
erb go to state 13
|
556
|
+
manuedo go to state 14
|
557
|
+
normal_strings go to state 15
|
558
|
+
content go to state 38
|
559
|
+
normal_string go to state 27
|
560
|
+
|
561
|
+
state 19
|
562
|
+
|
563
|
+
20) footnote : FOOTNOTE_OPEN _ content FOOTNOTE_CLOSE
|
564
|
+
|
565
|
+
EM_OPEN shift, and go to state 16
|
566
|
+
ITALIC_OPEN shift, and go to state 17
|
567
|
+
STRIKE_OPEN shift, and go to state 18
|
568
|
+
LABEL_OPEN shift, and go to state 24
|
569
|
+
REFERENCE_OPEN shift, and go to state 25
|
570
|
+
VERB_OPEN shift, and go to state 26
|
571
|
+
ERB_OPEN shift, and go to state 22
|
572
|
+
FOOTNOTE_OPEN shift, and go to state 19
|
573
|
+
RUBY_OPEN shift, and go to state 21
|
574
|
+
IMAGE_OPEN shift, and go to state 20
|
575
|
+
MANUEDO_OPEN shift, and go to state 23
|
576
|
+
BAR shift, and go to state 30
|
577
|
+
QUOTE shift, and go to state 29
|
578
|
+
SLASH shift, and go to state 31
|
579
|
+
BACK_SLASH shift, and go to state 32
|
580
|
+
OTHER shift, and go to state 28
|
581
|
+
$default reduce using rule 1 (content)
|
582
|
+
|
583
|
+
elements go to state 2
|
584
|
+
element go to state 3
|
585
|
+
emphasis go to state 4
|
586
|
+
italic go to state 5
|
587
|
+
strike go to state 6
|
588
|
+
label go to state 7
|
589
|
+
reference go to state 8
|
590
|
+
ruby go to state 9
|
591
|
+
footnote go to state 10
|
592
|
+
image go to state 11
|
593
|
+
verb go to state 12
|
594
|
+
erb go to state 13
|
595
|
+
manuedo go to state 14
|
596
|
+
normal_strings go to state 15
|
597
|
+
content go to state 39
|
598
|
+
normal_string go to state 27
|
599
|
+
|
600
|
+
state 20
|
601
|
+
|
602
|
+
49) image : IMAGE_OPEN _ image_strings IMAGE_CLOSE
|
603
|
+
|
604
|
+
EM_OPEN shift, and go to state 45
|
605
|
+
EM_CLOSE shift, and go to state 46
|
606
|
+
ITALIC_OPEN shift, and go to state 47
|
607
|
+
ITALIC_CLOSE shift, and go to state 48
|
608
|
+
STRIKE_OPEN shift, and go to state 49
|
609
|
+
STRIKE_CLOSE shift, and go to state 50
|
610
|
+
LABEL_OPEN shift, and go to state 59
|
611
|
+
LABEL_CLOSE shift, and go to state 60
|
612
|
+
REFERENCE_OPEN shift, and go to state 57
|
613
|
+
REFERENCE_CLOSE shift, and go to state 58
|
614
|
+
VERB_OPEN shift, and go to state 63
|
615
|
+
VERB_CLOSE shift, and go to state 64
|
616
|
+
ERB_OPEN shift, and go to state 55
|
617
|
+
ERB_CLOSE shift, and go to state 56
|
618
|
+
FOOTNOTE_OPEN shift, and go to state 61
|
619
|
+
FOOTNOTE_CLOSE shift, and go to state 62
|
620
|
+
RUBY_OPEN shift, and go to state 51
|
621
|
+
RUBY_CLOSE shift, and go to state 52
|
622
|
+
IMAGE_OPEN shift, and go to state 65
|
623
|
+
MANUEDO_OPEN shift, and go to state 53
|
624
|
+
MANUEDO_CLOSE shift, and go to state 54
|
625
|
+
BAR shift, and go to state 42
|
626
|
+
QUOTE shift, and go to state 41
|
627
|
+
SLASH shift, and go to state 43
|
628
|
+
BACK_SLASH shift, and go to state 44
|
629
|
+
OTHER shift, and go to state 40
|
630
|
+
|
631
|
+
image_strings go to state 66
|
632
|
+
image_string go to state 67
|
633
|
+
|
634
|
+
state 21
|
635
|
+
|
636
|
+
78) ruby : RUBY_OPEN _ ruby_strings RUBY_CLOSE
|
637
|
+
|
638
|
+
EM_OPEN shift, and go to state 73
|
639
|
+
EM_CLOSE shift, and go to state 74
|
640
|
+
ITALIC_OPEN shift, and go to state 75
|
641
|
+
ITALIC_CLOSE shift, and go to state 76
|
642
|
+
STRIKE_OPEN shift, and go to state 77
|
643
|
+
STRIKE_CLOSE shift, and go to state 78
|
644
|
+
LABEL_OPEN shift, and go to state 87
|
645
|
+
LABEL_CLOSE shift, and go to state 88
|
646
|
+
REFERENCE_OPEN shift, and go to state 85
|
647
|
+
REFERENCE_CLOSE shift, and go to state 86
|
648
|
+
VERB_OPEN shift, and go to state 92
|
649
|
+
VERB_CLOSE shift, and go to state 93
|
650
|
+
ERB_OPEN shift, and go to state 83
|
651
|
+
ERB_CLOSE shift, and go to state 84
|
652
|
+
FOOTNOTE_OPEN shift, and go to state 90
|
653
|
+
FOOTNOTE_CLOSE shift, and go to state 91
|
654
|
+
RUBY_OPEN shift, and go to state 89
|
655
|
+
IMAGE_OPEN shift, and go to state 79
|
656
|
+
IMAGE_CLOSE shift, and go to state 80
|
657
|
+
MANUEDO_OPEN shift, and go to state 81
|
658
|
+
MANUEDO_CLOSE shift, and go to state 82
|
659
|
+
BAR shift, and go to state 70
|
660
|
+
QUOTE shift, and go to state 69
|
661
|
+
SLASH shift, and go to state 71
|
662
|
+
BACK_SLASH shift, and go to state 72
|
663
|
+
OTHER shift, and go to state 68
|
664
|
+
|
665
|
+
ruby_strings go to state 94
|
666
|
+
ruby_string go to state 95
|
667
|
+
|
668
|
+
state 22
|
669
|
+
|
670
|
+
79) erb : ERB_OPEN _ verb_string ERB_CLOSE
|
671
|
+
|
672
|
+
EM_OPEN shift, and go to state 102
|
673
|
+
EM_CLOSE shift, and go to state 103
|
674
|
+
ITALIC_OPEN shift, and go to state 104
|
675
|
+
ITALIC_CLOSE shift, and go to state 105
|
676
|
+
STRIKE_OPEN shift, and go to state 106
|
677
|
+
STRIKE_CLOSE shift, and go to state 107
|
678
|
+
LABEL_OPEN shift, and go to state 116
|
679
|
+
LABEL_CLOSE shift, and go to state 117
|
680
|
+
REFERENCE_OPEN shift, and go to state 114
|
681
|
+
REFERENCE_CLOSE shift, and go to state 115
|
682
|
+
VERB_OPEN shift, and go to state 122
|
683
|
+
ERB_OPEN shift, and go to state 112
|
684
|
+
ERB_CLOSE shift, and go to state 113
|
685
|
+
FOOTNOTE_OPEN shift, and go to state 120
|
686
|
+
FOOTNOTE_CLOSE shift, and go to state 121
|
687
|
+
RUBY_OPEN shift, and go to state 118
|
688
|
+
RUBY_CLOSE shift, and go to state 119
|
689
|
+
IMAGE_OPEN shift, and go to state 108
|
690
|
+
IMAGE_CLOSE shift, and go to state 109
|
691
|
+
MANUEDO_OPEN shift, and go to state 110
|
692
|
+
MANUEDO_CLOSE shift, and go to state 111
|
693
|
+
BAR shift, and go to state 99
|
694
|
+
QUOTE shift, and go to state 98
|
695
|
+
SLASH shift, and go to state 100
|
696
|
+
BACK_SLASH shift, and go to state 101
|
697
|
+
OTHER shift, and go to state 97
|
698
|
+
|
699
|
+
verb_string go to state 96
|
700
|
+
|
701
|
+
state 23
|
702
|
+
|
703
|
+
80) manuedo : MANUEDO_OPEN _ content MANUEDO_CLOSE
|
704
|
+
|
705
|
+
EM_OPEN shift, and go to state 16
|
706
|
+
ITALIC_OPEN shift, and go to state 17
|
707
|
+
STRIKE_OPEN shift, and go to state 18
|
708
|
+
LABEL_OPEN shift, and go to state 24
|
709
|
+
REFERENCE_OPEN shift, and go to state 25
|
710
|
+
VERB_OPEN shift, and go to state 26
|
711
|
+
ERB_OPEN shift, and go to state 22
|
712
|
+
FOOTNOTE_OPEN shift, and go to state 19
|
713
|
+
RUBY_OPEN shift, and go to state 21
|
714
|
+
IMAGE_OPEN shift, and go to state 20
|
715
|
+
MANUEDO_OPEN shift, and go to state 23
|
716
|
+
BAR shift, and go to state 30
|
717
|
+
QUOTE shift, and go to state 29
|
718
|
+
SLASH shift, and go to state 31
|
719
|
+
BACK_SLASH shift, and go to state 32
|
720
|
+
OTHER shift, and go to state 28
|
721
|
+
$default reduce using rule 1 (content)
|
722
|
+
|
723
|
+
elements go to state 2
|
724
|
+
element go to state 3
|
725
|
+
emphasis go to state 4
|
726
|
+
italic go to state 5
|
727
|
+
strike go to state 6
|
728
|
+
label go to state 7
|
729
|
+
reference go to state 8
|
730
|
+
ruby go to state 9
|
731
|
+
footnote go to state 10
|
732
|
+
image go to state 11
|
733
|
+
verb go to state 12
|
734
|
+
erb go to state 13
|
735
|
+
manuedo go to state 14
|
736
|
+
normal_strings go to state 15
|
737
|
+
content go to state 123
|
738
|
+
normal_string go to state 27
|
739
|
+
|
740
|
+
state 24
|
741
|
+
|
742
|
+
88) label : LABEL_OPEN _ label_strings LABEL_CLOSE
|
743
|
+
|
744
|
+
BAR shift, and go to state 126
|
745
|
+
QUOTE shift, and go to state 125
|
746
|
+
SLASH shift, and go to state 127
|
747
|
+
BACK_SLASH shift, and go to state 128
|
748
|
+
OTHER shift, and go to state 124
|
749
|
+
|
750
|
+
label_strings go to state 129
|
751
|
+
label_string go to state 130
|
752
|
+
|
753
|
+
state 25
|
754
|
+
|
755
|
+
96) reference : REFERENCE_OPEN _ reference_strings REFERENCE_CLOSE
|
756
|
+
|
757
|
+
BAR shift, and go to state 133
|
758
|
+
QUOTE shift, and go to state 132
|
759
|
+
SLASH shift, and go to state 134
|
760
|
+
BACK_SLASH shift, and go to state 135
|
761
|
+
OTHER shift, and go to state 131
|
762
|
+
|
763
|
+
reference_strings go to state 136
|
764
|
+
reference_string go to state 137
|
765
|
+
|
766
|
+
state 26
|
767
|
+
|
768
|
+
125) verb : VERB_OPEN _ verb_strings VERB_CLOSE
|
769
|
+
|
770
|
+
EM_OPEN shift, and go to state 102
|
771
|
+
EM_CLOSE shift, and go to state 103
|
772
|
+
ITALIC_OPEN shift, and go to state 104
|
773
|
+
ITALIC_CLOSE shift, and go to state 105
|
774
|
+
STRIKE_OPEN shift, and go to state 106
|
775
|
+
STRIKE_CLOSE shift, and go to state 107
|
776
|
+
LABEL_OPEN shift, and go to state 116
|
777
|
+
LABEL_CLOSE shift, and go to state 117
|
778
|
+
REFERENCE_OPEN shift, and go to state 114
|
779
|
+
REFERENCE_CLOSE shift, and go to state 115
|
780
|
+
VERB_OPEN shift, and go to state 122
|
781
|
+
ERB_OPEN shift, and go to state 112
|
782
|
+
ERB_CLOSE shift, and go to state 113
|
783
|
+
FOOTNOTE_OPEN shift, and go to state 120
|
784
|
+
FOOTNOTE_CLOSE shift, and go to state 121
|
785
|
+
RUBY_OPEN shift, and go to state 118
|
786
|
+
RUBY_CLOSE shift, and go to state 119
|
787
|
+
IMAGE_OPEN shift, and go to state 108
|
788
|
+
IMAGE_CLOSE shift, and go to state 109
|
789
|
+
MANUEDO_OPEN shift, and go to state 110
|
790
|
+
MANUEDO_CLOSE shift, and go to state 111
|
791
|
+
BAR shift, and go to state 99
|
792
|
+
QUOTE shift, and go to state 98
|
793
|
+
SLASH shift, and go to state 100
|
794
|
+
BACK_SLASH shift, and go to state 101
|
795
|
+
OTHER shift, and go to state 97
|
796
|
+
|
797
|
+
verb_string go to state 138
|
798
|
+
verb_strings go to state 139
|
799
|
+
|
800
|
+
state 27
|
801
|
+
|
802
|
+
126) normal_strings : normal_string _
|
803
|
+
|
804
|
+
$default reduce using rule 126 (normal_strings)
|
805
|
+
|
806
|
+
|
807
|
+
state 28
|
808
|
+
|
809
|
+
128) normal_string : OTHER _
|
810
|
+
|
811
|
+
$default reduce using rule 128 (normal_string)
|
812
|
+
|
813
|
+
|
814
|
+
state 29
|
815
|
+
|
816
|
+
129) normal_string : QUOTE _
|
817
|
+
|
818
|
+
$default reduce using rule 129 (normal_string)
|
819
|
+
|
820
|
+
|
821
|
+
state 30
|
822
|
+
|
823
|
+
130) normal_string : BAR _
|
824
|
+
|
825
|
+
$default reduce using rule 130 (normal_string)
|
826
|
+
|
827
|
+
|
828
|
+
state 31
|
829
|
+
|
830
|
+
131) normal_string : SLASH _
|
831
|
+
|
832
|
+
$default reduce using rule 131 (normal_string)
|
833
|
+
|
834
|
+
|
835
|
+
state 32
|
836
|
+
|
837
|
+
132) normal_string : BACK_SLASH _
|
838
|
+
|
839
|
+
$default reduce using rule 132 (normal_string)
|
840
|
+
|
841
|
+
|
842
|
+
state 33
|
843
|
+
|
844
|
+
|
845
|
+
$end shift, and go to state 140
|
846
|
+
|
847
|
+
|
848
|
+
state 34
|
849
|
+
|
850
|
+
3) elements : elements element _
|
851
|
+
|
852
|
+
$default reduce using rule 3 (elements)
|
853
|
+
|
854
|
+
|
855
|
+
state 35
|
856
|
+
|
857
|
+
127) normal_strings : normal_strings normal_string _
|
858
|
+
|
859
|
+
$default reduce using rule 127 (normal_strings)
|
860
|
+
|
861
|
+
|
862
|
+
state 36
|
863
|
+
|
864
|
+
17) emphasis : EM_OPEN content _ EM_CLOSE
|
865
|
+
|
866
|
+
EM_CLOSE shift, and go to state 141
|
867
|
+
|
868
|
+
|
869
|
+
state 37
|
870
|
+
|
871
|
+
18) italic : ITALIC_OPEN content _ ITALIC_CLOSE
|
872
|
+
|
873
|
+
ITALIC_CLOSE shift, and go to state 142
|
874
|
+
|
875
|
+
|
876
|
+
state 38
|
877
|
+
|
878
|
+
19) strike : STRIKE_OPEN content _ STRIKE_CLOSE
|
879
|
+
|
880
|
+
STRIKE_CLOSE shift, and go to state 143
|
881
|
+
|
882
|
+
|
883
|
+
state 39
|
884
|
+
|
885
|
+
20) footnote : FOOTNOTE_OPEN content _ FOOTNOTE_CLOSE
|
886
|
+
|
887
|
+
FOOTNOTE_CLOSE shift, and go to state 144
|
888
|
+
|
889
|
+
|
890
|
+
state 40
|
891
|
+
|
892
|
+
21) image_string : OTHER _
|
893
|
+
|
894
|
+
$default reduce using rule 21 (image_string)
|
895
|
+
|
896
|
+
|
897
|
+
state 41
|
898
|
+
|
899
|
+
22) image_string : QUOTE _
|
900
|
+
|
901
|
+
$default reduce using rule 22 (image_string)
|
902
|
+
|
903
|
+
|
904
|
+
state 42
|
905
|
+
|
906
|
+
23) image_string : BAR _
|
907
|
+
|
908
|
+
$default reduce using rule 23 (image_string)
|
909
|
+
|
910
|
+
|
911
|
+
state 43
|
912
|
+
|
913
|
+
24) image_string : SLASH _
|
914
|
+
|
915
|
+
$default reduce using rule 24 (image_string)
|
916
|
+
|
917
|
+
|
918
|
+
state 44
|
919
|
+
|
920
|
+
25) image_string : BACK_SLASH _
|
921
|
+
|
922
|
+
$default reduce using rule 25 (image_string)
|
923
|
+
|
924
|
+
|
925
|
+
state 45
|
926
|
+
|
927
|
+
26) image_string : EM_OPEN _
|
928
|
+
|
929
|
+
$default reduce using rule 26 (image_string)
|
930
|
+
|
931
|
+
|
932
|
+
state 46
|
933
|
+
|
934
|
+
27) image_string : EM_CLOSE _
|
935
|
+
|
936
|
+
$default reduce using rule 27 (image_string)
|
937
|
+
|
938
|
+
|
939
|
+
state 47
|
940
|
+
|
941
|
+
28) image_string : ITALIC_OPEN _
|
942
|
+
|
943
|
+
$default reduce using rule 28 (image_string)
|
944
|
+
|
945
|
+
|
946
|
+
state 48
|
947
|
+
|
948
|
+
29) image_string : ITALIC_CLOSE _
|
949
|
+
|
950
|
+
$default reduce using rule 29 (image_string)
|
951
|
+
|
952
|
+
|
953
|
+
state 49
|
954
|
+
|
955
|
+
30) image_string : STRIKE_OPEN _
|
956
|
+
|
957
|
+
$default reduce using rule 30 (image_string)
|
958
|
+
|
959
|
+
|
960
|
+
state 50
|
961
|
+
|
962
|
+
31) image_string : STRIKE_CLOSE _
|
963
|
+
|
964
|
+
$default reduce using rule 31 (image_string)
|
965
|
+
|
966
|
+
|
967
|
+
state 51
|
968
|
+
|
969
|
+
32) image_string : RUBY_OPEN _
|
970
|
+
|
971
|
+
$default reduce using rule 32 (image_string)
|
972
|
+
|
973
|
+
|
974
|
+
state 52
|
975
|
+
|
976
|
+
33) image_string : RUBY_CLOSE _
|
977
|
+
|
978
|
+
$default reduce using rule 33 (image_string)
|
979
|
+
|
980
|
+
|
981
|
+
state 53
|
982
|
+
|
983
|
+
34) image_string : MANUEDO_OPEN _
|
984
|
+
|
985
|
+
$default reduce using rule 34 (image_string)
|
986
|
+
|
987
|
+
|
988
|
+
state 54
|
989
|
+
|
990
|
+
35) image_string : MANUEDO_CLOSE _
|
991
|
+
|
992
|
+
$default reduce using rule 35 (image_string)
|
993
|
+
|
994
|
+
|
995
|
+
state 55
|
996
|
+
|
997
|
+
36) image_string : ERB_OPEN _
|
998
|
+
|
999
|
+
$default reduce using rule 36 (image_string)
|
1000
|
+
|
1001
|
+
|
1002
|
+
state 56
|
1003
|
+
|
1004
|
+
37) image_string : ERB_CLOSE _
|
1005
|
+
|
1006
|
+
$default reduce using rule 37 (image_string)
|
1007
|
+
|
1008
|
+
|
1009
|
+
state 57
|
1010
|
+
|
1011
|
+
38) image_string : REFERENCE_OPEN _
|
1012
|
+
|
1013
|
+
$default reduce using rule 38 (image_string)
|
1014
|
+
|
1015
|
+
|
1016
|
+
state 58
|
1017
|
+
|
1018
|
+
39) image_string : REFERENCE_CLOSE _
|
1019
|
+
|
1020
|
+
$default reduce using rule 39 (image_string)
|
1021
|
+
|
1022
|
+
|
1023
|
+
state 59
|
1024
|
+
|
1025
|
+
40) image_string : LABEL_OPEN _
|
1026
|
+
|
1027
|
+
$default reduce using rule 40 (image_string)
|
1028
|
+
|
1029
|
+
|
1030
|
+
state 60
|
1031
|
+
|
1032
|
+
41) image_string : LABEL_CLOSE _
|
1033
|
+
|
1034
|
+
$default reduce using rule 41 (image_string)
|
1035
|
+
|
1036
|
+
|
1037
|
+
state 61
|
1038
|
+
|
1039
|
+
42) image_string : FOOTNOTE_OPEN _
|
1040
|
+
|
1041
|
+
$default reduce using rule 42 (image_string)
|
1042
|
+
|
1043
|
+
|
1044
|
+
state 62
|
1045
|
+
|
1046
|
+
43) image_string : FOOTNOTE_CLOSE _
|
1047
|
+
|
1048
|
+
$default reduce using rule 43 (image_string)
|
1049
|
+
|
1050
|
+
|
1051
|
+
state 63
|
1052
|
+
|
1053
|
+
44) image_string : VERB_OPEN _
|
1054
|
+
|
1055
|
+
$default reduce using rule 44 (image_string)
|
1056
|
+
|
1057
|
+
|
1058
|
+
state 64
|
1059
|
+
|
1060
|
+
45) image_string : VERB_CLOSE _
|
1061
|
+
|
1062
|
+
$default reduce using rule 45 (image_string)
|
1063
|
+
|
1064
|
+
|
1065
|
+
state 65
|
1066
|
+
|
1067
|
+
46) image_string : IMAGE_OPEN _
|
1068
|
+
|
1069
|
+
$default reduce using rule 46 (image_string)
|
1070
|
+
|
1071
|
+
|
1072
|
+
state 66
|
1073
|
+
|
1074
|
+
47) image_strings : image_strings _ image_string
|
1075
|
+
49) image : IMAGE_OPEN image_strings _ IMAGE_CLOSE
|
1076
|
+
|
1077
|
+
EM_OPEN shift, and go to state 45
|
1078
|
+
EM_CLOSE shift, and go to state 46
|
1079
|
+
ITALIC_OPEN shift, and go to state 47
|
1080
|
+
ITALIC_CLOSE shift, and go to state 48
|
1081
|
+
STRIKE_OPEN shift, and go to state 49
|
1082
|
+
STRIKE_CLOSE shift, and go to state 50
|
1083
|
+
LABEL_OPEN shift, and go to state 59
|
1084
|
+
LABEL_CLOSE shift, and go to state 60
|
1085
|
+
REFERENCE_OPEN shift, and go to state 57
|
1086
|
+
REFERENCE_CLOSE shift, and go to state 58
|
1087
|
+
VERB_OPEN shift, and go to state 63
|
1088
|
+
VERB_CLOSE shift, and go to state 64
|
1089
|
+
ERB_OPEN shift, and go to state 55
|
1090
|
+
ERB_CLOSE shift, and go to state 56
|
1091
|
+
FOOTNOTE_OPEN shift, and go to state 61
|
1092
|
+
FOOTNOTE_CLOSE shift, and go to state 62
|
1093
|
+
RUBY_OPEN shift, and go to state 51
|
1094
|
+
RUBY_CLOSE shift, and go to state 52
|
1095
|
+
IMAGE_OPEN shift, and go to state 65
|
1096
|
+
IMAGE_CLOSE shift, and go to state 146
|
1097
|
+
MANUEDO_OPEN shift, and go to state 53
|
1098
|
+
MANUEDO_CLOSE shift, and go to state 54
|
1099
|
+
BAR shift, and go to state 42
|
1100
|
+
QUOTE shift, and go to state 41
|
1101
|
+
SLASH shift, and go to state 43
|
1102
|
+
BACK_SLASH shift, and go to state 44
|
1103
|
+
OTHER shift, and go to state 40
|
1104
|
+
|
1105
|
+
image_string go to state 145
|
1106
|
+
|
1107
|
+
state 67
|
1108
|
+
|
1109
|
+
48) image_strings : image_string _
|
1110
|
+
|
1111
|
+
$default reduce using rule 48 (image_strings)
|
1112
|
+
|
1113
|
+
|
1114
|
+
state 68
|
1115
|
+
|
1116
|
+
50) ruby_string : OTHER _
|
1117
|
+
|
1118
|
+
$default reduce using rule 50 (ruby_string)
|
1119
|
+
|
1120
|
+
|
1121
|
+
state 69
|
1122
|
+
|
1123
|
+
51) ruby_string : QUOTE _
|
1124
|
+
|
1125
|
+
$default reduce using rule 51 (ruby_string)
|
1126
|
+
|
1127
|
+
|
1128
|
+
state 70
|
1129
|
+
|
1130
|
+
52) ruby_string : BAR _
|
1131
|
+
|
1132
|
+
$default reduce using rule 52 (ruby_string)
|
1133
|
+
|
1134
|
+
|
1135
|
+
state 71
|
1136
|
+
|
1137
|
+
53) ruby_string : SLASH _
|
1138
|
+
|
1139
|
+
$default reduce using rule 53 (ruby_string)
|
1140
|
+
|
1141
|
+
|
1142
|
+
state 72
|
1143
|
+
|
1144
|
+
54) ruby_string : BACK_SLASH _
|
1145
|
+
|
1146
|
+
$default reduce using rule 54 (ruby_string)
|
1147
|
+
|
1148
|
+
|
1149
|
+
state 73
|
1150
|
+
|
1151
|
+
55) ruby_string : EM_OPEN _
|
1152
|
+
|
1153
|
+
$default reduce using rule 55 (ruby_string)
|
1154
|
+
|
1155
|
+
|
1156
|
+
state 74
|
1157
|
+
|
1158
|
+
56) ruby_string : EM_CLOSE _
|
1159
|
+
|
1160
|
+
$default reduce using rule 56 (ruby_string)
|
1161
|
+
|
1162
|
+
|
1163
|
+
state 75
|
1164
|
+
|
1165
|
+
57) ruby_string : ITALIC_OPEN _
|
1166
|
+
|
1167
|
+
$default reduce using rule 57 (ruby_string)
|
1168
|
+
|
1169
|
+
|
1170
|
+
state 76
|
1171
|
+
|
1172
|
+
58) ruby_string : ITALIC_CLOSE _
|
1173
|
+
|
1174
|
+
$default reduce using rule 58 (ruby_string)
|
1175
|
+
|
1176
|
+
|
1177
|
+
state 77
|
1178
|
+
|
1179
|
+
59) ruby_string : STRIKE_OPEN _
|
1180
|
+
|
1181
|
+
$default reduce using rule 59 (ruby_string)
|
1182
|
+
|
1183
|
+
|
1184
|
+
state 78
|
1185
|
+
|
1186
|
+
60) ruby_string : STRIKE_CLOSE _
|
1187
|
+
|
1188
|
+
$default reduce using rule 60 (ruby_string)
|
1189
|
+
|
1190
|
+
|
1191
|
+
state 79
|
1192
|
+
|
1193
|
+
61) ruby_string : IMAGE_OPEN _
|
1194
|
+
|
1195
|
+
$default reduce using rule 61 (ruby_string)
|
1196
|
+
|
1197
|
+
|
1198
|
+
state 80
|
1199
|
+
|
1200
|
+
62) ruby_string : IMAGE_CLOSE _
|
1201
|
+
|
1202
|
+
$default reduce using rule 62 (ruby_string)
|
1203
|
+
|
1204
|
+
|
1205
|
+
state 81
|
1206
|
+
|
1207
|
+
63) ruby_string : MANUEDO_OPEN _
|
1208
|
+
|
1209
|
+
$default reduce using rule 63 (ruby_string)
|
1210
|
+
|
1211
|
+
|
1212
|
+
state 82
|
1213
|
+
|
1214
|
+
64) ruby_string : MANUEDO_CLOSE _
|
1215
|
+
|
1216
|
+
$default reduce using rule 64 (ruby_string)
|
1217
|
+
|
1218
|
+
|
1219
|
+
state 83
|
1220
|
+
|
1221
|
+
65) ruby_string : ERB_OPEN _
|
1222
|
+
|
1223
|
+
$default reduce using rule 65 (ruby_string)
|
1224
|
+
|
1225
|
+
|
1226
|
+
state 84
|
1227
|
+
|
1228
|
+
66) ruby_string : ERB_CLOSE _
|
1229
|
+
|
1230
|
+
$default reduce using rule 66 (ruby_string)
|
1231
|
+
|
1232
|
+
|
1233
|
+
state 85
|
1234
|
+
|
1235
|
+
67) ruby_string : REFERENCE_OPEN _
|
1236
|
+
|
1237
|
+
$default reduce using rule 67 (ruby_string)
|
1238
|
+
|
1239
|
+
|
1240
|
+
state 86
|
1241
|
+
|
1242
|
+
68) ruby_string : REFERENCE_CLOSE _
|
1243
|
+
|
1244
|
+
$default reduce using rule 68 (ruby_string)
|
1245
|
+
|
1246
|
+
|
1247
|
+
state 87
|
1248
|
+
|
1249
|
+
69) ruby_string : LABEL_OPEN _
|
1250
|
+
|
1251
|
+
$default reduce using rule 69 (ruby_string)
|
1252
|
+
|
1253
|
+
|
1254
|
+
state 88
|
1255
|
+
|
1256
|
+
70) ruby_string : LABEL_CLOSE _
|
1257
|
+
|
1258
|
+
$default reduce using rule 70 (ruby_string)
|
1259
|
+
|
1260
|
+
|
1261
|
+
state 89
|
1262
|
+
|
1263
|
+
71) ruby_string : RUBY_OPEN _
|
1264
|
+
|
1265
|
+
$default reduce using rule 71 (ruby_string)
|
1266
|
+
|
1267
|
+
|
1268
|
+
state 90
|
1269
|
+
|
1270
|
+
72) ruby_string : FOOTNOTE_OPEN _
|
1271
|
+
|
1272
|
+
$default reduce using rule 72 (ruby_string)
|
1273
|
+
|
1274
|
+
|
1275
|
+
state 91
|
1276
|
+
|
1277
|
+
73) ruby_string : FOOTNOTE_CLOSE _
|
1278
|
+
|
1279
|
+
$default reduce using rule 73 (ruby_string)
|
1280
|
+
|
1281
|
+
|
1282
|
+
state 92
|
1283
|
+
|
1284
|
+
74) ruby_string : VERB_OPEN _
|
1285
|
+
|
1286
|
+
$default reduce using rule 74 (ruby_string)
|
1287
|
+
|
1288
|
+
|
1289
|
+
state 93
|
1290
|
+
|
1291
|
+
75) ruby_string : VERB_CLOSE _
|
1292
|
+
|
1293
|
+
$default reduce using rule 75 (ruby_string)
|
1294
|
+
|
1295
|
+
|
1296
|
+
state 94
|
1297
|
+
|
1298
|
+
76) ruby_strings : ruby_strings _ ruby_string
|
1299
|
+
78) ruby : RUBY_OPEN ruby_strings _ RUBY_CLOSE
|
1300
|
+
|
1301
|
+
EM_OPEN shift, and go to state 73
|
1302
|
+
EM_CLOSE shift, and go to state 74
|
1303
|
+
ITALIC_OPEN shift, and go to state 75
|
1304
|
+
ITALIC_CLOSE shift, and go to state 76
|
1305
|
+
STRIKE_OPEN shift, and go to state 77
|
1306
|
+
STRIKE_CLOSE shift, and go to state 78
|
1307
|
+
LABEL_OPEN shift, and go to state 87
|
1308
|
+
LABEL_CLOSE shift, and go to state 88
|
1309
|
+
REFERENCE_OPEN shift, and go to state 85
|
1310
|
+
REFERENCE_CLOSE shift, and go to state 86
|
1311
|
+
VERB_OPEN shift, and go to state 92
|
1312
|
+
VERB_CLOSE shift, and go to state 93
|
1313
|
+
ERB_OPEN shift, and go to state 83
|
1314
|
+
ERB_CLOSE shift, and go to state 84
|
1315
|
+
FOOTNOTE_OPEN shift, and go to state 90
|
1316
|
+
FOOTNOTE_CLOSE shift, and go to state 91
|
1317
|
+
RUBY_OPEN shift, and go to state 89
|
1318
|
+
RUBY_CLOSE shift, and go to state 148
|
1319
|
+
IMAGE_OPEN shift, and go to state 79
|
1320
|
+
IMAGE_CLOSE shift, and go to state 80
|
1321
|
+
MANUEDO_OPEN shift, and go to state 81
|
1322
|
+
MANUEDO_CLOSE shift, and go to state 82
|
1323
|
+
BAR shift, and go to state 70
|
1324
|
+
QUOTE shift, and go to state 69
|
1325
|
+
SLASH shift, and go to state 71
|
1326
|
+
BACK_SLASH shift, and go to state 72
|
1327
|
+
OTHER shift, and go to state 68
|
1328
|
+
|
1329
|
+
ruby_string go to state 147
|
1330
|
+
|
1331
|
+
state 95
|
1332
|
+
|
1333
|
+
77) ruby_strings : ruby_string _
|
1334
|
+
|
1335
|
+
$default reduce using rule 77 (ruby_strings)
|
1336
|
+
|
1337
|
+
|
1338
|
+
state 96
|
1339
|
+
|
1340
|
+
79) erb : ERB_OPEN verb_string _ ERB_CLOSE
|
1341
|
+
|
1342
|
+
ERB_CLOSE shift, and go to state 149
|
1343
|
+
|
1344
|
+
|
1345
|
+
state 97
|
1346
|
+
|
1347
|
+
97) verb_string : OTHER _
|
1348
|
+
|
1349
|
+
$default reduce using rule 97 (verb_string)
|
1350
|
+
|
1351
|
+
|
1352
|
+
state 98
|
1353
|
+
|
1354
|
+
98) verb_string : QUOTE _
|
1355
|
+
|
1356
|
+
$default reduce using rule 98 (verb_string)
|
1357
|
+
|
1358
|
+
|
1359
|
+
state 99
|
1360
|
+
|
1361
|
+
99) verb_string : BAR _
|
1362
|
+
|
1363
|
+
$default reduce using rule 99 (verb_string)
|
1364
|
+
|
1365
|
+
|
1366
|
+
state 100
|
1367
|
+
|
1368
|
+
100) verb_string : SLASH _
|
1369
|
+
|
1370
|
+
$default reduce using rule 100 (verb_string)
|
1371
|
+
|
1372
|
+
|
1373
|
+
state 101
|
1374
|
+
|
1375
|
+
101) verb_string : BACK_SLASH _
|
1376
|
+
|
1377
|
+
$default reduce using rule 101 (verb_string)
|
1378
|
+
|
1379
|
+
|
1380
|
+
state 102
|
1381
|
+
|
1382
|
+
102) verb_string : EM_OPEN _
|
1383
|
+
|
1384
|
+
$default reduce using rule 102 (verb_string)
|
1385
|
+
|
1386
|
+
|
1387
|
+
state 103
|
1388
|
+
|
1389
|
+
103) verb_string : EM_CLOSE _
|
1390
|
+
|
1391
|
+
$default reduce using rule 103 (verb_string)
|
1392
|
+
|
1393
|
+
|
1394
|
+
state 104
|
1395
|
+
|
1396
|
+
104) verb_string : ITALIC_OPEN _
|
1397
|
+
|
1398
|
+
$default reduce using rule 104 (verb_string)
|
1399
|
+
|
1400
|
+
|
1401
|
+
state 105
|
1402
|
+
|
1403
|
+
105) verb_string : ITALIC_CLOSE _
|
1404
|
+
|
1405
|
+
$default reduce using rule 105 (verb_string)
|
1406
|
+
|
1407
|
+
|
1408
|
+
state 106
|
1409
|
+
|
1410
|
+
106) verb_string : STRIKE_OPEN _
|
1411
|
+
|
1412
|
+
$default reduce using rule 106 (verb_string)
|
1413
|
+
|
1414
|
+
|
1415
|
+
state 107
|
1416
|
+
|
1417
|
+
107) verb_string : STRIKE_CLOSE _
|
1418
|
+
|
1419
|
+
$default reduce using rule 107 (verb_string)
|
1420
|
+
|
1421
|
+
|
1422
|
+
state 108
|
1423
|
+
|
1424
|
+
108) verb_string : IMAGE_OPEN _
|
1425
|
+
|
1426
|
+
$default reduce using rule 108 (verb_string)
|
1427
|
+
|
1428
|
+
|
1429
|
+
state 109
|
1430
|
+
|
1431
|
+
109) verb_string : IMAGE_CLOSE _
|
1432
|
+
|
1433
|
+
$default reduce using rule 109 (verb_string)
|
1434
|
+
|
1435
|
+
|
1436
|
+
state 110
|
1437
|
+
|
1438
|
+
110) verb_string : MANUEDO_OPEN _
|
1439
|
+
|
1440
|
+
$default reduce using rule 110 (verb_string)
|
1441
|
+
|
1442
|
+
|
1443
|
+
state 111
|
1444
|
+
|
1445
|
+
111) verb_string : MANUEDO_CLOSE _
|
1446
|
+
|
1447
|
+
$default reduce using rule 111 (verb_string)
|
1448
|
+
|
1449
|
+
|
1450
|
+
state 112
|
1451
|
+
|
1452
|
+
112) verb_string : ERB_OPEN _
|
1453
|
+
|
1454
|
+
$default reduce using rule 112 (verb_string)
|
1455
|
+
|
1456
|
+
|
1457
|
+
state 113
|
1458
|
+
|
1459
|
+
113) verb_string : ERB_CLOSE _
|
1460
|
+
|
1461
|
+
$default reduce using rule 113 (verb_string)
|
1462
|
+
|
1463
|
+
|
1464
|
+
state 114
|
1465
|
+
|
1466
|
+
114) verb_string : REFERENCE_OPEN _
|
1467
|
+
|
1468
|
+
$default reduce using rule 114 (verb_string)
|
1469
|
+
|
1470
|
+
|
1471
|
+
state 115
|
1472
|
+
|
1473
|
+
115) verb_string : REFERENCE_CLOSE _
|
1474
|
+
|
1475
|
+
$default reduce using rule 115 (verb_string)
|
1476
|
+
|
1477
|
+
|
1478
|
+
state 116
|
1479
|
+
|
1480
|
+
116) verb_string : LABEL_OPEN _
|
1481
|
+
|
1482
|
+
$default reduce using rule 116 (verb_string)
|
1483
|
+
|
1484
|
+
|
1485
|
+
state 117
|
1486
|
+
|
1487
|
+
117) verb_string : LABEL_CLOSE _
|
1488
|
+
|
1489
|
+
$default reduce using rule 117 (verb_string)
|
1490
|
+
|
1491
|
+
|
1492
|
+
state 118
|
1493
|
+
|
1494
|
+
118) verb_string : RUBY_OPEN _
|
1495
|
+
|
1496
|
+
$default reduce using rule 118 (verb_string)
|
1497
|
+
|
1498
|
+
|
1499
|
+
state 119
|
1500
|
+
|
1501
|
+
119) verb_string : RUBY_CLOSE _
|
1502
|
+
|
1503
|
+
$default reduce using rule 119 (verb_string)
|
1504
|
+
|
1505
|
+
|
1506
|
+
state 120
|
1507
|
+
|
1508
|
+
120) verb_string : FOOTNOTE_OPEN _
|
1509
|
+
|
1510
|
+
$default reduce using rule 120 (verb_string)
|
1511
|
+
|
1512
|
+
|
1513
|
+
state 121
|
1514
|
+
|
1515
|
+
121) verb_string : FOOTNOTE_CLOSE _
|
1516
|
+
|
1517
|
+
$default reduce using rule 121 (verb_string)
|
1518
|
+
|
1519
|
+
|
1520
|
+
state 122
|
1521
|
+
|
1522
|
+
122) verb_string : VERB_OPEN _
|
1523
|
+
|
1524
|
+
$default reduce using rule 122 (verb_string)
|
1525
|
+
|
1526
|
+
|
1527
|
+
state 123
|
1528
|
+
|
1529
|
+
80) manuedo : MANUEDO_OPEN content _ MANUEDO_CLOSE
|
1530
|
+
|
1531
|
+
MANUEDO_CLOSE shift, and go to state 150
|
1532
|
+
|
1533
|
+
|
1534
|
+
state 124
|
1535
|
+
|
1536
|
+
81) label_string : OTHER _
|
1537
|
+
|
1538
|
+
$default reduce using rule 81 (label_string)
|
1539
|
+
|
1540
|
+
|
1541
|
+
state 125
|
1542
|
+
|
1543
|
+
82) label_string : QUOTE _
|
1544
|
+
|
1545
|
+
$default reduce using rule 82 (label_string)
|
1546
|
+
|
1547
|
+
|
1548
|
+
state 126
|
1549
|
+
|
1550
|
+
83) label_string : BAR _
|
1551
|
+
|
1552
|
+
$default reduce using rule 83 (label_string)
|
1553
|
+
|
1554
|
+
|
1555
|
+
state 127
|
1556
|
+
|
1557
|
+
84) label_string : SLASH _
|
1558
|
+
|
1559
|
+
$default reduce using rule 84 (label_string)
|
1560
|
+
|
1561
|
+
|
1562
|
+
state 128
|
1563
|
+
|
1564
|
+
85) label_string : BACK_SLASH _
|
1565
|
+
|
1566
|
+
$default reduce using rule 85 (label_string)
|
1567
|
+
|
1568
|
+
|
1569
|
+
state 129
|
1570
|
+
|
1571
|
+
86) label_strings : label_strings _ label_string
|
1572
|
+
88) label : LABEL_OPEN label_strings _ LABEL_CLOSE
|
1573
|
+
|
1574
|
+
LABEL_CLOSE shift, and go to state 152
|
1575
|
+
BAR shift, and go to state 126
|
1576
|
+
QUOTE shift, and go to state 125
|
1577
|
+
SLASH shift, and go to state 127
|
1578
|
+
BACK_SLASH shift, and go to state 128
|
1579
|
+
OTHER shift, and go to state 124
|
1580
|
+
|
1581
|
+
label_string go to state 151
|
1582
|
+
|
1583
|
+
state 130
|
1584
|
+
|
1585
|
+
87) label_strings : label_string _
|
1586
|
+
|
1587
|
+
$default reduce using rule 87 (label_strings)
|
1588
|
+
|
1589
|
+
|
1590
|
+
state 131
|
1591
|
+
|
1592
|
+
89) reference_string : OTHER _
|
1593
|
+
|
1594
|
+
$default reduce using rule 89 (reference_string)
|
1595
|
+
|
1596
|
+
|
1597
|
+
state 132
|
1598
|
+
|
1599
|
+
90) reference_string : QUOTE _
|
1600
|
+
|
1601
|
+
$default reduce using rule 90 (reference_string)
|
1602
|
+
|
1603
|
+
|
1604
|
+
state 133
|
1605
|
+
|
1606
|
+
91) reference_string : BAR _
|
1607
|
+
|
1608
|
+
$default reduce using rule 91 (reference_string)
|
1609
|
+
|
1610
|
+
|
1611
|
+
state 134
|
1612
|
+
|
1613
|
+
92) reference_string : SLASH _
|
1614
|
+
|
1615
|
+
$default reduce using rule 92 (reference_string)
|
1616
|
+
|
1617
|
+
|
1618
|
+
state 135
|
1619
|
+
|
1620
|
+
93) reference_string : BACK_SLASH _
|
1621
|
+
|
1622
|
+
$default reduce using rule 93 (reference_string)
|
1623
|
+
|
1624
|
+
|
1625
|
+
state 136
|
1626
|
+
|
1627
|
+
94) reference_strings : reference_strings _ reference_string
|
1628
|
+
96) reference : REFERENCE_OPEN reference_strings _ REFERENCE_CLOSE
|
1629
|
+
|
1630
|
+
REFERENCE_CLOSE shift, and go to state 154
|
1631
|
+
BAR shift, and go to state 133
|
1632
|
+
QUOTE shift, and go to state 132
|
1633
|
+
SLASH shift, and go to state 134
|
1634
|
+
BACK_SLASH shift, and go to state 135
|
1635
|
+
OTHER shift, and go to state 131
|
1636
|
+
|
1637
|
+
reference_string go to state 153
|
1638
|
+
|
1639
|
+
state 137
|
1640
|
+
|
1641
|
+
95) reference_strings : reference_string _
|
1642
|
+
|
1643
|
+
$default reduce using rule 95 (reference_strings)
|
1644
|
+
|
1645
|
+
|
1646
|
+
state 138
|
1647
|
+
|
1648
|
+
123) verb_strings : verb_string _
|
1649
|
+
|
1650
|
+
$default reduce using rule 123 (verb_strings)
|
1651
|
+
|
1652
|
+
|
1653
|
+
state 139
|
1654
|
+
|
1655
|
+
124) verb_strings : verb_strings _ verb_string
|
1656
|
+
125) verb : VERB_OPEN verb_strings _ VERB_CLOSE
|
1657
|
+
|
1658
|
+
EM_OPEN shift, and go to state 102
|
1659
|
+
EM_CLOSE shift, and go to state 103
|
1660
|
+
ITALIC_OPEN shift, and go to state 104
|
1661
|
+
ITALIC_CLOSE shift, and go to state 105
|
1662
|
+
STRIKE_OPEN shift, and go to state 106
|
1663
|
+
STRIKE_CLOSE shift, and go to state 107
|
1664
|
+
LABEL_OPEN shift, and go to state 116
|
1665
|
+
LABEL_CLOSE shift, and go to state 117
|
1666
|
+
REFERENCE_OPEN shift, and go to state 114
|
1667
|
+
REFERENCE_CLOSE shift, and go to state 115
|
1668
|
+
VERB_OPEN shift, and go to state 122
|
1669
|
+
VERB_CLOSE shift, and go to state 156
|
1670
|
+
ERB_OPEN shift, and go to state 112
|
1671
|
+
ERB_CLOSE shift, and go to state 113
|
1672
|
+
FOOTNOTE_OPEN shift, and go to state 120
|
1673
|
+
FOOTNOTE_CLOSE shift, and go to state 121
|
1674
|
+
RUBY_OPEN shift, and go to state 118
|
1675
|
+
RUBY_CLOSE shift, and go to state 119
|
1676
|
+
IMAGE_OPEN shift, and go to state 108
|
1677
|
+
IMAGE_CLOSE shift, and go to state 109
|
1678
|
+
MANUEDO_OPEN shift, and go to state 110
|
1679
|
+
MANUEDO_CLOSE shift, and go to state 111
|
1680
|
+
BAR shift, and go to state 99
|
1681
|
+
QUOTE shift, and go to state 98
|
1682
|
+
SLASH shift, and go to state 100
|
1683
|
+
BACK_SLASH shift, and go to state 101
|
1684
|
+
OTHER shift, and go to state 97
|
1685
|
+
|
1686
|
+
verb_string go to state 155
|
1687
|
+
|
1688
|
+
state 140
|
1689
|
+
|
1690
|
+
|
1691
|
+
$default accept
|
1692
|
+
|
1693
|
+
|
1694
|
+
state 141
|
1695
|
+
|
1696
|
+
17) emphasis : EM_OPEN content EM_CLOSE _
|
1697
|
+
|
1698
|
+
$default reduce using rule 17 (emphasis)
|
1699
|
+
|
1700
|
+
|
1701
|
+
state 142
|
1702
|
+
|
1703
|
+
18) italic : ITALIC_OPEN content ITALIC_CLOSE _
|
1704
|
+
|
1705
|
+
$default reduce using rule 18 (italic)
|
1706
|
+
|
1707
|
+
|
1708
|
+
state 143
|
1709
|
+
|
1710
|
+
19) strike : STRIKE_OPEN content STRIKE_CLOSE _
|
1711
|
+
|
1712
|
+
$default reduce using rule 19 (strike)
|
1713
|
+
|
1714
|
+
|
1715
|
+
state 144
|
1716
|
+
|
1717
|
+
20) footnote : FOOTNOTE_OPEN content FOOTNOTE_CLOSE _
|
1718
|
+
|
1719
|
+
$default reduce using rule 20 (footnote)
|
1720
|
+
|
1721
|
+
|
1722
|
+
state 145
|
1723
|
+
|
1724
|
+
47) image_strings : image_strings image_string _
|
1725
|
+
|
1726
|
+
$default reduce using rule 47 (image_strings)
|
1727
|
+
|
1728
|
+
|
1729
|
+
state 146
|
1730
|
+
|
1731
|
+
49) image : IMAGE_OPEN image_strings IMAGE_CLOSE _
|
1732
|
+
|
1733
|
+
$default reduce using rule 49 (image)
|
1734
|
+
|
1735
|
+
|
1736
|
+
state 147
|
1737
|
+
|
1738
|
+
76) ruby_strings : ruby_strings ruby_string _
|
1739
|
+
|
1740
|
+
$default reduce using rule 76 (ruby_strings)
|
1741
|
+
|
1742
|
+
|
1743
|
+
state 148
|
1744
|
+
|
1745
|
+
78) ruby : RUBY_OPEN ruby_strings RUBY_CLOSE _
|
1746
|
+
|
1747
|
+
$default reduce using rule 78 (ruby)
|
1748
|
+
|
1749
|
+
|
1750
|
+
state 149
|
1751
|
+
|
1752
|
+
79) erb : ERB_OPEN verb_string ERB_CLOSE _
|
1753
|
+
|
1754
|
+
$default reduce using rule 79 (erb)
|
1755
|
+
|
1756
|
+
|
1757
|
+
state 150
|
1758
|
+
|
1759
|
+
80) manuedo : MANUEDO_OPEN content MANUEDO_CLOSE _
|
1760
|
+
|
1761
|
+
$default reduce using rule 80 (manuedo)
|
1762
|
+
|
1763
|
+
|
1764
|
+
state 151
|
1765
|
+
|
1766
|
+
86) label_strings : label_strings label_string _
|
1767
|
+
|
1768
|
+
$default reduce using rule 86 (label_strings)
|
1769
|
+
|
1770
|
+
|
1771
|
+
state 152
|
1772
|
+
|
1773
|
+
88) label : LABEL_OPEN label_strings LABEL_CLOSE _
|
1774
|
+
|
1775
|
+
$default reduce using rule 88 (label)
|
1776
|
+
|
1777
|
+
|
1778
|
+
state 153
|
1779
|
+
|
1780
|
+
94) reference_strings : reference_strings reference_string _
|
1781
|
+
|
1782
|
+
$default reduce using rule 94 (reference_strings)
|
1783
|
+
|
1784
|
+
|
1785
|
+
state 154
|
1786
|
+
|
1787
|
+
96) reference : REFERENCE_OPEN reference_strings REFERENCE_CLOSE _
|
1788
|
+
|
1789
|
+
$default reduce using rule 96 (reference)
|
1790
|
+
|
1791
|
+
|
1792
|
+
state 155
|
1793
|
+
|
1794
|
+
124) verb_strings : verb_strings verb_string _
|
1795
|
+
|
1796
|
+
$default reduce using rule 124 (verb_strings)
|
1797
|
+
|
1798
|
+
|
1799
|
+
state 156
|
1800
|
+
|
1801
|
+
125) verb : VERB_OPEN verb_strings VERB_CLOSE _
|
1802
|
+
|
1803
|
+
$default reduce using rule 125 (verb)
|
1804
|
+
|