wikitext 1.3.2 → 1.4.0
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/ext/parser.c +70 -48
- data/ext/token.c +2 -1
- data/ext/token.h +2 -1
- data/ext/wikitext.c +1 -2
- data/lib/wikitext/string.rb +1 -1
- data/lib/wikitext/version.rb +1 -1
- data/spec/external_link_spec.rb +28 -1
- data/spec/internal_link_spec.rb +35 -39
- data/spec/link_encoding_spec.rb +6 -4
- data/spec/vim_formatter.rb +41 -0
- data/spec/wikitext_spec.rb +0 -8
- metadata +3 -4
- data/ext/wikitext_ragel.c +0 -2968
- data/spec/#spec_helper.rb# +0 -78
data/ext/wikitext_ragel.c
DELETED
@@ -1,2968 +0,0 @@
|
|
1
|
-
#line 1 "wikitext_ragel.rl"
|
2
|
-
// Copyright 2008 Wincent Colaiuta
|
3
|
-
// This program is free software: you can redistribute it and/or modify
|
4
|
-
// it under the terms of the GNU General Public License as published by
|
5
|
-
// the Free Software Foundation, either version 3 of the License, or
|
6
|
-
// (at your option) any later version.
|
7
|
-
//
|
8
|
-
// This program is distributed in the hope that it will be useful,
|
9
|
-
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
-
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
-
// GNU General Public License for more details.
|
12
|
-
//
|
13
|
-
// You should have received a copy of the GNU General Public License
|
14
|
-
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
15
|
-
|
16
|
-
//----------------------------------------------------------------------//
|
17
|
-
// NOTE: wikitext_ragel.c is generated from wikitext_ragel.rl, so //
|
18
|
-
// if you make changes to the former they will be overwritten. //
|
19
|
-
// You should perform all your edits in wikitext_ragel.rl. //
|
20
|
-
//----------------------------------------------------------------------//
|
21
|
-
|
22
|
-
#include "wikitext_ragel.h"
|
23
|
-
#include "wikitext.h"
|
24
|
-
#include <stdio.h>
|
25
|
-
|
26
|
-
#define EMIT(t) do { out->type = t; out->stop = p + 1; out->column_stop += (out->stop - out->start); } while (0)
|
27
|
-
#define MARK() do { mark = p; } while (0)
|
28
|
-
#define REWIND() do { p = mark; } while (0)
|
29
|
-
#define AT_END() (p + 1 == pe)
|
30
|
-
#define DISTANCE() (p + 1 - ts)
|
31
|
-
#define NEXT_CHAR() (*(p + 1))
|
32
|
-
|
33
|
-
|
34
|
-
#line 35 "wikitext_ragel.c"
|
35
|
-
static const int wikitext_start = 94;
|
36
|
-
static const int wikitext_first_final = 94;
|
37
|
-
static const int wikitext_error = 0;
|
38
|
-
|
39
|
-
static const int wikitext_en_main = 94;
|
40
|
-
|
41
|
-
#line 461 "wikitext_ragel.rl"
|
42
|
-
|
43
|
-
|
44
|
-
// for now we use the scanner as a tokenizer that returns one token at a time, just like ANTLR
|
45
|
-
// ultimately we could look at embedding all of the transformation inside the scanner itself (combined scanner/parser)
|
46
|
-
// pass in the last token because that's useful for the scanner to know
|
47
|
-
// p data pointer (required by Ragel machine); overriden with contents of last_token if supplied
|
48
|
-
// pe data end pointer (required by Ragel machine)
|
49
|
-
void next_token(token_t *out, token_t *last_token, char *p, char *pe)
|
50
|
-
{
|
51
|
-
int last_token_type = NO_TOKEN;
|
52
|
-
if (last_token)
|
53
|
-
{
|
54
|
-
last_token_type = last_token->type;
|
55
|
-
p = last_token->stop;
|
56
|
-
out->line_start = out->line_stop = last_token->line_stop;
|
57
|
-
out->column_start = out->column_stop = last_token->column_stop;
|
58
|
-
}
|
59
|
-
else
|
60
|
-
{
|
61
|
-
out->line_start = 1;
|
62
|
-
out->column_start = 1;
|
63
|
-
out->line_stop = 1;
|
64
|
-
out->column_stop = 1;
|
65
|
-
}
|
66
|
-
out->type = NO_TOKEN;
|
67
|
-
out->code_point = 0;
|
68
|
-
out->start = p;
|
69
|
-
if (p == pe)
|
70
|
-
{
|
71
|
-
// all done, have reached end of input
|
72
|
-
out->stop = p;
|
73
|
-
out->type = END_OF_FILE;
|
74
|
-
return;
|
75
|
-
}
|
76
|
-
|
77
|
-
char *mark; // for manual backtracking
|
78
|
-
char *eof = pe; // required for backtracking (longest match determination)
|
79
|
-
int cs; // current state (standard Ragel)
|
80
|
-
char *ts; // token start (scanner)
|
81
|
-
char *te; // token end (scanner)
|
82
|
-
int act; // identity of last patterned matched (scanner)
|
83
|
-
|
84
|
-
#line 85 "wikitext_ragel.c"
|
85
|
-
{
|
86
|
-
cs = wikitext_start;
|
87
|
-
ts = 0;
|
88
|
-
te = 0;
|
89
|
-
act = 0;
|
90
|
-
}
|
91
|
-
#line 503 "wikitext_ragel.rl"
|
92
|
-
|
93
|
-
#line 94 "wikitext_ragel.c"
|
94
|
-
{
|
95
|
-
if ( p == pe )
|
96
|
-
goto _test_eof;
|
97
|
-
switch ( cs )
|
98
|
-
{
|
99
|
-
tr0:
|
100
|
-
#line 46 "wikitext_ragel.rl"
|
101
|
-
{
|
102
|
-
out->code_point = ((uint32_t)(*(p - 1)) & 0x1f) << 6 |
|
103
|
-
(*p & 0x3f);
|
104
|
-
}
|
105
|
-
#line 452 "wikitext_ragel.rl"
|
106
|
-
{te = p+1;{
|
107
|
-
EMIT(DEFAULT);
|
108
|
-
out->column_stop = out->column_start + 1;
|
109
|
-
{p++; cs = 94; goto _out;}
|
110
|
-
}}
|
111
|
-
goto st94;
|
112
|
-
tr3:
|
113
|
-
#line 52 "wikitext_ragel.rl"
|
114
|
-
{
|
115
|
-
out->code_point = ((uint32_t)(*(p - 2)) & 0x0f) << 12 |
|
116
|
-
((uint32_t)(*(p - 1)) & 0x3f) << 6 |
|
117
|
-
(*p & 0x3f);
|
118
|
-
}
|
119
|
-
#line 452 "wikitext_ragel.rl"
|
120
|
-
{te = p+1;{
|
121
|
-
EMIT(DEFAULT);
|
122
|
-
out->column_stop = out->column_start + 1;
|
123
|
-
{p++; cs = 94; goto _out;}
|
124
|
-
}}
|
125
|
-
goto st94;
|
126
|
-
tr6:
|
127
|
-
#line 59 "wikitext_ragel.rl"
|
128
|
-
{
|
129
|
-
out->code_point = ((uint32_t)(*(p - 3)) & 0x07) << 18 |
|
130
|
-
((uint32_t)(*(p - 2)) & 0x3f) << 12 |
|
131
|
-
((uint32_t)(*(p - 1)) & 0x3f) << 6 |
|
132
|
-
(*p & 0x3f);
|
133
|
-
}
|
134
|
-
#line 452 "wikitext_ragel.rl"
|
135
|
-
{te = p+1;{
|
136
|
-
EMIT(DEFAULT);
|
137
|
-
out->column_stop = out->column_start + 1;
|
138
|
-
{p++; cs = 94; goto _out;}
|
139
|
-
}}
|
140
|
-
goto st94;
|
141
|
-
tr7:
|
142
|
-
#line 359 "wikitext_ragel.rl"
|
143
|
-
{{p = ((te))-1;}{
|
144
|
-
EMIT(AMP);
|
145
|
-
{p++; cs = 94; goto _out;}
|
146
|
-
}}
|
147
|
-
goto st94;
|
148
|
-
tr10:
|
149
|
-
#line 347 "wikitext_ragel.rl"
|
150
|
-
{te = p+1;{
|
151
|
-
EMIT(DECIMAL_ENTITY);
|
152
|
-
{p++; cs = 94; goto _out;}
|
153
|
-
}}
|
154
|
-
goto st94;
|
155
|
-
tr12:
|
156
|
-
#line 341 "wikitext_ragel.rl"
|
157
|
-
{te = p+1;{
|
158
|
-
EMIT(HEX_ENTITY);
|
159
|
-
{p++; cs = 94; goto _out;}
|
160
|
-
}}
|
161
|
-
goto st94;
|
162
|
-
tr14:
|
163
|
-
#line 335 "wikitext_ragel.rl"
|
164
|
-
{te = p+1;{
|
165
|
-
EMIT(NAMED_ENTITY);
|
166
|
-
{p++; cs = 94; goto _out;}
|
167
|
-
}}
|
168
|
-
goto st94;
|
169
|
-
tr18:
|
170
|
-
#line 329 "wikitext_ragel.rl"
|
171
|
-
{te = p+1;{
|
172
|
-
EMIT(AMP_ENTITY);
|
173
|
-
{p++; cs = 94; goto _out;}
|
174
|
-
}}
|
175
|
-
goto st94;
|
176
|
-
tr22:
|
177
|
-
#line 323 "wikitext_ragel.rl"
|
178
|
-
{te = p+1;{
|
179
|
-
EMIT(QUOT_ENTITY);
|
180
|
-
{p++; cs = 94; goto _out;}
|
181
|
-
}}
|
182
|
-
goto st94;
|
183
|
-
tr23:
|
184
|
-
#line 1 "wikitext_ragel.rl"
|
185
|
-
{ switch( act ) {
|
186
|
-
case 20:
|
187
|
-
{{p = ((te))-1;}
|
188
|
-
EMIT(URI);
|
189
|
-
{p++; cs = 94; goto _out;}
|
190
|
-
}
|
191
|
-
break;
|
192
|
-
case 21:
|
193
|
-
{{p = ((te))-1;}
|
194
|
-
EMIT(MAIL);
|
195
|
-
{p++; cs = 94; goto _out;}
|
196
|
-
}
|
197
|
-
break;
|
198
|
-
case 41:
|
199
|
-
{{p = ((te))-1;}
|
200
|
-
EMIT(SPECIAL_URI_CHARS);
|
201
|
-
{p++; cs = 94; goto _out;}
|
202
|
-
}
|
203
|
-
break;
|
204
|
-
case 42:
|
205
|
-
{{p = ((te))-1;}
|
206
|
-
EMIT(ALNUM);
|
207
|
-
{p++; cs = 94; goto _out;}
|
208
|
-
}
|
209
|
-
break;
|
210
|
-
case 43:
|
211
|
-
{{p = ((te))-1;}
|
212
|
-
EMIT(PRINTABLE);
|
213
|
-
{p++; cs = 94; goto _out;}
|
214
|
-
}
|
215
|
-
break;
|
216
|
-
default: break;
|
217
|
-
}
|
218
|
-
}
|
219
|
-
goto st94;
|
220
|
-
tr30:
|
221
|
-
#line 365 "wikitext_ragel.rl"
|
222
|
-
{{p = ((te))-1;}{
|
223
|
-
EMIT(LESS);
|
224
|
-
{p++; cs = 94; goto _out;}
|
225
|
-
}}
|
226
|
-
goto st94;
|
227
|
-
tr46:
|
228
|
-
#line 110 "wikitext_ragel.rl"
|
229
|
-
{te = p+1;{
|
230
|
-
EMIT(BLOCKQUOTE_END);
|
231
|
-
{p++; cs = 94; goto _out;}
|
232
|
-
}}
|
233
|
-
goto st94;
|
234
|
-
tr48:
|
235
|
-
#line 152 "wikitext_ragel.rl"
|
236
|
-
{te = p+1;{
|
237
|
-
EMIT(EM_END);
|
238
|
-
{p++; cs = 94; goto _out;}
|
239
|
-
}}
|
240
|
-
goto st94;
|
241
|
-
tr54:
|
242
|
-
#line 86 "wikitext_ragel.rl"
|
243
|
-
{te = p+1;{
|
244
|
-
EMIT(NO_WIKI_END);
|
245
|
-
{p++; cs = 94; goto _out;}
|
246
|
-
}}
|
247
|
-
goto st94;
|
248
|
-
tr57:
|
249
|
-
#line 98 "wikitext_ragel.rl"
|
250
|
-
{te = p+1;{
|
251
|
-
EMIT(PRE_END);
|
252
|
-
{p++; cs = 94; goto _out;}
|
253
|
-
}}
|
254
|
-
goto st94;
|
255
|
-
tr63:
|
256
|
-
#line 140 "wikitext_ragel.rl"
|
257
|
-
{te = p+1;{
|
258
|
-
EMIT(STRONG_END);
|
259
|
-
{p++; cs = 94; goto _out;}
|
260
|
-
}}
|
261
|
-
goto st94;
|
262
|
-
tr65:
|
263
|
-
#line 170 "wikitext_ragel.rl"
|
264
|
-
{te = p+1;{
|
265
|
-
EMIT(TT_END);
|
266
|
-
{p++; cs = 94; goto _out;}
|
267
|
-
}}
|
268
|
-
goto st94;
|
269
|
-
tr75:
|
270
|
-
#line 104 "wikitext_ragel.rl"
|
271
|
-
{te = p+1;{
|
272
|
-
EMIT(BLOCKQUOTE_START);
|
273
|
-
{p++; cs = 94; goto _out;}
|
274
|
-
}}
|
275
|
-
goto st94;
|
276
|
-
tr77:
|
277
|
-
#line 146 "wikitext_ragel.rl"
|
278
|
-
{te = p+1;{
|
279
|
-
EMIT(EM_START);
|
280
|
-
{p++; cs = 94; goto _out;}
|
281
|
-
}}
|
282
|
-
goto st94;
|
283
|
-
tr83:
|
284
|
-
#line 80 "wikitext_ragel.rl"
|
285
|
-
{te = p+1;{
|
286
|
-
EMIT(NO_WIKI_START);
|
287
|
-
{p++; cs = 94; goto _out;}
|
288
|
-
}}
|
289
|
-
goto st94;
|
290
|
-
tr86:
|
291
|
-
#line 92 "wikitext_ragel.rl"
|
292
|
-
{te = p+1;{
|
293
|
-
EMIT(PRE_START);
|
294
|
-
{p++; cs = 94; goto _out;}
|
295
|
-
}}
|
296
|
-
goto st94;
|
297
|
-
tr92:
|
298
|
-
#line 134 "wikitext_ragel.rl"
|
299
|
-
{te = p+1;{
|
300
|
-
EMIT(STRONG_START);
|
301
|
-
{p++; cs = 94; goto _out;}
|
302
|
-
}}
|
303
|
-
goto st94;
|
304
|
-
tr94:
|
305
|
-
#line 164 "wikitext_ragel.rl"
|
306
|
-
{te = p+1;{
|
307
|
-
EMIT(TT_START);
|
308
|
-
{p++; cs = 94; goto _out;}
|
309
|
-
}}
|
310
|
-
goto st94;
|
311
|
-
tr95:
|
312
|
-
#line 420 "wikitext_ragel.rl"
|
313
|
-
{{p = ((te))-1;}{
|
314
|
-
EMIT(ALNUM);
|
315
|
-
{p++; cs = 94; goto _out;}
|
316
|
-
}}
|
317
|
-
goto st94;
|
318
|
-
tr99:
|
319
|
-
#line 281 "wikitext_ragel.rl"
|
320
|
-
{{p = ((te))-1;}{
|
321
|
-
EMIT(URI);
|
322
|
-
{p++; cs = 94; goto _out;}
|
323
|
-
}}
|
324
|
-
goto st94;
|
325
|
-
tr110:
|
326
|
-
#line 41 "wikitext_ragel.rl"
|
327
|
-
{
|
328
|
-
out->code_point = *p & 0x7f;
|
329
|
-
}
|
330
|
-
#line 452 "wikitext_ragel.rl"
|
331
|
-
{te = p+1;{
|
332
|
-
EMIT(DEFAULT);
|
333
|
-
out->column_stop = out->column_start + 1;
|
334
|
-
{p++; cs = 94; goto _out;}
|
335
|
-
}}
|
336
|
-
goto st94;
|
337
|
-
tr111:
|
338
|
-
#line 401 "wikitext_ragel.rl"
|
339
|
-
{te = p+1;{
|
340
|
-
EMIT(CRLF);
|
341
|
-
out->column_stop = 1;
|
342
|
-
out->line_stop++;
|
343
|
-
{p++; cs = 94; goto _out;}
|
344
|
-
}}
|
345
|
-
#line 41 "wikitext_ragel.rl"
|
346
|
-
{
|
347
|
-
out->code_point = *p & 0x7f;
|
348
|
-
}
|
349
|
-
goto st94;
|
350
|
-
tr115:
|
351
|
-
#line 353 "wikitext_ragel.rl"
|
352
|
-
{te = p+1;{
|
353
|
-
EMIT(QUOT);
|
354
|
-
{p++; cs = 94; goto _out;}
|
355
|
-
}}
|
356
|
-
goto st94;
|
357
|
-
tr116:
|
358
|
-
#line 202 "wikitext_ragel.rl"
|
359
|
-
{te = p+1;{
|
360
|
-
if (out->column_start == 1 ||
|
361
|
-
last_token_type == OL ||
|
362
|
-
last_token_type == UL ||
|
363
|
-
last_token_type == BLOCKQUOTE ||
|
364
|
-
last_token_type == BLOCKQUOTE_START)
|
365
|
-
EMIT(OL);
|
366
|
-
else
|
367
|
-
EMIT(PRINTABLE);
|
368
|
-
{p++; cs = 94; goto _out;}
|
369
|
-
}}
|
370
|
-
goto st94;
|
371
|
-
tr120:
|
372
|
-
#line 215 "wikitext_ragel.rl"
|
373
|
-
{te = p+1;{
|
374
|
-
if (out->column_start == 1 ||
|
375
|
-
last_token_type == OL ||
|
376
|
-
last_token_type == UL ||
|
377
|
-
last_token_type == BLOCKQUOTE ||
|
378
|
-
last_token_type == BLOCKQUOTE_START)
|
379
|
-
EMIT(UL);
|
380
|
-
else
|
381
|
-
EMIT(PRINTABLE);
|
382
|
-
{p++; cs = 94; goto _out;}
|
383
|
-
}}
|
384
|
-
goto st94;
|
385
|
-
tr133:
|
386
|
-
#line 158 "wikitext_ragel.rl"
|
387
|
-
{te = p+1;{
|
388
|
-
EMIT(TT);
|
389
|
-
{p++; cs = 94; goto _out;}
|
390
|
-
}}
|
391
|
-
goto st94;
|
392
|
-
tr135:
|
393
|
-
#line 305 "wikitext_ragel.rl"
|
394
|
-
{te = p+1;{
|
395
|
-
EMIT(SEPARATOR);
|
396
|
-
{p++; cs = 94; goto _out;}
|
397
|
-
}}
|
398
|
-
goto st94;
|
399
|
-
tr137:
|
400
|
-
#line 401 "wikitext_ragel.rl"
|
401
|
-
{te = p;p--;{
|
402
|
-
EMIT(CRLF);
|
403
|
-
out->column_stop = 1;
|
404
|
-
out->line_stop++;
|
405
|
-
{p++; cs = 94; goto _out;}
|
406
|
-
}}
|
407
|
-
goto st94;
|
408
|
-
tr138:
|
409
|
-
#line 401 "wikitext_ragel.rl"
|
410
|
-
{te = p+1;{
|
411
|
-
EMIT(CRLF);
|
412
|
-
out->column_stop = 1;
|
413
|
-
out->line_stop++;
|
414
|
-
{p++; cs = 94; goto _out;}
|
415
|
-
}}
|
416
|
-
goto st94;
|
417
|
-
tr139:
|
418
|
-
#line 190 "wikitext_ragel.rl"
|
419
|
-
{te = p;p--;{
|
420
|
-
if (out->column_start == 1 || last_token_type == BLOCKQUOTE)
|
421
|
-
{
|
422
|
-
REWIND();
|
423
|
-
EMIT(PRE);
|
424
|
-
}
|
425
|
-
else
|
426
|
-
EMIT(SPACE);
|
427
|
-
{p++; cs = 94; goto _out;}
|
428
|
-
}}
|
429
|
-
goto st94;
|
430
|
-
tr141:
|
431
|
-
#line 414 "wikitext_ragel.rl"
|
432
|
-
{te = p;p--;{
|
433
|
-
EMIT(SPECIAL_URI_CHARS);
|
434
|
-
{p++; cs = 94; goto _out;}
|
435
|
-
}}
|
436
|
-
goto st94;
|
437
|
-
tr142:
|
438
|
-
#line 432 "wikitext_ragel.rl"
|
439
|
-
{te = p;p--;{
|
440
|
-
EMIT(PRINTABLE);
|
441
|
-
{p++; cs = 94; goto _out;}
|
442
|
-
}}
|
443
|
-
goto st94;
|
444
|
-
tr143:
|
445
|
-
#line 359 "wikitext_ragel.rl"
|
446
|
-
{te = p;p--;{
|
447
|
-
EMIT(AMP);
|
448
|
-
{p++; cs = 94; goto _out;}
|
449
|
-
}}
|
450
|
-
goto st94;
|
451
|
-
tr147:
|
452
|
-
#line 116 "wikitext_ragel.rl"
|
453
|
-
{te = p;p--;{
|
454
|
-
if (DISTANCE() == 5)
|
455
|
-
EMIT(STRONG_EM);
|
456
|
-
else if (DISTANCE() == 4)
|
457
|
-
{
|
458
|
-
p--;
|
459
|
-
EMIT(STRONG_EM);
|
460
|
-
}
|
461
|
-
else if (DISTANCE() == 3)
|
462
|
-
EMIT(STRONG);
|
463
|
-
else if (DISTANCE() == 2)
|
464
|
-
EMIT(EM);
|
465
|
-
else
|
466
|
-
EMIT(PRINTABLE);
|
467
|
-
{p++; cs = 94; goto _out;}
|
468
|
-
}}
|
469
|
-
goto st94;
|
470
|
-
tr151:
|
471
|
-
#line 116 "wikitext_ragel.rl"
|
472
|
-
{te = p+1;{
|
473
|
-
if (DISTANCE() == 5)
|
474
|
-
EMIT(STRONG_EM);
|
475
|
-
else if (DISTANCE() == 4)
|
476
|
-
{
|
477
|
-
p--;
|
478
|
-
EMIT(STRONG_EM);
|
479
|
-
}
|
480
|
-
else if (DISTANCE() == 3)
|
481
|
-
EMIT(STRONG);
|
482
|
-
else if (DISTANCE() == 2)
|
483
|
-
EMIT(EM);
|
484
|
-
else
|
485
|
-
EMIT(PRINTABLE);
|
486
|
-
{p++; cs = 94; goto _out;}
|
487
|
-
}}
|
488
|
-
goto st94;
|
489
|
-
tr153:
|
490
|
-
#line 287 "wikitext_ragel.rl"
|
491
|
-
{te = p;p--;{
|
492
|
-
EMIT(MAIL);
|
493
|
-
{p++; cs = 94; goto _out;}
|
494
|
-
}}
|
495
|
-
goto st94;
|
496
|
-
tr157:
|
497
|
-
#line 420 "wikitext_ragel.rl"
|
498
|
-
{te = p;p--;{
|
499
|
-
EMIT(ALNUM);
|
500
|
-
{p++; cs = 94; goto _out;}
|
501
|
-
}}
|
502
|
-
goto st94;
|
503
|
-
tr158:
|
504
|
-
#line 365 "wikitext_ragel.rl"
|
505
|
-
{te = p;p--;{
|
506
|
-
EMIT(LESS);
|
507
|
-
{p++; cs = 94; goto _out;}
|
508
|
-
}}
|
509
|
-
goto st94;
|
510
|
-
tr166:
|
511
|
-
#line 228 "wikitext_ragel.rl"
|
512
|
-
{te = p;p--;{
|
513
|
-
if (out->column_start == 1 || last_token_type == BLOCKQUOTE || last_token_type == BLOCKQUOTE_START)
|
514
|
-
{
|
515
|
-
REWIND();
|
516
|
-
if (DISTANCE() == 1)
|
517
|
-
EMIT(H1_START);
|
518
|
-
else if (DISTANCE() == 2)
|
519
|
-
EMIT(H2_START);
|
520
|
-
else if (DISTANCE() == 3)
|
521
|
-
EMIT(H3_START);
|
522
|
-
else if (DISTANCE() == 4)
|
523
|
-
EMIT(H4_START);
|
524
|
-
else if (DISTANCE() == 5)
|
525
|
-
EMIT(H5_START);
|
526
|
-
else if (DISTANCE() == 6)
|
527
|
-
EMIT(H6_START);
|
528
|
-
else if (DISTANCE() > 6)
|
529
|
-
{
|
530
|
-
p = ts + 6;
|
531
|
-
EMIT(H6_START);
|
532
|
-
}
|
533
|
-
}
|
534
|
-
else if (AT_END() || NEXT_CHAR() == '\n' || NEXT_CHAR() == '\r')
|
535
|
-
{
|
536
|
-
REWIND();
|
537
|
-
if (DISTANCE() == 1)
|
538
|
-
EMIT(H1_END);
|
539
|
-
else if (DISTANCE() == 2)
|
540
|
-
EMIT(H2_END);
|
541
|
-
else if (DISTANCE() == 3)
|
542
|
-
EMIT(H3_END);
|
543
|
-
else if (DISTANCE() == 4)
|
544
|
-
EMIT(H4_END);
|
545
|
-
else if (DISTANCE() == 5)
|
546
|
-
EMIT(H5_END);
|
547
|
-
else if (DISTANCE() == 6)
|
548
|
-
EMIT(H6_END);
|
549
|
-
else if (DISTANCE() > 6)
|
550
|
-
{
|
551
|
-
p -= 6; // will scan the H6 on the next scan
|
552
|
-
EMIT(PRINTABLE);
|
553
|
-
}
|
554
|
-
}
|
555
|
-
else
|
556
|
-
{
|
557
|
-
// note that a H*_END token will never match before a BLOCKQUOTE_END
|
558
|
-
REWIND();
|
559
|
-
EMIT(PRINTABLE);
|
560
|
-
}
|
561
|
-
{p++; cs = 94; goto _out;}
|
562
|
-
}}
|
563
|
-
goto st94;
|
564
|
-
tr168:
|
565
|
-
#line 177 "wikitext_ragel.rl"
|
566
|
-
{te = p;p--;{
|
567
|
-
if (out->column_start == 1 || last_token_type == BLOCKQUOTE)
|
568
|
-
EMIT(BLOCKQUOTE);
|
569
|
-
else
|
570
|
-
{
|
571
|
-
REWIND();
|
572
|
-
EMIT(GREATER);
|
573
|
-
}
|
574
|
-
{p++; cs = 94; goto _out;}
|
575
|
-
}}
|
576
|
-
goto st94;
|
577
|
-
tr169:
|
578
|
-
#line 177 "wikitext_ragel.rl"
|
579
|
-
{te = p+1;{
|
580
|
-
if (out->column_start == 1 || last_token_type == BLOCKQUOTE)
|
581
|
-
EMIT(BLOCKQUOTE);
|
582
|
-
else
|
583
|
-
{
|
584
|
-
REWIND();
|
585
|
-
EMIT(GREATER);
|
586
|
-
}
|
587
|
-
{p++; cs = 94; goto _out;}
|
588
|
-
}}
|
589
|
-
goto st94;
|
590
|
-
tr173:
|
591
|
-
#line 281 "wikitext_ragel.rl"
|
592
|
-
{te = p;p--;{
|
593
|
-
EMIT(URI);
|
594
|
-
{p++; cs = 94; goto _out;}
|
595
|
-
}}
|
596
|
-
goto st94;
|
597
|
-
tr187:
|
598
|
-
#line 311 "wikitext_ragel.rl"
|
599
|
-
{te = p;p--;{
|
600
|
-
EMIT(EXT_LINK_START);
|
601
|
-
{p++; cs = 94; goto _out;}
|
602
|
-
}}
|
603
|
-
goto st94;
|
604
|
-
tr188:
|
605
|
-
#line 293 "wikitext_ragel.rl"
|
606
|
-
{te = p+1;{
|
607
|
-
EMIT(LINK_START);
|
608
|
-
{p++; cs = 94; goto _out;}
|
609
|
-
}}
|
610
|
-
goto st94;
|
611
|
-
tr189:
|
612
|
-
#line 317 "wikitext_ragel.rl"
|
613
|
-
{te = p;p--;{
|
614
|
-
EMIT(EXT_LINK_END);
|
615
|
-
{p++; cs = 94; goto _out;}
|
616
|
-
}}
|
617
|
-
goto st94;
|
618
|
-
tr190:
|
619
|
-
#line 299 "wikitext_ragel.rl"
|
620
|
-
{te = p+1;{
|
621
|
-
EMIT(LINK_END);
|
622
|
-
{p++; cs = 94; goto _out;}
|
623
|
-
}}
|
624
|
-
goto st94;
|
625
|
-
tr191:
|
626
|
-
#line 389 "wikitext_ragel.rl"
|
627
|
-
{te = p;p--;{
|
628
|
-
EMIT(LEFT_CURLY);
|
629
|
-
{p++; cs = 94; goto _out;}
|
630
|
-
}}
|
631
|
-
goto st94;
|
632
|
-
tr192:
|
633
|
-
#line 377 "wikitext_ragel.rl"
|
634
|
-
{te = p+1;{
|
635
|
-
EMIT(IMG_START);
|
636
|
-
{p++; cs = 94; goto _out;}
|
637
|
-
}}
|
638
|
-
goto st94;
|
639
|
-
tr193:
|
640
|
-
#line 395 "wikitext_ragel.rl"
|
641
|
-
{te = p;p--;{
|
642
|
-
EMIT(RIGHT_CURLY);
|
643
|
-
{p++; cs = 94; goto _out;}
|
644
|
-
}}
|
645
|
-
goto st94;
|
646
|
-
tr194:
|
647
|
-
#line 383 "wikitext_ragel.rl"
|
648
|
-
{te = p+1;{
|
649
|
-
EMIT(IMG_END);
|
650
|
-
{p++; cs = 94; goto _out;}
|
651
|
-
}}
|
652
|
-
goto st94;
|
653
|
-
st94:
|
654
|
-
#line 1 "wikitext_ragel.rl"
|
655
|
-
{ts = 0;}
|
656
|
-
if ( ++p == pe )
|
657
|
-
goto _test_eof94;
|
658
|
-
case 94:
|
659
|
-
#line 1 "wikitext_ragel.rl"
|
660
|
-
{ts = p;}
|
661
|
-
#line 662 "wikitext_ragel.c"
|
662
|
-
switch( (*p) ) {
|
663
|
-
case 10: goto tr111;
|
664
|
-
case 13: goto tr112;
|
665
|
-
case 32: goto tr113;
|
666
|
-
case 33: goto st97;
|
667
|
-
case 34: goto tr115;
|
668
|
-
case 35: goto tr116;
|
669
|
-
case 38: goto tr118;
|
670
|
-
case 39: goto st100;
|
671
|
-
case 42: goto tr120;
|
672
|
-
case 43: goto st98;
|
673
|
-
case 45: goto tr121;
|
674
|
-
case 46: goto tr122;
|
675
|
-
case 47: goto st98;
|
676
|
-
case 60: goto tr124;
|
677
|
-
case 61: goto tr125;
|
678
|
-
case 62: goto tr126;
|
679
|
-
case 64: goto st98;
|
680
|
-
case 70: goto tr127;
|
681
|
-
case 72: goto tr128;
|
682
|
-
case 77: goto tr129;
|
683
|
-
case 83: goto tr130;
|
684
|
-
case 91: goto st136;
|
685
|
-
case 92: goto st98;
|
686
|
-
case 93: goto st137;
|
687
|
-
case 94: goto st98;
|
688
|
-
case 95: goto tr121;
|
689
|
-
case 96: goto tr133;
|
690
|
-
case 102: goto tr127;
|
691
|
-
case 104: goto tr128;
|
692
|
-
case 109: goto tr129;
|
693
|
-
case 115: goto tr130;
|
694
|
-
case 123: goto st138;
|
695
|
-
case 124: goto tr135;
|
696
|
-
case 125: goto st139;
|
697
|
-
case 126: goto st98;
|
698
|
-
case 127: goto tr110;
|
699
|
-
}
|
700
|
-
if ( (*p) < 36 ) {
|
701
|
-
if ( (*p) < -32 ) {
|
702
|
-
if ( -62 <= (*p) && (*p) <= -33 )
|
703
|
-
goto st1;
|
704
|
-
} else if ( (*p) > -17 ) {
|
705
|
-
if ( (*p) > -12 ) {
|
706
|
-
if ( 1 <= (*p) && (*p) <= 31 )
|
707
|
-
goto tr110;
|
708
|
-
} else if ( (*p) >= -16 )
|
709
|
-
goto st4;
|
710
|
-
} else
|
711
|
-
goto st2;
|
712
|
-
} else if ( (*p) > 37 ) {
|
713
|
-
if ( (*p) < 48 ) {
|
714
|
-
if ( 40 <= (*p) && (*p) <= 44 )
|
715
|
-
goto st97;
|
716
|
-
} else if ( (*p) > 57 ) {
|
717
|
-
if ( (*p) > 63 ) {
|
718
|
-
if ( 65 <= (*p) && (*p) <= 122 )
|
719
|
-
goto tr123;
|
720
|
-
} else if ( (*p) >= 58 )
|
721
|
-
goto st97;
|
722
|
-
} else
|
723
|
-
goto tr123;
|
724
|
-
} else
|
725
|
-
goto st98;
|
726
|
-
goto st0;
|
727
|
-
st0:
|
728
|
-
cs = 0;
|
729
|
-
goto _out;
|
730
|
-
st1:
|
731
|
-
if ( ++p == pe )
|
732
|
-
goto _test_eof1;
|
733
|
-
case 1:
|
734
|
-
if ( (*p) <= -65 )
|
735
|
-
goto tr0;
|
736
|
-
goto st0;
|
737
|
-
st2:
|
738
|
-
if ( ++p == pe )
|
739
|
-
goto _test_eof2;
|
740
|
-
case 2:
|
741
|
-
if ( (*p) <= -65 )
|
742
|
-
goto st3;
|
743
|
-
goto st0;
|
744
|
-
st3:
|
745
|
-
if ( ++p == pe )
|
746
|
-
goto _test_eof3;
|
747
|
-
case 3:
|
748
|
-
if ( (*p) <= -65 )
|
749
|
-
goto tr3;
|
750
|
-
goto st0;
|
751
|
-
st4:
|
752
|
-
if ( ++p == pe )
|
753
|
-
goto _test_eof4;
|
754
|
-
case 4:
|
755
|
-
if ( (*p) <= -65 )
|
756
|
-
goto st5;
|
757
|
-
goto st0;
|
758
|
-
st5:
|
759
|
-
if ( ++p == pe )
|
760
|
-
goto _test_eof5;
|
761
|
-
case 5:
|
762
|
-
if ( (*p) <= -65 )
|
763
|
-
goto st6;
|
764
|
-
goto st0;
|
765
|
-
st6:
|
766
|
-
if ( ++p == pe )
|
767
|
-
goto _test_eof6;
|
768
|
-
case 6:
|
769
|
-
if ( (*p) <= -65 )
|
770
|
-
goto tr6;
|
771
|
-
goto st0;
|
772
|
-
tr112:
|
773
|
-
#line 41 "wikitext_ragel.rl"
|
774
|
-
{
|
775
|
-
out->code_point = *p & 0x7f;
|
776
|
-
}
|
777
|
-
goto st95;
|
778
|
-
st95:
|
779
|
-
if ( ++p == pe )
|
780
|
-
goto _test_eof95;
|
781
|
-
case 95:
|
782
|
-
#line 783 "wikitext_ragel.c"
|
783
|
-
if ( (*p) == 10 )
|
784
|
-
goto tr138;
|
785
|
-
goto tr137;
|
786
|
-
tr113:
|
787
|
-
#line 36 "wikitext_ragel.rl"
|
788
|
-
{
|
789
|
-
MARK();
|
790
|
-
}
|
791
|
-
goto st96;
|
792
|
-
st96:
|
793
|
-
if ( ++p == pe )
|
794
|
-
goto _test_eof96;
|
795
|
-
case 96:
|
796
|
-
#line 797 "wikitext_ragel.c"
|
797
|
-
if ( (*p) == 32 )
|
798
|
-
goto st96;
|
799
|
-
goto tr139;
|
800
|
-
st97:
|
801
|
-
if ( ++p == pe )
|
802
|
-
goto _test_eof97;
|
803
|
-
case 97:
|
804
|
-
switch( (*p) ) {
|
805
|
-
case 33: goto st97;
|
806
|
-
case 44: goto st97;
|
807
|
-
case 46: goto st97;
|
808
|
-
case 63: goto st97;
|
809
|
-
}
|
810
|
-
if ( (*p) > 41 ) {
|
811
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
812
|
-
goto st97;
|
813
|
-
} else if ( (*p) >= 40 )
|
814
|
-
goto st97;
|
815
|
-
goto tr141;
|
816
|
-
st98:
|
817
|
-
if ( ++p == pe )
|
818
|
-
goto _test_eof98;
|
819
|
-
case 98:
|
820
|
-
switch( (*p) ) {
|
821
|
-
case 43: goto st98;
|
822
|
-
case 45: goto st98;
|
823
|
-
case 47: goto st98;
|
824
|
-
case 64: goto st98;
|
825
|
-
case 92: goto st98;
|
826
|
-
case 126: goto st98;
|
827
|
-
}
|
828
|
-
if ( (*p) > 37 ) {
|
829
|
-
if ( 94 <= (*p) && (*p) <= 95 )
|
830
|
-
goto st98;
|
831
|
-
} else if ( (*p) >= 36 )
|
832
|
-
goto st98;
|
833
|
-
goto tr142;
|
834
|
-
tr118:
|
835
|
-
#line 1 "wikitext_ragel.rl"
|
836
|
-
{te = p+1;}
|
837
|
-
goto st99;
|
838
|
-
st99:
|
839
|
-
if ( ++p == pe )
|
840
|
-
goto _test_eof99;
|
841
|
-
case 99:
|
842
|
-
#line 843 "wikitext_ragel.c"
|
843
|
-
switch( (*p) ) {
|
844
|
-
case 35: goto st7;
|
845
|
-
case 97: goto st13;
|
846
|
-
case 113: goto st16;
|
847
|
-
}
|
848
|
-
if ( (*p) > 90 ) {
|
849
|
-
if ( 98 <= (*p) && (*p) <= 122 )
|
850
|
-
goto st11;
|
851
|
-
} else if ( (*p) >= 65 )
|
852
|
-
goto st11;
|
853
|
-
goto tr143;
|
854
|
-
st7:
|
855
|
-
if ( ++p == pe )
|
856
|
-
goto _test_eof7;
|
857
|
-
case 7:
|
858
|
-
switch( (*p) ) {
|
859
|
-
case 88: goto st9;
|
860
|
-
case 120: goto st9;
|
861
|
-
}
|
862
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
863
|
-
goto st8;
|
864
|
-
goto tr7;
|
865
|
-
st8:
|
866
|
-
if ( ++p == pe )
|
867
|
-
goto _test_eof8;
|
868
|
-
case 8:
|
869
|
-
if ( (*p) == 59 )
|
870
|
-
goto tr10;
|
871
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
872
|
-
goto st8;
|
873
|
-
goto tr7;
|
874
|
-
st9:
|
875
|
-
if ( ++p == pe )
|
876
|
-
goto _test_eof9;
|
877
|
-
case 9:
|
878
|
-
if ( (*p) < 65 ) {
|
879
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
880
|
-
goto st10;
|
881
|
-
} else if ( (*p) > 70 ) {
|
882
|
-
if ( 97 <= (*p) && (*p) <= 102 )
|
883
|
-
goto st10;
|
884
|
-
} else
|
885
|
-
goto st10;
|
886
|
-
goto tr7;
|
887
|
-
st10:
|
888
|
-
if ( ++p == pe )
|
889
|
-
goto _test_eof10;
|
890
|
-
case 10:
|
891
|
-
if ( (*p) == 59 )
|
892
|
-
goto tr12;
|
893
|
-
if ( (*p) < 65 ) {
|
894
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
895
|
-
goto st10;
|
896
|
-
} else if ( (*p) > 70 ) {
|
897
|
-
if ( 97 <= (*p) && (*p) <= 102 )
|
898
|
-
goto st10;
|
899
|
-
} else
|
900
|
-
goto st10;
|
901
|
-
goto tr7;
|
902
|
-
st11:
|
903
|
-
if ( ++p == pe )
|
904
|
-
goto _test_eof11;
|
905
|
-
case 11:
|
906
|
-
if ( (*p) == 59 )
|
907
|
-
goto tr14;
|
908
|
-
if ( (*p) < 65 ) {
|
909
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
910
|
-
goto st12;
|
911
|
-
} else if ( (*p) > 90 ) {
|
912
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
913
|
-
goto st11;
|
914
|
-
} else
|
915
|
-
goto st11;
|
916
|
-
goto tr7;
|
917
|
-
st12:
|
918
|
-
if ( ++p == pe )
|
919
|
-
goto _test_eof12;
|
920
|
-
case 12:
|
921
|
-
if ( (*p) == 59 )
|
922
|
-
goto tr14;
|
923
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
924
|
-
goto st12;
|
925
|
-
goto tr7;
|
926
|
-
st13:
|
927
|
-
if ( ++p == pe )
|
928
|
-
goto _test_eof13;
|
929
|
-
case 13:
|
930
|
-
switch( (*p) ) {
|
931
|
-
case 59: goto tr14;
|
932
|
-
case 109: goto st14;
|
933
|
-
}
|
934
|
-
if ( (*p) < 65 ) {
|
935
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
936
|
-
goto st12;
|
937
|
-
} else if ( (*p) > 90 ) {
|
938
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
939
|
-
goto st11;
|
940
|
-
} else
|
941
|
-
goto st11;
|
942
|
-
goto tr7;
|
943
|
-
st14:
|
944
|
-
if ( ++p == pe )
|
945
|
-
goto _test_eof14;
|
946
|
-
case 14:
|
947
|
-
switch( (*p) ) {
|
948
|
-
case 59: goto tr14;
|
949
|
-
case 112: goto st15;
|
950
|
-
}
|
951
|
-
if ( (*p) < 65 ) {
|
952
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
953
|
-
goto st12;
|
954
|
-
} else if ( (*p) > 90 ) {
|
955
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
956
|
-
goto st11;
|
957
|
-
} else
|
958
|
-
goto st11;
|
959
|
-
goto tr7;
|
960
|
-
st15:
|
961
|
-
if ( ++p == pe )
|
962
|
-
goto _test_eof15;
|
963
|
-
case 15:
|
964
|
-
if ( (*p) == 59 )
|
965
|
-
goto tr18;
|
966
|
-
if ( (*p) < 65 ) {
|
967
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
968
|
-
goto st12;
|
969
|
-
} else if ( (*p) > 90 ) {
|
970
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
971
|
-
goto st11;
|
972
|
-
} else
|
973
|
-
goto st11;
|
974
|
-
goto tr7;
|
975
|
-
st16:
|
976
|
-
if ( ++p == pe )
|
977
|
-
goto _test_eof16;
|
978
|
-
case 16:
|
979
|
-
switch( (*p) ) {
|
980
|
-
case 59: goto tr14;
|
981
|
-
case 117: goto st17;
|
982
|
-
}
|
983
|
-
if ( (*p) < 65 ) {
|
984
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
985
|
-
goto st12;
|
986
|
-
} else if ( (*p) > 90 ) {
|
987
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
988
|
-
goto st11;
|
989
|
-
} else
|
990
|
-
goto st11;
|
991
|
-
goto tr7;
|
992
|
-
st17:
|
993
|
-
if ( ++p == pe )
|
994
|
-
goto _test_eof17;
|
995
|
-
case 17:
|
996
|
-
switch( (*p) ) {
|
997
|
-
case 59: goto tr14;
|
998
|
-
case 111: goto st18;
|
999
|
-
}
|
1000
|
-
if ( (*p) < 65 ) {
|
1001
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1002
|
-
goto st12;
|
1003
|
-
} else if ( (*p) > 90 ) {
|
1004
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1005
|
-
goto st11;
|
1006
|
-
} else
|
1007
|
-
goto st11;
|
1008
|
-
goto tr7;
|
1009
|
-
st18:
|
1010
|
-
if ( ++p == pe )
|
1011
|
-
goto _test_eof18;
|
1012
|
-
case 18:
|
1013
|
-
switch( (*p) ) {
|
1014
|
-
case 59: goto tr14;
|
1015
|
-
case 116: goto st19;
|
1016
|
-
}
|
1017
|
-
if ( (*p) < 65 ) {
|
1018
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1019
|
-
goto st12;
|
1020
|
-
} else if ( (*p) > 90 ) {
|
1021
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1022
|
-
goto st11;
|
1023
|
-
} else
|
1024
|
-
goto st11;
|
1025
|
-
goto tr7;
|
1026
|
-
st19:
|
1027
|
-
if ( ++p == pe )
|
1028
|
-
goto _test_eof19;
|
1029
|
-
case 19:
|
1030
|
-
if ( (*p) == 59 )
|
1031
|
-
goto tr22;
|
1032
|
-
if ( (*p) < 65 ) {
|
1033
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1034
|
-
goto st12;
|
1035
|
-
} else if ( (*p) > 90 ) {
|
1036
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1037
|
-
goto st11;
|
1038
|
-
} else
|
1039
|
-
goto st11;
|
1040
|
-
goto tr7;
|
1041
|
-
st100:
|
1042
|
-
if ( ++p == pe )
|
1043
|
-
goto _test_eof100;
|
1044
|
-
case 100:
|
1045
|
-
if ( (*p) == 39 )
|
1046
|
-
goto st101;
|
1047
|
-
goto tr147;
|
1048
|
-
st101:
|
1049
|
-
if ( ++p == pe )
|
1050
|
-
goto _test_eof101;
|
1051
|
-
case 101:
|
1052
|
-
if ( (*p) == 39 )
|
1053
|
-
goto st102;
|
1054
|
-
goto tr147;
|
1055
|
-
st102:
|
1056
|
-
if ( ++p == pe )
|
1057
|
-
goto _test_eof102;
|
1058
|
-
case 102:
|
1059
|
-
if ( (*p) == 39 )
|
1060
|
-
goto st103;
|
1061
|
-
goto tr147;
|
1062
|
-
st103:
|
1063
|
-
if ( ++p == pe )
|
1064
|
-
goto _test_eof103;
|
1065
|
-
case 103:
|
1066
|
-
if ( (*p) == 39 )
|
1067
|
-
goto tr151;
|
1068
|
-
goto tr147;
|
1069
|
-
tr121:
|
1070
|
-
#line 1 "wikitext_ragel.rl"
|
1071
|
-
{te = p+1;}
|
1072
|
-
#line 432 "wikitext_ragel.rl"
|
1073
|
-
{act = 43;}
|
1074
|
-
goto st104;
|
1075
|
-
st104:
|
1076
|
-
if ( ++p == pe )
|
1077
|
-
goto _test_eof104;
|
1078
|
-
case 104:
|
1079
|
-
#line 1080 "wikitext_ragel.c"
|
1080
|
-
switch( (*p) ) {
|
1081
|
-
case 43: goto st98;
|
1082
|
-
case 45: goto tr121;
|
1083
|
-
case 47: goto st98;
|
1084
|
-
case 64: goto tr152;
|
1085
|
-
case 92: goto st98;
|
1086
|
-
case 94: goto st98;
|
1087
|
-
case 95: goto tr121;
|
1088
|
-
case 126: goto st98;
|
1089
|
-
}
|
1090
|
-
if ( (*p) < 46 ) {
|
1091
|
-
if ( 36 <= (*p) && (*p) <= 37 )
|
1092
|
-
goto st98;
|
1093
|
-
} else if ( (*p) > 57 ) {
|
1094
|
-
if ( (*p) > 90 ) {
|
1095
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1096
|
-
goto st20;
|
1097
|
-
} else if ( (*p) >= 65 )
|
1098
|
-
goto st20;
|
1099
|
-
} else
|
1100
|
-
goto st20;
|
1101
|
-
goto tr142;
|
1102
|
-
st20:
|
1103
|
-
if ( ++p == pe )
|
1104
|
-
goto _test_eof20;
|
1105
|
-
case 20:
|
1106
|
-
switch( (*p) ) {
|
1107
|
-
case 64: goto st21;
|
1108
|
-
case 95: goto st20;
|
1109
|
-
}
|
1110
|
-
if ( (*p) < 48 ) {
|
1111
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
1112
|
-
goto st20;
|
1113
|
-
} else if ( (*p) > 57 ) {
|
1114
|
-
if ( (*p) > 90 ) {
|
1115
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1116
|
-
goto st20;
|
1117
|
-
} else if ( (*p) >= 65 )
|
1118
|
-
goto st20;
|
1119
|
-
} else
|
1120
|
-
goto st20;
|
1121
|
-
goto tr23;
|
1122
|
-
st21:
|
1123
|
-
if ( ++p == pe )
|
1124
|
-
goto _test_eof21;
|
1125
|
-
case 21:
|
1126
|
-
if ( (*p) < 65 ) {
|
1127
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1128
|
-
goto st22;
|
1129
|
-
} else if ( (*p) > 90 ) {
|
1130
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1131
|
-
goto st22;
|
1132
|
-
} else
|
1133
|
-
goto st22;
|
1134
|
-
goto tr23;
|
1135
|
-
st22:
|
1136
|
-
if ( ++p == pe )
|
1137
|
-
goto _test_eof22;
|
1138
|
-
case 22:
|
1139
|
-
if ( (*p) == 46 )
|
1140
|
-
goto st23;
|
1141
|
-
if ( (*p) < 65 ) {
|
1142
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1143
|
-
goto st22;
|
1144
|
-
} else if ( (*p) > 90 ) {
|
1145
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1146
|
-
goto st22;
|
1147
|
-
} else
|
1148
|
-
goto st22;
|
1149
|
-
goto tr23;
|
1150
|
-
st23:
|
1151
|
-
if ( ++p == pe )
|
1152
|
-
goto _test_eof23;
|
1153
|
-
case 23:
|
1154
|
-
if ( (*p) < 65 ) {
|
1155
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1156
|
-
goto st22;
|
1157
|
-
} else if ( (*p) > 90 ) {
|
1158
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1159
|
-
goto st24;
|
1160
|
-
} else
|
1161
|
-
goto st24;
|
1162
|
-
goto tr23;
|
1163
|
-
st24:
|
1164
|
-
if ( ++p == pe )
|
1165
|
-
goto _test_eof24;
|
1166
|
-
case 24:
|
1167
|
-
if ( (*p) == 46 )
|
1168
|
-
goto st23;
|
1169
|
-
if ( (*p) < 65 ) {
|
1170
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1171
|
-
goto st22;
|
1172
|
-
} else if ( (*p) > 90 ) {
|
1173
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1174
|
-
goto tr29;
|
1175
|
-
} else
|
1176
|
-
goto tr29;
|
1177
|
-
goto tr23;
|
1178
|
-
tr29:
|
1179
|
-
#line 1 "wikitext_ragel.rl"
|
1180
|
-
{te = p+1;}
|
1181
|
-
#line 287 "wikitext_ragel.rl"
|
1182
|
-
{act = 21;}
|
1183
|
-
goto st105;
|
1184
|
-
st105:
|
1185
|
-
if ( ++p == pe )
|
1186
|
-
goto _test_eof105;
|
1187
|
-
case 105:
|
1188
|
-
#line 1189 "wikitext_ragel.c"
|
1189
|
-
if ( (*p) == 46 )
|
1190
|
-
goto st23;
|
1191
|
-
if ( (*p) < 65 ) {
|
1192
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1193
|
-
goto st22;
|
1194
|
-
} else if ( (*p) > 90 ) {
|
1195
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1196
|
-
goto tr154;
|
1197
|
-
} else
|
1198
|
-
goto tr154;
|
1199
|
-
goto tr153;
|
1200
|
-
tr154:
|
1201
|
-
#line 1 "wikitext_ragel.rl"
|
1202
|
-
{te = p+1;}
|
1203
|
-
#line 287 "wikitext_ragel.rl"
|
1204
|
-
{act = 21;}
|
1205
|
-
goto st106;
|
1206
|
-
st106:
|
1207
|
-
if ( ++p == pe )
|
1208
|
-
goto _test_eof106;
|
1209
|
-
case 106:
|
1210
|
-
#line 1211 "wikitext_ragel.c"
|
1211
|
-
if ( (*p) == 46 )
|
1212
|
-
goto st23;
|
1213
|
-
if ( (*p) < 65 ) {
|
1214
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1215
|
-
goto st22;
|
1216
|
-
} else if ( (*p) > 90 ) {
|
1217
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1218
|
-
goto tr155;
|
1219
|
-
} else
|
1220
|
-
goto tr155;
|
1221
|
-
goto tr153;
|
1222
|
-
tr155:
|
1223
|
-
#line 1 "wikitext_ragel.rl"
|
1224
|
-
{te = p+1;}
|
1225
|
-
#line 287 "wikitext_ragel.rl"
|
1226
|
-
{act = 21;}
|
1227
|
-
goto st107;
|
1228
|
-
st107:
|
1229
|
-
if ( ++p == pe )
|
1230
|
-
goto _test_eof107;
|
1231
|
-
case 107:
|
1232
|
-
#line 1233 "wikitext_ragel.c"
|
1233
|
-
if ( (*p) == 46 )
|
1234
|
-
goto st23;
|
1235
|
-
if ( (*p) < 65 ) {
|
1236
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1237
|
-
goto st22;
|
1238
|
-
} else if ( (*p) > 90 ) {
|
1239
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1240
|
-
goto tr156;
|
1241
|
-
} else
|
1242
|
-
goto tr156;
|
1243
|
-
goto tr153;
|
1244
|
-
tr156:
|
1245
|
-
#line 1 "wikitext_ragel.rl"
|
1246
|
-
{te = p+1;}
|
1247
|
-
#line 287 "wikitext_ragel.rl"
|
1248
|
-
{act = 21;}
|
1249
|
-
goto st108;
|
1250
|
-
st108:
|
1251
|
-
if ( ++p == pe )
|
1252
|
-
goto _test_eof108;
|
1253
|
-
case 108:
|
1254
|
-
#line 1255 "wikitext_ragel.c"
|
1255
|
-
if ( (*p) == 46 )
|
1256
|
-
goto st23;
|
1257
|
-
if ( (*p) < 65 ) {
|
1258
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1259
|
-
goto st22;
|
1260
|
-
} else if ( (*p) > 90 ) {
|
1261
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1262
|
-
goto st22;
|
1263
|
-
} else
|
1264
|
-
goto st22;
|
1265
|
-
goto tr153;
|
1266
|
-
tr152:
|
1267
|
-
#line 1 "wikitext_ragel.rl"
|
1268
|
-
{te = p+1;}
|
1269
|
-
#line 432 "wikitext_ragel.rl"
|
1270
|
-
{act = 43;}
|
1271
|
-
goto st109;
|
1272
|
-
st109:
|
1273
|
-
if ( ++p == pe )
|
1274
|
-
goto _test_eof109;
|
1275
|
-
case 109:
|
1276
|
-
#line 1277 "wikitext_ragel.c"
|
1277
|
-
switch( (*p) ) {
|
1278
|
-
case 43: goto st98;
|
1279
|
-
case 45: goto st98;
|
1280
|
-
case 47: goto st98;
|
1281
|
-
case 64: goto st98;
|
1282
|
-
case 92: goto st98;
|
1283
|
-
case 126: goto st98;
|
1284
|
-
}
|
1285
|
-
if ( (*p) < 65 ) {
|
1286
|
-
if ( (*p) > 37 ) {
|
1287
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1288
|
-
goto st22;
|
1289
|
-
} else if ( (*p) >= 36 )
|
1290
|
-
goto st98;
|
1291
|
-
} else if ( (*p) > 90 ) {
|
1292
|
-
if ( (*p) > 95 ) {
|
1293
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1294
|
-
goto st22;
|
1295
|
-
} else if ( (*p) >= 94 )
|
1296
|
-
goto st98;
|
1297
|
-
} else
|
1298
|
-
goto st22;
|
1299
|
-
goto tr142;
|
1300
|
-
tr122:
|
1301
|
-
#line 1 "wikitext_ragel.rl"
|
1302
|
-
{te = p+1;}
|
1303
|
-
#line 414 "wikitext_ragel.rl"
|
1304
|
-
{act = 41;}
|
1305
|
-
goto st110;
|
1306
|
-
st110:
|
1307
|
-
if ( ++p == pe )
|
1308
|
-
goto _test_eof110;
|
1309
|
-
case 110:
|
1310
|
-
#line 1311 "wikitext_ragel.c"
|
1311
|
-
switch( (*p) ) {
|
1312
|
-
case 33: goto st97;
|
1313
|
-
case 44: goto st97;
|
1314
|
-
case 45: goto st20;
|
1315
|
-
case 46: goto tr122;
|
1316
|
-
case 63: goto st97;
|
1317
|
-
case 64: goto st21;
|
1318
|
-
case 95: goto st20;
|
1319
|
-
}
|
1320
|
-
if ( (*p) < 58 ) {
|
1321
|
-
if ( (*p) > 41 ) {
|
1322
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1323
|
-
goto st20;
|
1324
|
-
} else if ( (*p) >= 40 )
|
1325
|
-
goto st97;
|
1326
|
-
} else if ( (*p) > 59 ) {
|
1327
|
-
if ( (*p) > 90 ) {
|
1328
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1329
|
-
goto st20;
|
1330
|
-
} else if ( (*p) >= 65 )
|
1331
|
-
goto st20;
|
1332
|
-
} else
|
1333
|
-
goto st97;
|
1334
|
-
goto tr141;
|
1335
|
-
tr123:
|
1336
|
-
#line 1 "wikitext_ragel.rl"
|
1337
|
-
{te = p+1;}
|
1338
|
-
#line 420 "wikitext_ragel.rl"
|
1339
|
-
{act = 42;}
|
1340
|
-
goto st111;
|
1341
|
-
st111:
|
1342
|
-
if ( ++p == pe )
|
1343
|
-
goto _test_eof111;
|
1344
|
-
case 111:
|
1345
|
-
#line 1346 "wikitext_ragel.c"
|
1346
|
-
switch( (*p) ) {
|
1347
|
-
case 64: goto st21;
|
1348
|
-
case 95: goto st20;
|
1349
|
-
}
|
1350
|
-
if ( (*p) < 48 ) {
|
1351
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
1352
|
-
goto st20;
|
1353
|
-
} else if ( (*p) > 57 ) {
|
1354
|
-
if ( (*p) > 90 ) {
|
1355
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1356
|
-
goto tr123;
|
1357
|
-
} else if ( (*p) >= 65 )
|
1358
|
-
goto tr123;
|
1359
|
-
} else
|
1360
|
-
goto tr123;
|
1361
|
-
goto tr157;
|
1362
|
-
tr124:
|
1363
|
-
#line 1 "wikitext_ragel.rl"
|
1364
|
-
{te = p+1;}
|
1365
|
-
goto st112;
|
1366
|
-
st112:
|
1367
|
-
if ( ++p == pe )
|
1368
|
-
goto _test_eof112;
|
1369
|
-
case 112:
|
1370
|
-
#line 1371 "wikitext_ragel.c"
|
1371
|
-
switch( (*p) ) {
|
1372
|
-
case 47: goto st25;
|
1373
|
-
case 66: goto st55;
|
1374
|
-
case 69: goto st65;
|
1375
|
-
case 78: goto st67;
|
1376
|
-
case 80: goto st73;
|
1377
|
-
case 83: goto st76;
|
1378
|
-
case 84: goto st82;
|
1379
|
-
case 98: goto st55;
|
1380
|
-
case 101: goto st65;
|
1381
|
-
case 110: goto st67;
|
1382
|
-
case 112: goto st73;
|
1383
|
-
case 115: goto st76;
|
1384
|
-
case 116: goto st82;
|
1385
|
-
}
|
1386
|
-
goto tr158;
|
1387
|
-
st25:
|
1388
|
-
if ( ++p == pe )
|
1389
|
-
goto _test_eof25;
|
1390
|
-
case 25:
|
1391
|
-
switch( (*p) ) {
|
1392
|
-
case 66: goto st26;
|
1393
|
-
case 69: goto st36;
|
1394
|
-
case 78: goto st38;
|
1395
|
-
case 80: goto st44;
|
1396
|
-
case 83: goto st47;
|
1397
|
-
case 84: goto st53;
|
1398
|
-
case 98: goto st26;
|
1399
|
-
case 101: goto st36;
|
1400
|
-
case 110: goto st38;
|
1401
|
-
case 112: goto st44;
|
1402
|
-
case 115: goto st47;
|
1403
|
-
case 116: goto st53;
|
1404
|
-
}
|
1405
|
-
goto tr30;
|
1406
|
-
st26:
|
1407
|
-
if ( ++p == pe )
|
1408
|
-
goto _test_eof26;
|
1409
|
-
case 26:
|
1410
|
-
switch( (*p) ) {
|
1411
|
-
case 76: goto st27;
|
1412
|
-
case 108: goto st27;
|
1413
|
-
}
|
1414
|
-
goto tr30;
|
1415
|
-
st27:
|
1416
|
-
if ( ++p == pe )
|
1417
|
-
goto _test_eof27;
|
1418
|
-
case 27:
|
1419
|
-
switch( (*p) ) {
|
1420
|
-
case 79: goto st28;
|
1421
|
-
case 111: goto st28;
|
1422
|
-
}
|
1423
|
-
goto tr30;
|
1424
|
-
st28:
|
1425
|
-
if ( ++p == pe )
|
1426
|
-
goto _test_eof28;
|
1427
|
-
case 28:
|
1428
|
-
switch( (*p) ) {
|
1429
|
-
case 67: goto st29;
|
1430
|
-
case 99: goto st29;
|
1431
|
-
}
|
1432
|
-
goto tr30;
|
1433
|
-
st29:
|
1434
|
-
if ( ++p == pe )
|
1435
|
-
goto _test_eof29;
|
1436
|
-
case 29:
|
1437
|
-
switch( (*p) ) {
|
1438
|
-
case 75: goto st30;
|
1439
|
-
case 107: goto st30;
|
1440
|
-
}
|
1441
|
-
goto tr30;
|
1442
|
-
st30:
|
1443
|
-
if ( ++p == pe )
|
1444
|
-
goto _test_eof30;
|
1445
|
-
case 30:
|
1446
|
-
switch( (*p) ) {
|
1447
|
-
case 81: goto st31;
|
1448
|
-
case 113: goto st31;
|
1449
|
-
}
|
1450
|
-
goto tr30;
|
1451
|
-
st31:
|
1452
|
-
if ( ++p == pe )
|
1453
|
-
goto _test_eof31;
|
1454
|
-
case 31:
|
1455
|
-
switch( (*p) ) {
|
1456
|
-
case 85: goto st32;
|
1457
|
-
case 117: goto st32;
|
1458
|
-
}
|
1459
|
-
goto tr30;
|
1460
|
-
st32:
|
1461
|
-
if ( ++p == pe )
|
1462
|
-
goto _test_eof32;
|
1463
|
-
case 32:
|
1464
|
-
switch( (*p) ) {
|
1465
|
-
case 79: goto st33;
|
1466
|
-
case 111: goto st33;
|
1467
|
-
}
|
1468
|
-
goto tr30;
|
1469
|
-
st33:
|
1470
|
-
if ( ++p == pe )
|
1471
|
-
goto _test_eof33;
|
1472
|
-
case 33:
|
1473
|
-
switch( (*p) ) {
|
1474
|
-
case 84: goto st34;
|
1475
|
-
case 116: goto st34;
|
1476
|
-
}
|
1477
|
-
goto tr30;
|
1478
|
-
st34:
|
1479
|
-
if ( ++p == pe )
|
1480
|
-
goto _test_eof34;
|
1481
|
-
case 34:
|
1482
|
-
switch( (*p) ) {
|
1483
|
-
case 69: goto st35;
|
1484
|
-
case 101: goto st35;
|
1485
|
-
}
|
1486
|
-
goto tr30;
|
1487
|
-
st35:
|
1488
|
-
if ( ++p == pe )
|
1489
|
-
goto _test_eof35;
|
1490
|
-
case 35:
|
1491
|
-
if ( (*p) == 62 )
|
1492
|
-
goto tr46;
|
1493
|
-
goto tr30;
|
1494
|
-
st36:
|
1495
|
-
if ( ++p == pe )
|
1496
|
-
goto _test_eof36;
|
1497
|
-
case 36:
|
1498
|
-
switch( (*p) ) {
|
1499
|
-
case 77: goto st37;
|
1500
|
-
case 109: goto st37;
|
1501
|
-
}
|
1502
|
-
goto tr30;
|
1503
|
-
st37:
|
1504
|
-
if ( ++p == pe )
|
1505
|
-
goto _test_eof37;
|
1506
|
-
case 37:
|
1507
|
-
if ( (*p) == 62 )
|
1508
|
-
goto tr48;
|
1509
|
-
goto tr30;
|
1510
|
-
st38:
|
1511
|
-
if ( ++p == pe )
|
1512
|
-
goto _test_eof38;
|
1513
|
-
case 38:
|
1514
|
-
switch( (*p) ) {
|
1515
|
-
case 79: goto st39;
|
1516
|
-
case 111: goto st39;
|
1517
|
-
}
|
1518
|
-
goto tr30;
|
1519
|
-
st39:
|
1520
|
-
if ( ++p == pe )
|
1521
|
-
goto _test_eof39;
|
1522
|
-
case 39:
|
1523
|
-
switch( (*p) ) {
|
1524
|
-
case 87: goto st40;
|
1525
|
-
case 119: goto st40;
|
1526
|
-
}
|
1527
|
-
goto tr30;
|
1528
|
-
st40:
|
1529
|
-
if ( ++p == pe )
|
1530
|
-
goto _test_eof40;
|
1531
|
-
case 40:
|
1532
|
-
switch( (*p) ) {
|
1533
|
-
case 73: goto st41;
|
1534
|
-
case 105: goto st41;
|
1535
|
-
}
|
1536
|
-
goto tr30;
|
1537
|
-
st41:
|
1538
|
-
if ( ++p == pe )
|
1539
|
-
goto _test_eof41;
|
1540
|
-
case 41:
|
1541
|
-
switch( (*p) ) {
|
1542
|
-
case 75: goto st42;
|
1543
|
-
case 107: goto st42;
|
1544
|
-
}
|
1545
|
-
goto tr30;
|
1546
|
-
st42:
|
1547
|
-
if ( ++p == pe )
|
1548
|
-
goto _test_eof42;
|
1549
|
-
case 42:
|
1550
|
-
switch( (*p) ) {
|
1551
|
-
case 73: goto st43;
|
1552
|
-
case 105: goto st43;
|
1553
|
-
}
|
1554
|
-
goto tr30;
|
1555
|
-
st43:
|
1556
|
-
if ( ++p == pe )
|
1557
|
-
goto _test_eof43;
|
1558
|
-
case 43:
|
1559
|
-
if ( (*p) == 62 )
|
1560
|
-
goto tr54;
|
1561
|
-
goto tr30;
|
1562
|
-
st44:
|
1563
|
-
if ( ++p == pe )
|
1564
|
-
goto _test_eof44;
|
1565
|
-
case 44:
|
1566
|
-
switch( (*p) ) {
|
1567
|
-
case 82: goto st45;
|
1568
|
-
case 114: goto st45;
|
1569
|
-
}
|
1570
|
-
goto tr30;
|
1571
|
-
st45:
|
1572
|
-
if ( ++p == pe )
|
1573
|
-
goto _test_eof45;
|
1574
|
-
case 45:
|
1575
|
-
switch( (*p) ) {
|
1576
|
-
case 69: goto st46;
|
1577
|
-
case 101: goto st46;
|
1578
|
-
}
|
1579
|
-
goto tr30;
|
1580
|
-
st46:
|
1581
|
-
if ( ++p == pe )
|
1582
|
-
goto _test_eof46;
|
1583
|
-
case 46:
|
1584
|
-
if ( (*p) == 62 )
|
1585
|
-
goto tr57;
|
1586
|
-
goto tr30;
|
1587
|
-
st47:
|
1588
|
-
if ( ++p == pe )
|
1589
|
-
goto _test_eof47;
|
1590
|
-
case 47:
|
1591
|
-
switch( (*p) ) {
|
1592
|
-
case 84: goto st48;
|
1593
|
-
case 116: goto st48;
|
1594
|
-
}
|
1595
|
-
goto tr30;
|
1596
|
-
st48:
|
1597
|
-
if ( ++p == pe )
|
1598
|
-
goto _test_eof48;
|
1599
|
-
case 48:
|
1600
|
-
switch( (*p) ) {
|
1601
|
-
case 82: goto st49;
|
1602
|
-
case 114: goto st49;
|
1603
|
-
}
|
1604
|
-
goto tr30;
|
1605
|
-
st49:
|
1606
|
-
if ( ++p == pe )
|
1607
|
-
goto _test_eof49;
|
1608
|
-
case 49:
|
1609
|
-
switch( (*p) ) {
|
1610
|
-
case 79: goto st50;
|
1611
|
-
case 111: goto st50;
|
1612
|
-
}
|
1613
|
-
goto tr30;
|
1614
|
-
st50:
|
1615
|
-
if ( ++p == pe )
|
1616
|
-
goto _test_eof50;
|
1617
|
-
case 50:
|
1618
|
-
switch( (*p) ) {
|
1619
|
-
case 78: goto st51;
|
1620
|
-
case 110: goto st51;
|
1621
|
-
}
|
1622
|
-
goto tr30;
|
1623
|
-
st51:
|
1624
|
-
if ( ++p == pe )
|
1625
|
-
goto _test_eof51;
|
1626
|
-
case 51:
|
1627
|
-
switch( (*p) ) {
|
1628
|
-
case 71: goto st52;
|
1629
|
-
case 103: goto st52;
|
1630
|
-
}
|
1631
|
-
goto tr30;
|
1632
|
-
st52:
|
1633
|
-
if ( ++p == pe )
|
1634
|
-
goto _test_eof52;
|
1635
|
-
case 52:
|
1636
|
-
if ( (*p) == 62 )
|
1637
|
-
goto tr63;
|
1638
|
-
goto tr30;
|
1639
|
-
st53:
|
1640
|
-
if ( ++p == pe )
|
1641
|
-
goto _test_eof53;
|
1642
|
-
case 53:
|
1643
|
-
switch( (*p) ) {
|
1644
|
-
case 84: goto st54;
|
1645
|
-
case 116: goto st54;
|
1646
|
-
}
|
1647
|
-
goto tr30;
|
1648
|
-
st54:
|
1649
|
-
if ( ++p == pe )
|
1650
|
-
goto _test_eof54;
|
1651
|
-
case 54:
|
1652
|
-
if ( (*p) == 62 )
|
1653
|
-
goto tr65;
|
1654
|
-
goto tr30;
|
1655
|
-
st55:
|
1656
|
-
if ( ++p == pe )
|
1657
|
-
goto _test_eof55;
|
1658
|
-
case 55:
|
1659
|
-
switch( (*p) ) {
|
1660
|
-
case 76: goto st56;
|
1661
|
-
case 108: goto st56;
|
1662
|
-
}
|
1663
|
-
goto tr30;
|
1664
|
-
st56:
|
1665
|
-
if ( ++p == pe )
|
1666
|
-
goto _test_eof56;
|
1667
|
-
case 56:
|
1668
|
-
switch( (*p) ) {
|
1669
|
-
case 79: goto st57;
|
1670
|
-
case 111: goto st57;
|
1671
|
-
}
|
1672
|
-
goto tr30;
|
1673
|
-
st57:
|
1674
|
-
if ( ++p == pe )
|
1675
|
-
goto _test_eof57;
|
1676
|
-
case 57:
|
1677
|
-
switch( (*p) ) {
|
1678
|
-
case 67: goto st58;
|
1679
|
-
case 99: goto st58;
|
1680
|
-
}
|
1681
|
-
goto tr30;
|
1682
|
-
st58:
|
1683
|
-
if ( ++p == pe )
|
1684
|
-
goto _test_eof58;
|
1685
|
-
case 58:
|
1686
|
-
switch( (*p) ) {
|
1687
|
-
case 75: goto st59;
|
1688
|
-
case 107: goto st59;
|
1689
|
-
}
|
1690
|
-
goto tr30;
|
1691
|
-
st59:
|
1692
|
-
if ( ++p == pe )
|
1693
|
-
goto _test_eof59;
|
1694
|
-
case 59:
|
1695
|
-
switch( (*p) ) {
|
1696
|
-
case 81: goto st60;
|
1697
|
-
case 113: goto st60;
|
1698
|
-
}
|
1699
|
-
goto tr30;
|
1700
|
-
st60:
|
1701
|
-
if ( ++p == pe )
|
1702
|
-
goto _test_eof60;
|
1703
|
-
case 60:
|
1704
|
-
switch( (*p) ) {
|
1705
|
-
case 85: goto st61;
|
1706
|
-
case 117: goto st61;
|
1707
|
-
}
|
1708
|
-
goto tr30;
|
1709
|
-
st61:
|
1710
|
-
if ( ++p == pe )
|
1711
|
-
goto _test_eof61;
|
1712
|
-
case 61:
|
1713
|
-
switch( (*p) ) {
|
1714
|
-
case 79: goto st62;
|
1715
|
-
case 111: goto st62;
|
1716
|
-
}
|
1717
|
-
goto tr30;
|
1718
|
-
st62:
|
1719
|
-
if ( ++p == pe )
|
1720
|
-
goto _test_eof62;
|
1721
|
-
case 62:
|
1722
|
-
switch( (*p) ) {
|
1723
|
-
case 84: goto st63;
|
1724
|
-
case 116: goto st63;
|
1725
|
-
}
|
1726
|
-
goto tr30;
|
1727
|
-
st63:
|
1728
|
-
if ( ++p == pe )
|
1729
|
-
goto _test_eof63;
|
1730
|
-
case 63:
|
1731
|
-
switch( (*p) ) {
|
1732
|
-
case 69: goto st64;
|
1733
|
-
case 101: goto st64;
|
1734
|
-
}
|
1735
|
-
goto tr30;
|
1736
|
-
st64:
|
1737
|
-
if ( ++p == pe )
|
1738
|
-
goto _test_eof64;
|
1739
|
-
case 64:
|
1740
|
-
if ( (*p) == 62 )
|
1741
|
-
goto tr75;
|
1742
|
-
goto tr30;
|
1743
|
-
st65:
|
1744
|
-
if ( ++p == pe )
|
1745
|
-
goto _test_eof65;
|
1746
|
-
case 65:
|
1747
|
-
switch( (*p) ) {
|
1748
|
-
case 77: goto st66;
|
1749
|
-
case 109: goto st66;
|
1750
|
-
}
|
1751
|
-
goto tr30;
|
1752
|
-
st66:
|
1753
|
-
if ( ++p == pe )
|
1754
|
-
goto _test_eof66;
|
1755
|
-
case 66:
|
1756
|
-
if ( (*p) == 62 )
|
1757
|
-
goto tr77;
|
1758
|
-
goto tr30;
|
1759
|
-
st67:
|
1760
|
-
if ( ++p == pe )
|
1761
|
-
goto _test_eof67;
|
1762
|
-
case 67:
|
1763
|
-
switch( (*p) ) {
|
1764
|
-
case 79: goto st68;
|
1765
|
-
case 111: goto st68;
|
1766
|
-
}
|
1767
|
-
goto tr30;
|
1768
|
-
st68:
|
1769
|
-
if ( ++p == pe )
|
1770
|
-
goto _test_eof68;
|
1771
|
-
case 68:
|
1772
|
-
switch( (*p) ) {
|
1773
|
-
case 87: goto st69;
|
1774
|
-
case 119: goto st69;
|
1775
|
-
}
|
1776
|
-
goto tr30;
|
1777
|
-
st69:
|
1778
|
-
if ( ++p == pe )
|
1779
|
-
goto _test_eof69;
|
1780
|
-
case 69:
|
1781
|
-
switch( (*p) ) {
|
1782
|
-
case 73: goto st70;
|
1783
|
-
case 105: goto st70;
|
1784
|
-
}
|
1785
|
-
goto tr30;
|
1786
|
-
st70:
|
1787
|
-
if ( ++p == pe )
|
1788
|
-
goto _test_eof70;
|
1789
|
-
case 70:
|
1790
|
-
switch( (*p) ) {
|
1791
|
-
case 75: goto st71;
|
1792
|
-
case 107: goto st71;
|
1793
|
-
}
|
1794
|
-
goto tr30;
|
1795
|
-
st71:
|
1796
|
-
if ( ++p == pe )
|
1797
|
-
goto _test_eof71;
|
1798
|
-
case 71:
|
1799
|
-
switch( (*p) ) {
|
1800
|
-
case 73: goto st72;
|
1801
|
-
case 105: goto st72;
|
1802
|
-
}
|
1803
|
-
goto tr30;
|
1804
|
-
st72:
|
1805
|
-
if ( ++p == pe )
|
1806
|
-
goto _test_eof72;
|
1807
|
-
case 72:
|
1808
|
-
if ( (*p) == 62 )
|
1809
|
-
goto tr83;
|
1810
|
-
goto tr30;
|
1811
|
-
st73:
|
1812
|
-
if ( ++p == pe )
|
1813
|
-
goto _test_eof73;
|
1814
|
-
case 73:
|
1815
|
-
switch( (*p) ) {
|
1816
|
-
case 82: goto st74;
|
1817
|
-
case 114: goto st74;
|
1818
|
-
}
|
1819
|
-
goto tr30;
|
1820
|
-
st74:
|
1821
|
-
if ( ++p == pe )
|
1822
|
-
goto _test_eof74;
|
1823
|
-
case 74:
|
1824
|
-
switch( (*p) ) {
|
1825
|
-
case 69: goto st75;
|
1826
|
-
case 101: goto st75;
|
1827
|
-
}
|
1828
|
-
goto tr30;
|
1829
|
-
st75:
|
1830
|
-
if ( ++p == pe )
|
1831
|
-
goto _test_eof75;
|
1832
|
-
case 75:
|
1833
|
-
if ( (*p) == 62 )
|
1834
|
-
goto tr86;
|
1835
|
-
goto tr30;
|
1836
|
-
st76:
|
1837
|
-
if ( ++p == pe )
|
1838
|
-
goto _test_eof76;
|
1839
|
-
case 76:
|
1840
|
-
switch( (*p) ) {
|
1841
|
-
case 84: goto st77;
|
1842
|
-
case 116: goto st77;
|
1843
|
-
}
|
1844
|
-
goto tr30;
|
1845
|
-
st77:
|
1846
|
-
if ( ++p == pe )
|
1847
|
-
goto _test_eof77;
|
1848
|
-
case 77:
|
1849
|
-
switch( (*p) ) {
|
1850
|
-
case 82: goto st78;
|
1851
|
-
case 114: goto st78;
|
1852
|
-
}
|
1853
|
-
goto tr30;
|
1854
|
-
st78:
|
1855
|
-
if ( ++p == pe )
|
1856
|
-
goto _test_eof78;
|
1857
|
-
case 78:
|
1858
|
-
switch( (*p) ) {
|
1859
|
-
case 79: goto st79;
|
1860
|
-
case 111: goto st79;
|
1861
|
-
}
|
1862
|
-
goto tr30;
|
1863
|
-
st79:
|
1864
|
-
if ( ++p == pe )
|
1865
|
-
goto _test_eof79;
|
1866
|
-
case 79:
|
1867
|
-
switch( (*p) ) {
|
1868
|
-
case 78: goto st80;
|
1869
|
-
case 110: goto st80;
|
1870
|
-
}
|
1871
|
-
goto tr30;
|
1872
|
-
st80:
|
1873
|
-
if ( ++p == pe )
|
1874
|
-
goto _test_eof80;
|
1875
|
-
case 80:
|
1876
|
-
switch( (*p) ) {
|
1877
|
-
case 71: goto st81;
|
1878
|
-
case 103: goto st81;
|
1879
|
-
}
|
1880
|
-
goto tr30;
|
1881
|
-
st81:
|
1882
|
-
if ( ++p == pe )
|
1883
|
-
goto _test_eof81;
|
1884
|
-
case 81:
|
1885
|
-
if ( (*p) == 62 )
|
1886
|
-
goto tr92;
|
1887
|
-
goto tr30;
|
1888
|
-
st82:
|
1889
|
-
if ( ++p == pe )
|
1890
|
-
goto _test_eof82;
|
1891
|
-
case 82:
|
1892
|
-
switch( (*p) ) {
|
1893
|
-
case 84: goto st83;
|
1894
|
-
case 116: goto st83;
|
1895
|
-
}
|
1896
|
-
goto tr30;
|
1897
|
-
st83:
|
1898
|
-
if ( ++p == pe )
|
1899
|
-
goto _test_eof83;
|
1900
|
-
case 83:
|
1901
|
-
if ( (*p) == 62 )
|
1902
|
-
goto tr94;
|
1903
|
-
goto tr30;
|
1904
|
-
tr125:
|
1905
|
-
#line 36 "wikitext_ragel.rl"
|
1906
|
-
{
|
1907
|
-
MARK();
|
1908
|
-
}
|
1909
|
-
goto st113;
|
1910
|
-
st113:
|
1911
|
-
if ( ++p == pe )
|
1912
|
-
goto _test_eof113;
|
1913
|
-
case 113:
|
1914
|
-
#line 1915 "wikitext_ragel.c"
|
1915
|
-
switch( (*p) ) {
|
1916
|
-
case 32: goto st114;
|
1917
|
-
case 61: goto tr125;
|
1918
|
-
}
|
1919
|
-
goto tr166;
|
1920
|
-
st114:
|
1921
|
-
if ( ++p == pe )
|
1922
|
-
goto _test_eof114;
|
1923
|
-
case 114:
|
1924
|
-
if ( (*p) == 32 )
|
1925
|
-
goto st114;
|
1926
|
-
goto tr166;
|
1927
|
-
tr126:
|
1928
|
-
#line 36 "wikitext_ragel.rl"
|
1929
|
-
{
|
1930
|
-
MARK();
|
1931
|
-
}
|
1932
|
-
goto st115;
|
1933
|
-
st115:
|
1934
|
-
if ( ++p == pe )
|
1935
|
-
goto _test_eof115;
|
1936
|
-
case 115:
|
1937
|
-
#line 1938 "wikitext_ragel.c"
|
1938
|
-
if ( (*p) == 32 )
|
1939
|
-
goto tr169;
|
1940
|
-
goto tr168;
|
1941
|
-
tr127:
|
1942
|
-
#line 1 "wikitext_ragel.rl"
|
1943
|
-
{te = p+1;}
|
1944
|
-
#line 420 "wikitext_ragel.rl"
|
1945
|
-
{act = 42;}
|
1946
|
-
goto st116;
|
1947
|
-
st116:
|
1948
|
-
if ( ++p == pe )
|
1949
|
-
goto _test_eof116;
|
1950
|
-
case 116:
|
1951
|
-
#line 1952 "wikitext_ragel.c"
|
1952
|
-
switch( (*p) ) {
|
1953
|
-
case 64: goto st21;
|
1954
|
-
case 84: goto tr170;
|
1955
|
-
case 95: goto st20;
|
1956
|
-
case 116: goto tr170;
|
1957
|
-
}
|
1958
|
-
if ( (*p) < 48 ) {
|
1959
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
1960
|
-
goto st20;
|
1961
|
-
} else if ( (*p) > 57 ) {
|
1962
|
-
if ( (*p) > 90 ) {
|
1963
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1964
|
-
goto tr123;
|
1965
|
-
} else if ( (*p) >= 65 )
|
1966
|
-
goto tr123;
|
1967
|
-
} else
|
1968
|
-
goto tr123;
|
1969
|
-
goto tr157;
|
1970
|
-
tr170:
|
1971
|
-
#line 1 "wikitext_ragel.rl"
|
1972
|
-
{te = p+1;}
|
1973
|
-
#line 420 "wikitext_ragel.rl"
|
1974
|
-
{act = 42;}
|
1975
|
-
goto st117;
|
1976
|
-
st117:
|
1977
|
-
if ( ++p == pe )
|
1978
|
-
goto _test_eof117;
|
1979
|
-
case 117:
|
1980
|
-
#line 1981 "wikitext_ragel.c"
|
1981
|
-
switch( (*p) ) {
|
1982
|
-
case 64: goto st21;
|
1983
|
-
case 80: goto tr171;
|
1984
|
-
case 95: goto st20;
|
1985
|
-
case 112: goto tr171;
|
1986
|
-
}
|
1987
|
-
if ( (*p) < 48 ) {
|
1988
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
1989
|
-
goto st20;
|
1990
|
-
} else if ( (*p) > 57 ) {
|
1991
|
-
if ( (*p) > 90 ) {
|
1992
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1993
|
-
goto tr123;
|
1994
|
-
} else if ( (*p) >= 65 )
|
1995
|
-
goto tr123;
|
1996
|
-
} else
|
1997
|
-
goto tr123;
|
1998
|
-
goto tr157;
|
1999
|
-
tr171:
|
2000
|
-
#line 1 "wikitext_ragel.rl"
|
2001
|
-
{te = p+1;}
|
2002
|
-
#line 420 "wikitext_ragel.rl"
|
2003
|
-
{act = 42;}
|
2004
|
-
goto st118;
|
2005
|
-
st118:
|
2006
|
-
if ( ++p == pe )
|
2007
|
-
goto _test_eof118;
|
2008
|
-
case 118:
|
2009
|
-
#line 2010 "wikitext_ragel.c"
|
2010
|
-
switch( (*p) ) {
|
2011
|
-
case 58: goto st84;
|
2012
|
-
case 64: goto st21;
|
2013
|
-
case 95: goto st20;
|
2014
|
-
}
|
2015
|
-
if ( (*p) < 48 ) {
|
2016
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2017
|
-
goto st20;
|
2018
|
-
} else if ( (*p) > 57 ) {
|
2019
|
-
if ( (*p) > 90 ) {
|
2020
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2021
|
-
goto tr123;
|
2022
|
-
} else if ( (*p) >= 65 )
|
2023
|
-
goto tr123;
|
2024
|
-
} else
|
2025
|
-
goto tr123;
|
2026
|
-
goto tr157;
|
2027
|
-
st84:
|
2028
|
-
if ( ++p == pe )
|
2029
|
-
goto _test_eof84;
|
2030
|
-
case 84:
|
2031
|
-
if ( (*p) == 47 )
|
2032
|
-
goto st85;
|
2033
|
-
goto tr95;
|
2034
|
-
st85:
|
2035
|
-
if ( ++p == pe )
|
2036
|
-
goto _test_eof85;
|
2037
|
-
case 85:
|
2038
|
-
if ( (*p) == 47 )
|
2039
|
-
goto st86;
|
2040
|
-
goto tr95;
|
2041
|
-
st86:
|
2042
|
-
if ( ++p == pe )
|
2043
|
-
goto _test_eof86;
|
2044
|
-
case 86:
|
2045
|
-
switch( (*p) ) {
|
2046
|
-
case 45: goto tr98;
|
2047
|
-
case 61: goto tr98;
|
2048
|
-
case 95: goto tr98;
|
2049
|
-
case 126: goto tr98;
|
2050
|
-
}
|
2051
|
-
if ( (*p) < 47 ) {
|
2052
|
-
if ( (*p) > 40 ) {
|
2053
|
-
if ( 42 <= (*p) && (*p) <= 43 )
|
2054
|
-
goto tr98;
|
2055
|
-
} else if ( (*p) >= 35 )
|
2056
|
-
goto tr98;
|
2057
|
-
} else if ( (*p) > 57 ) {
|
2058
|
-
if ( (*p) > 90 ) {
|
2059
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2060
|
-
goto tr98;
|
2061
|
-
} else if ( (*p) >= 64 )
|
2062
|
-
goto tr98;
|
2063
|
-
} else
|
2064
|
-
goto tr98;
|
2065
|
-
goto tr95;
|
2066
|
-
tr98:
|
2067
|
-
#line 1 "wikitext_ragel.rl"
|
2068
|
-
{te = p+1;}
|
2069
|
-
goto st119;
|
2070
|
-
st119:
|
2071
|
-
if ( ++p == pe )
|
2072
|
-
goto _test_eof119;
|
2073
|
-
case 119:
|
2074
|
-
#line 2075 "wikitext_ragel.c"
|
2075
|
-
switch( (*p) ) {
|
2076
|
-
case 33: goto st87;
|
2077
|
-
case 41: goto st87;
|
2078
|
-
case 44: goto st87;
|
2079
|
-
case 46: goto st87;
|
2080
|
-
case 61: goto tr98;
|
2081
|
-
case 63: goto st87;
|
2082
|
-
case 95: goto tr98;
|
2083
|
-
case 126: goto tr98;
|
2084
|
-
}
|
2085
|
-
if ( (*p) < 58 ) {
|
2086
|
-
if ( 35 <= (*p) && (*p) <= 57 )
|
2087
|
-
goto tr98;
|
2088
|
-
} else if ( (*p) > 59 ) {
|
2089
|
-
if ( (*p) > 90 ) {
|
2090
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2091
|
-
goto tr98;
|
2092
|
-
} else if ( (*p) >= 64 )
|
2093
|
-
goto tr98;
|
2094
|
-
} else
|
2095
|
-
goto st87;
|
2096
|
-
goto tr173;
|
2097
|
-
st87:
|
2098
|
-
if ( ++p == pe )
|
2099
|
-
goto _test_eof87;
|
2100
|
-
case 87:
|
2101
|
-
switch( (*p) ) {
|
2102
|
-
case 33: goto st87;
|
2103
|
-
case 41: goto st87;
|
2104
|
-
case 44: goto st87;
|
2105
|
-
case 46: goto st87;
|
2106
|
-
case 61: goto tr98;
|
2107
|
-
case 63: goto st87;
|
2108
|
-
case 95: goto tr98;
|
2109
|
-
case 126: goto tr98;
|
2110
|
-
}
|
2111
|
-
if ( (*p) < 58 ) {
|
2112
|
-
if ( 35 <= (*p) && (*p) <= 57 )
|
2113
|
-
goto tr98;
|
2114
|
-
} else if ( (*p) > 59 ) {
|
2115
|
-
if ( (*p) > 90 ) {
|
2116
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2117
|
-
goto tr98;
|
2118
|
-
} else if ( (*p) >= 64 )
|
2119
|
-
goto tr98;
|
2120
|
-
} else
|
2121
|
-
goto st87;
|
2122
|
-
goto tr99;
|
2123
|
-
tr128:
|
2124
|
-
#line 1 "wikitext_ragel.rl"
|
2125
|
-
{te = p+1;}
|
2126
|
-
#line 420 "wikitext_ragel.rl"
|
2127
|
-
{act = 42;}
|
2128
|
-
goto st120;
|
2129
|
-
st120:
|
2130
|
-
if ( ++p == pe )
|
2131
|
-
goto _test_eof120;
|
2132
|
-
case 120:
|
2133
|
-
#line 2134 "wikitext_ragel.c"
|
2134
|
-
switch( (*p) ) {
|
2135
|
-
case 64: goto st21;
|
2136
|
-
case 84: goto tr174;
|
2137
|
-
case 95: goto st20;
|
2138
|
-
case 116: goto tr174;
|
2139
|
-
}
|
2140
|
-
if ( (*p) < 48 ) {
|
2141
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2142
|
-
goto st20;
|
2143
|
-
} else if ( (*p) > 57 ) {
|
2144
|
-
if ( (*p) > 90 ) {
|
2145
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2146
|
-
goto tr123;
|
2147
|
-
} else if ( (*p) >= 65 )
|
2148
|
-
goto tr123;
|
2149
|
-
} else
|
2150
|
-
goto tr123;
|
2151
|
-
goto tr157;
|
2152
|
-
tr174:
|
2153
|
-
#line 1 "wikitext_ragel.rl"
|
2154
|
-
{te = p+1;}
|
2155
|
-
#line 420 "wikitext_ragel.rl"
|
2156
|
-
{act = 42;}
|
2157
|
-
goto st121;
|
2158
|
-
st121:
|
2159
|
-
if ( ++p == pe )
|
2160
|
-
goto _test_eof121;
|
2161
|
-
case 121:
|
2162
|
-
#line 2163 "wikitext_ragel.c"
|
2163
|
-
switch( (*p) ) {
|
2164
|
-
case 64: goto st21;
|
2165
|
-
case 84: goto tr175;
|
2166
|
-
case 95: goto st20;
|
2167
|
-
case 116: goto tr175;
|
2168
|
-
}
|
2169
|
-
if ( (*p) < 48 ) {
|
2170
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2171
|
-
goto st20;
|
2172
|
-
} else if ( (*p) > 57 ) {
|
2173
|
-
if ( (*p) > 90 ) {
|
2174
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2175
|
-
goto tr123;
|
2176
|
-
} else if ( (*p) >= 65 )
|
2177
|
-
goto tr123;
|
2178
|
-
} else
|
2179
|
-
goto tr123;
|
2180
|
-
goto tr157;
|
2181
|
-
tr175:
|
2182
|
-
#line 1 "wikitext_ragel.rl"
|
2183
|
-
{te = p+1;}
|
2184
|
-
#line 420 "wikitext_ragel.rl"
|
2185
|
-
{act = 42;}
|
2186
|
-
goto st122;
|
2187
|
-
st122:
|
2188
|
-
if ( ++p == pe )
|
2189
|
-
goto _test_eof122;
|
2190
|
-
case 122:
|
2191
|
-
#line 2192 "wikitext_ragel.c"
|
2192
|
-
switch( (*p) ) {
|
2193
|
-
case 64: goto st21;
|
2194
|
-
case 80: goto tr176;
|
2195
|
-
case 95: goto st20;
|
2196
|
-
case 112: goto tr176;
|
2197
|
-
}
|
2198
|
-
if ( (*p) < 48 ) {
|
2199
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2200
|
-
goto st20;
|
2201
|
-
} else if ( (*p) > 57 ) {
|
2202
|
-
if ( (*p) > 90 ) {
|
2203
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2204
|
-
goto tr123;
|
2205
|
-
} else if ( (*p) >= 65 )
|
2206
|
-
goto tr123;
|
2207
|
-
} else
|
2208
|
-
goto tr123;
|
2209
|
-
goto tr157;
|
2210
|
-
tr176:
|
2211
|
-
#line 1 "wikitext_ragel.rl"
|
2212
|
-
{te = p+1;}
|
2213
|
-
#line 420 "wikitext_ragel.rl"
|
2214
|
-
{act = 42;}
|
2215
|
-
goto st123;
|
2216
|
-
st123:
|
2217
|
-
if ( ++p == pe )
|
2218
|
-
goto _test_eof123;
|
2219
|
-
case 123:
|
2220
|
-
#line 2221 "wikitext_ragel.c"
|
2221
|
-
switch( (*p) ) {
|
2222
|
-
case 58: goto st84;
|
2223
|
-
case 64: goto st21;
|
2224
|
-
case 83: goto tr171;
|
2225
|
-
case 95: goto st20;
|
2226
|
-
case 115: goto tr171;
|
2227
|
-
}
|
2228
|
-
if ( (*p) < 48 ) {
|
2229
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2230
|
-
goto st20;
|
2231
|
-
} else if ( (*p) > 57 ) {
|
2232
|
-
if ( (*p) > 90 ) {
|
2233
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2234
|
-
goto tr123;
|
2235
|
-
} else if ( (*p) >= 65 )
|
2236
|
-
goto tr123;
|
2237
|
-
} else
|
2238
|
-
goto tr123;
|
2239
|
-
goto tr157;
|
2240
|
-
tr129:
|
2241
|
-
#line 1 "wikitext_ragel.rl"
|
2242
|
-
{te = p+1;}
|
2243
|
-
#line 420 "wikitext_ragel.rl"
|
2244
|
-
{act = 42;}
|
2245
|
-
goto st124;
|
2246
|
-
st124:
|
2247
|
-
if ( ++p == pe )
|
2248
|
-
goto _test_eof124;
|
2249
|
-
case 124:
|
2250
|
-
#line 2251 "wikitext_ragel.c"
|
2251
|
-
switch( (*p) ) {
|
2252
|
-
case 64: goto st21;
|
2253
|
-
case 65: goto tr177;
|
2254
|
-
case 95: goto st20;
|
2255
|
-
case 97: goto tr177;
|
2256
|
-
}
|
2257
|
-
if ( (*p) < 48 ) {
|
2258
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2259
|
-
goto st20;
|
2260
|
-
} else if ( (*p) > 57 ) {
|
2261
|
-
if ( (*p) > 90 ) {
|
2262
|
-
if ( 98 <= (*p) && (*p) <= 122 )
|
2263
|
-
goto tr123;
|
2264
|
-
} else if ( (*p) >= 66 )
|
2265
|
-
goto tr123;
|
2266
|
-
} else
|
2267
|
-
goto tr123;
|
2268
|
-
goto tr157;
|
2269
|
-
tr177:
|
2270
|
-
#line 1 "wikitext_ragel.rl"
|
2271
|
-
{te = p+1;}
|
2272
|
-
#line 420 "wikitext_ragel.rl"
|
2273
|
-
{act = 42;}
|
2274
|
-
goto st125;
|
2275
|
-
st125:
|
2276
|
-
if ( ++p == pe )
|
2277
|
-
goto _test_eof125;
|
2278
|
-
case 125:
|
2279
|
-
#line 2280 "wikitext_ragel.c"
|
2280
|
-
switch( (*p) ) {
|
2281
|
-
case 64: goto st21;
|
2282
|
-
case 73: goto tr178;
|
2283
|
-
case 95: goto st20;
|
2284
|
-
case 105: goto tr178;
|
2285
|
-
}
|
2286
|
-
if ( (*p) < 48 ) {
|
2287
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2288
|
-
goto st20;
|
2289
|
-
} else if ( (*p) > 57 ) {
|
2290
|
-
if ( (*p) > 90 ) {
|
2291
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2292
|
-
goto tr123;
|
2293
|
-
} else if ( (*p) >= 65 )
|
2294
|
-
goto tr123;
|
2295
|
-
} else
|
2296
|
-
goto tr123;
|
2297
|
-
goto tr157;
|
2298
|
-
tr178:
|
2299
|
-
#line 1 "wikitext_ragel.rl"
|
2300
|
-
{te = p+1;}
|
2301
|
-
#line 420 "wikitext_ragel.rl"
|
2302
|
-
{act = 42;}
|
2303
|
-
goto st126;
|
2304
|
-
st126:
|
2305
|
-
if ( ++p == pe )
|
2306
|
-
goto _test_eof126;
|
2307
|
-
case 126:
|
2308
|
-
#line 2309 "wikitext_ragel.c"
|
2309
|
-
switch( (*p) ) {
|
2310
|
-
case 64: goto st21;
|
2311
|
-
case 76: goto tr179;
|
2312
|
-
case 95: goto st20;
|
2313
|
-
case 108: goto tr179;
|
2314
|
-
}
|
2315
|
-
if ( (*p) < 48 ) {
|
2316
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2317
|
-
goto st20;
|
2318
|
-
} else if ( (*p) > 57 ) {
|
2319
|
-
if ( (*p) > 90 ) {
|
2320
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2321
|
-
goto tr123;
|
2322
|
-
} else if ( (*p) >= 65 )
|
2323
|
-
goto tr123;
|
2324
|
-
} else
|
2325
|
-
goto tr123;
|
2326
|
-
goto tr157;
|
2327
|
-
tr179:
|
2328
|
-
#line 1 "wikitext_ragel.rl"
|
2329
|
-
{te = p+1;}
|
2330
|
-
#line 420 "wikitext_ragel.rl"
|
2331
|
-
{act = 42;}
|
2332
|
-
goto st127;
|
2333
|
-
st127:
|
2334
|
-
if ( ++p == pe )
|
2335
|
-
goto _test_eof127;
|
2336
|
-
case 127:
|
2337
|
-
#line 2338 "wikitext_ragel.c"
|
2338
|
-
switch( (*p) ) {
|
2339
|
-
case 64: goto st21;
|
2340
|
-
case 84: goto tr180;
|
2341
|
-
case 95: goto st20;
|
2342
|
-
case 116: goto tr180;
|
2343
|
-
}
|
2344
|
-
if ( (*p) < 48 ) {
|
2345
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2346
|
-
goto st20;
|
2347
|
-
} else if ( (*p) > 57 ) {
|
2348
|
-
if ( (*p) > 90 ) {
|
2349
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2350
|
-
goto tr123;
|
2351
|
-
} else if ( (*p) >= 65 )
|
2352
|
-
goto tr123;
|
2353
|
-
} else
|
2354
|
-
goto tr123;
|
2355
|
-
goto tr157;
|
2356
|
-
tr180:
|
2357
|
-
#line 1 "wikitext_ragel.rl"
|
2358
|
-
{te = p+1;}
|
2359
|
-
#line 420 "wikitext_ragel.rl"
|
2360
|
-
{act = 42;}
|
2361
|
-
goto st128;
|
2362
|
-
st128:
|
2363
|
-
if ( ++p == pe )
|
2364
|
-
goto _test_eof128;
|
2365
|
-
case 128:
|
2366
|
-
#line 2367 "wikitext_ragel.c"
|
2367
|
-
switch( (*p) ) {
|
2368
|
-
case 64: goto st21;
|
2369
|
-
case 79: goto tr181;
|
2370
|
-
case 95: goto st20;
|
2371
|
-
case 111: goto tr181;
|
2372
|
-
}
|
2373
|
-
if ( (*p) < 48 ) {
|
2374
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2375
|
-
goto st20;
|
2376
|
-
} else if ( (*p) > 57 ) {
|
2377
|
-
if ( (*p) > 90 ) {
|
2378
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2379
|
-
goto tr123;
|
2380
|
-
} else if ( (*p) >= 65 )
|
2381
|
-
goto tr123;
|
2382
|
-
} else
|
2383
|
-
goto tr123;
|
2384
|
-
goto tr157;
|
2385
|
-
tr181:
|
2386
|
-
#line 1 "wikitext_ragel.rl"
|
2387
|
-
{te = p+1;}
|
2388
|
-
#line 420 "wikitext_ragel.rl"
|
2389
|
-
{act = 42;}
|
2390
|
-
goto st129;
|
2391
|
-
st129:
|
2392
|
-
if ( ++p == pe )
|
2393
|
-
goto _test_eof129;
|
2394
|
-
case 129:
|
2395
|
-
#line 2396 "wikitext_ragel.c"
|
2396
|
-
switch( (*p) ) {
|
2397
|
-
case 58: goto st88;
|
2398
|
-
case 64: goto st21;
|
2399
|
-
case 95: goto st20;
|
2400
|
-
}
|
2401
|
-
if ( (*p) < 48 ) {
|
2402
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2403
|
-
goto st20;
|
2404
|
-
} else if ( (*p) > 57 ) {
|
2405
|
-
if ( (*p) > 90 ) {
|
2406
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2407
|
-
goto tr123;
|
2408
|
-
} else if ( (*p) >= 65 )
|
2409
|
-
goto tr123;
|
2410
|
-
} else
|
2411
|
-
goto tr123;
|
2412
|
-
goto tr157;
|
2413
|
-
st88:
|
2414
|
-
if ( ++p == pe )
|
2415
|
-
goto _test_eof88;
|
2416
|
-
case 88:
|
2417
|
-
if ( (*p) == 95 )
|
2418
|
-
goto st89;
|
2419
|
-
if ( (*p) < 48 ) {
|
2420
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2421
|
-
goto st89;
|
2422
|
-
} else if ( (*p) > 57 ) {
|
2423
|
-
if ( (*p) > 90 ) {
|
2424
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2425
|
-
goto st89;
|
2426
|
-
} else if ( (*p) >= 65 )
|
2427
|
-
goto st89;
|
2428
|
-
} else
|
2429
|
-
goto st89;
|
2430
|
-
goto tr95;
|
2431
|
-
st89:
|
2432
|
-
if ( ++p == pe )
|
2433
|
-
goto _test_eof89;
|
2434
|
-
case 89:
|
2435
|
-
switch( (*p) ) {
|
2436
|
-
case 64: goto st90;
|
2437
|
-
case 95: goto st89;
|
2438
|
-
}
|
2439
|
-
if ( (*p) < 48 ) {
|
2440
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2441
|
-
goto st89;
|
2442
|
-
} else if ( (*p) > 57 ) {
|
2443
|
-
if ( (*p) > 90 ) {
|
2444
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2445
|
-
goto st89;
|
2446
|
-
} else if ( (*p) >= 65 )
|
2447
|
-
goto st89;
|
2448
|
-
} else
|
2449
|
-
goto st89;
|
2450
|
-
goto tr95;
|
2451
|
-
st90:
|
2452
|
-
if ( ++p == pe )
|
2453
|
-
goto _test_eof90;
|
2454
|
-
case 90:
|
2455
|
-
if ( (*p) < 65 ) {
|
2456
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
2457
|
-
goto st91;
|
2458
|
-
} else if ( (*p) > 90 ) {
|
2459
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2460
|
-
goto st91;
|
2461
|
-
} else
|
2462
|
-
goto st91;
|
2463
|
-
goto tr95;
|
2464
|
-
st91:
|
2465
|
-
if ( ++p == pe )
|
2466
|
-
goto _test_eof91;
|
2467
|
-
case 91:
|
2468
|
-
if ( (*p) == 46 )
|
2469
|
-
goto st92;
|
2470
|
-
if ( (*p) < 65 ) {
|
2471
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
2472
|
-
goto st91;
|
2473
|
-
} else if ( (*p) > 90 ) {
|
2474
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2475
|
-
goto st91;
|
2476
|
-
} else
|
2477
|
-
goto st91;
|
2478
|
-
goto tr23;
|
2479
|
-
st92:
|
2480
|
-
if ( ++p == pe )
|
2481
|
-
goto _test_eof92;
|
2482
|
-
case 92:
|
2483
|
-
if ( (*p) < 65 ) {
|
2484
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
2485
|
-
goto st91;
|
2486
|
-
} else if ( (*p) > 90 ) {
|
2487
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2488
|
-
goto st93;
|
2489
|
-
} else
|
2490
|
-
goto st93;
|
2491
|
-
goto tr23;
|
2492
|
-
st93:
|
2493
|
-
if ( ++p == pe )
|
2494
|
-
goto _test_eof93;
|
2495
|
-
case 93:
|
2496
|
-
if ( (*p) == 46 )
|
2497
|
-
goto st92;
|
2498
|
-
if ( (*p) < 65 ) {
|
2499
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
2500
|
-
goto st91;
|
2501
|
-
} else if ( (*p) > 90 ) {
|
2502
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2503
|
-
goto tr106;
|
2504
|
-
} else
|
2505
|
-
goto tr106;
|
2506
|
-
goto tr23;
|
2507
|
-
tr106:
|
2508
|
-
#line 1 "wikitext_ragel.rl"
|
2509
|
-
{te = p+1;}
|
2510
|
-
#line 281 "wikitext_ragel.rl"
|
2511
|
-
{act = 20;}
|
2512
|
-
goto st130;
|
2513
|
-
st130:
|
2514
|
-
if ( ++p == pe )
|
2515
|
-
goto _test_eof130;
|
2516
|
-
case 130:
|
2517
|
-
#line 2518 "wikitext_ragel.c"
|
2518
|
-
if ( (*p) == 46 )
|
2519
|
-
goto st92;
|
2520
|
-
if ( (*p) < 65 ) {
|
2521
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
2522
|
-
goto st91;
|
2523
|
-
} else if ( (*p) > 90 ) {
|
2524
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2525
|
-
goto tr183;
|
2526
|
-
} else
|
2527
|
-
goto tr183;
|
2528
|
-
goto tr173;
|
2529
|
-
tr183:
|
2530
|
-
#line 1 "wikitext_ragel.rl"
|
2531
|
-
{te = p+1;}
|
2532
|
-
#line 281 "wikitext_ragel.rl"
|
2533
|
-
{act = 20;}
|
2534
|
-
goto st131;
|
2535
|
-
st131:
|
2536
|
-
if ( ++p == pe )
|
2537
|
-
goto _test_eof131;
|
2538
|
-
case 131:
|
2539
|
-
#line 2540 "wikitext_ragel.c"
|
2540
|
-
if ( (*p) == 46 )
|
2541
|
-
goto st92;
|
2542
|
-
if ( (*p) < 65 ) {
|
2543
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
2544
|
-
goto st91;
|
2545
|
-
} else if ( (*p) > 90 ) {
|
2546
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2547
|
-
goto tr184;
|
2548
|
-
} else
|
2549
|
-
goto tr184;
|
2550
|
-
goto tr173;
|
2551
|
-
tr184:
|
2552
|
-
#line 1 "wikitext_ragel.rl"
|
2553
|
-
{te = p+1;}
|
2554
|
-
#line 281 "wikitext_ragel.rl"
|
2555
|
-
{act = 20;}
|
2556
|
-
goto st132;
|
2557
|
-
st132:
|
2558
|
-
if ( ++p == pe )
|
2559
|
-
goto _test_eof132;
|
2560
|
-
case 132:
|
2561
|
-
#line 2562 "wikitext_ragel.c"
|
2562
|
-
if ( (*p) == 46 )
|
2563
|
-
goto st92;
|
2564
|
-
if ( (*p) < 65 ) {
|
2565
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
2566
|
-
goto st91;
|
2567
|
-
} else if ( (*p) > 90 ) {
|
2568
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2569
|
-
goto tr185;
|
2570
|
-
} else
|
2571
|
-
goto tr185;
|
2572
|
-
goto tr173;
|
2573
|
-
tr185:
|
2574
|
-
#line 1 "wikitext_ragel.rl"
|
2575
|
-
{te = p+1;}
|
2576
|
-
#line 281 "wikitext_ragel.rl"
|
2577
|
-
{act = 20;}
|
2578
|
-
goto st133;
|
2579
|
-
st133:
|
2580
|
-
if ( ++p == pe )
|
2581
|
-
goto _test_eof133;
|
2582
|
-
case 133:
|
2583
|
-
#line 2584 "wikitext_ragel.c"
|
2584
|
-
if ( (*p) == 46 )
|
2585
|
-
goto st92;
|
2586
|
-
if ( (*p) < 65 ) {
|
2587
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
2588
|
-
goto st91;
|
2589
|
-
} else if ( (*p) > 90 ) {
|
2590
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2591
|
-
goto st91;
|
2592
|
-
} else
|
2593
|
-
goto st91;
|
2594
|
-
goto tr173;
|
2595
|
-
tr130:
|
2596
|
-
#line 1 "wikitext_ragel.rl"
|
2597
|
-
{te = p+1;}
|
2598
|
-
#line 420 "wikitext_ragel.rl"
|
2599
|
-
{act = 42;}
|
2600
|
-
goto st134;
|
2601
|
-
st134:
|
2602
|
-
if ( ++p == pe )
|
2603
|
-
goto _test_eof134;
|
2604
|
-
case 134:
|
2605
|
-
#line 2606 "wikitext_ragel.c"
|
2606
|
-
switch( (*p) ) {
|
2607
|
-
case 64: goto st21;
|
2608
|
-
case 86: goto tr186;
|
2609
|
-
case 95: goto st20;
|
2610
|
-
case 118: goto tr186;
|
2611
|
-
}
|
2612
|
-
if ( (*p) < 48 ) {
|
2613
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2614
|
-
goto st20;
|
2615
|
-
} else if ( (*p) > 57 ) {
|
2616
|
-
if ( (*p) > 90 ) {
|
2617
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2618
|
-
goto tr123;
|
2619
|
-
} else if ( (*p) >= 65 )
|
2620
|
-
goto tr123;
|
2621
|
-
} else
|
2622
|
-
goto tr123;
|
2623
|
-
goto tr157;
|
2624
|
-
tr186:
|
2625
|
-
#line 1 "wikitext_ragel.rl"
|
2626
|
-
{te = p+1;}
|
2627
|
-
#line 420 "wikitext_ragel.rl"
|
2628
|
-
{act = 42;}
|
2629
|
-
goto st135;
|
2630
|
-
st135:
|
2631
|
-
if ( ++p == pe )
|
2632
|
-
goto _test_eof135;
|
2633
|
-
case 135:
|
2634
|
-
#line 2635 "wikitext_ragel.c"
|
2635
|
-
switch( (*p) ) {
|
2636
|
-
case 64: goto st21;
|
2637
|
-
case 78: goto tr171;
|
2638
|
-
case 95: goto st20;
|
2639
|
-
case 110: goto tr171;
|
2640
|
-
}
|
2641
|
-
if ( (*p) < 48 ) {
|
2642
|
-
if ( 45 <= (*p) && (*p) <= 46 )
|
2643
|
-
goto st20;
|
2644
|
-
} else if ( (*p) > 57 ) {
|
2645
|
-
if ( (*p) > 90 ) {
|
2646
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2647
|
-
goto tr123;
|
2648
|
-
} else if ( (*p) >= 65 )
|
2649
|
-
goto tr123;
|
2650
|
-
} else
|
2651
|
-
goto tr123;
|
2652
|
-
goto tr157;
|
2653
|
-
st136:
|
2654
|
-
if ( ++p == pe )
|
2655
|
-
goto _test_eof136;
|
2656
|
-
case 136:
|
2657
|
-
if ( (*p) == 91 )
|
2658
|
-
goto tr188;
|
2659
|
-
goto tr187;
|
2660
|
-
st137:
|
2661
|
-
if ( ++p == pe )
|
2662
|
-
goto _test_eof137;
|
2663
|
-
case 137:
|
2664
|
-
if ( (*p) == 93 )
|
2665
|
-
goto tr190;
|
2666
|
-
goto tr189;
|
2667
|
-
st138:
|
2668
|
-
if ( ++p == pe )
|
2669
|
-
goto _test_eof138;
|
2670
|
-
case 138:
|
2671
|
-
if ( (*p) == 123 )
|
2672
|
-
goto tr192;
|
2673
|
-
goto tr191;
|
2674
|
-
st139:
|
2675
|
-
if ( ++p == pe )
|
2676
|
-
goto _test_eof139;
|
2677
|
-
case 139:
|
2678
|
-
if ( (*p) == 125 )
|
2679
|
-
goto tr194;
|
2680
|
-
goto tr193;
|
2681
|
-
}
|
2682
|
-
_test_eof94: cs = 94; goto _test_eof;
|
2683
|
-
_test_eof1: cs = 1; goto _test_eof;
|
2684
|
-
_test_eof2: cs = 2; goto _test_eof;
|
2685
|
-
_test_eof3: cs = 3; goto _test_eof;
|
2686
|
-
_test_eof4: cs = 4; goto _test_eof;
|
2687
|
-
_test_eof5: cs = 5; goto _test_eof;
|
2688
|
-
_test_eof6: cs = 6; goto _test_eof;
|
2689
|
-
_test_eof95: cs = 95; goto _test_eof;
|
2690
|
-
_test_eof96: cs = 96; goto _test_eof;
|
2691
|
-
_test_eof97: cs = 97; goto _test_eof;
|
2692
|
-
_test_eof98: cs = 98; goto _test_eof;
|
2693
|
-
_test_eof99: cs = 99; goto _test_eof;
|
2694
|
-
_test_eof7: cs = 7; goto _test_eof;
|
2695
|
-
_test_eof8: cs = 8; goto _test_eof;
|
2696
|
-
_test_eof9: cs = 9; goto _test_eof;
|
2697
|
-
_test_eof10: cs = 10; goto _test_eof;
|
2698
|
-
_test_eof11: cs = 11; goto _test_eof;
|
2699
|
-
_test_eof12: cs = 12; goto _test_eof;
|
2700
|
-
_test_eof13: cs = 13; goto _test_eof;
|
2701
|
-
_test_eof14: cs = 14; goto _test_eof;
|
2702
|
-
_test_eof15: cs = 15; goto _test_eof;
|
2703
|
-
_test_eof16: cs = 16; goto _test_eof;
|
2704
|
-
_test_eof17: cs = 17; goto _test_eof;
|
2705
|
-
_test_eof18: cs = 18; goto _test_eof;
|
2706
|
-
_test_eof19: cs = 19; goto _test_eof;
|
2707
|
-
_test_eof100: cs = 100; goto _test_eof;
|
2708
|
-
_test_eof101: cs = 101; goto _test_eof;
|
2709
|
-
_test_eof102: cs = 102; goto _test_eof;
|
2710
|
-
_test_eof103: cs = 103; goto _test_eof;
|
2711
|
-
_test_eof104: cs = 104; goto _test_eof;
|
2712
|
-
_test_eof20: cs = 20; goto _test_eof;
|
2713
|
-
_test_eof21: cs = 21; goto _test_eof;
|
2714
|
-
_test_eof22: cs = 22; goto _test_eof;
|
2715
|
-
_test_eof23: cs = 23; goto _test_eof;
|
2716
|
-
_test_eof24: cs = 24; goto _test_eof;
|
2717
|
-
_test_eof105: cs = 105; goto _test_eof;
|
2718
|
-
_test_eof106: cs = 106; goto _test_eof;
|
2719
|
-
_test_eof107: cs = 107; goto _test_eof;
|
2720
|
-
_test_eof108: cs = 108; goto _test_eof;
|
2721
|
-
_test_eof109: cs = 109; goto _test_eof;
|
2722
|
-
_test_eof110: cs = 110; goto _test_eof;
|
2723
|
-
_test_eof111: cs = 111; goto _test_eof;
|
2724
|
-
_test_eof112: cs = 112; goto _test_eof;
|
2725
|
-
_test_eof25: cs = 25; goto _test_eof;
|
2726
|
-
_test_eof26: cs = 26; goto _test_eof;
|
2727
|
-
_test_eof27: cs = 27; goto _test_eof;
|
2728
|
-
_test_eof28: cs = 28; goto _test_eof;
|
2729
|
-
_test_eof29: cs = 29; goto _test_eof;
|
2730
|
-
_test_eof30: cs = 30; goto _test_eof;
|
2731
|
-
_test_eof31: cs = 31; goto _test_eof;
|
2732
|
-
_test_eof32: cs = 32; goto _test_eof;
|
2733
|
-
_test_eof33: cs = 33; goto _test_eof;
|
2734
|
-
_test_eof34: cs = 34; goto _test_eof;
|
2735
|
-
_test_eof35: cs = 35; goto _test_eof;
|
2736
|
-
_test_eof36: cs = 36; goto _test_eof;
|
2737
|
-
_test_eof37: cs = 37; goto _test_eof;
|
2738
|
-
_test_eof38: cs = 38; goto _test_eof;
|
2739
|
-
_test_eof39: cs = 39; goto _test_eof;
|
2740
|
-
_test_eof40: cs = 40; goto _test_eof;
|
2741
|
-
_test_eof41: cs = 41; goto _test_eof;
|
2742
|
-
_test_eof42: cs = 42; goto _test_eof;
|
2743
|
-
_test_eof43: cs = 43; goto _test_eof;
|
2744
|
-
_test_eof44: cs = 44; goto _test_eof;
|
2745
|
-
_test_eof45: cs = 45; goto _test_eof;
|
2746
|
-
_test_eof46: cs = 46; goto _test_eof;
|
2747
|
-
_test_eof47: cs = 47; goto _test_eof;
|
2748
|
-
_test_eof48: cs = 48; goto _test_eof;
|
2749
|
-
_test_eof49: cs = 49; goto _test_eof;
|
2750
|
-
_test_eof50: cs = 50; goto _test_eof;
|
2751
|
-
_test_eof51: cs = 51; goto _test_eof;
|
2752
|
-
_test_eof52: cs = 52; goto _test_eof;
|
2753
|
-
_test_eof53: cs = 53; goto _test_eof;
|
2754
|
-
_test_eof54: cs = 54; goto _test_eof;
|
2755
|
-
_test_eof55: cs = 55; goto _test_eof;
|
2756
|
-
_test_eof56: cs = 56; goto _test_eof;
|
2757
|
-
_test_eof57: cs = 57; goto _test_eof;
|
2758
|
-
_test_eof58: cs = 58; goto _test_eof;
|
2759
|
-
_test_eof59: cs = 59; goto _test_eof;
|
2760
|
-
_test_eof60: cs = 60; goto _test_eof;
|
2761
|
-
_test_eof61: cs = 61; goto _test_eof;
|
2762
|
-
_test_eof62: cs = 62; goto _test_eof;
|
2763
|
-
_test_eof63: cs = 63; goto _test_eof;
|
2764
|
-
_test_eof64: cs = 64; goto _test_eof;
|
2765
|
-
_test_eof65: cs = 65; goto _test_eof;
|
2766
|
-
_test_eof66: cs = 66; goto _test_eof;
|
2767
|
-
_test_eof67: cs = 67; goto _test_eof;
|
2768
|
-
_test_eof68: cs = 68; goto _test_eof;
|
2769
|
-
_test_eof69: cs = 69; goto _test_eof;
|
2770
|
-
_test_eof70: cs = 70; goto _test_eof;
|
2771
|
-
_test_eof71: cs = 71; goto _test_eof;
|
2772
|
-
_test_eof72: cs = 72; goto _test_eof;
|
2773
|
-
_test_eof73: cs = 73; goto _test_eof;
|
2774
|
-
_test_eof74: cs = 74; goto _test_eof;
|
2775
|
-
_test_eof75: cs = 75; goto _test_eof;
|
2776
|
-
_test_eof76: cs = 76; goto _test_eof;
|
2777
|
-
_test_eof77: cs = 77; goto _test_eof;
|
2778
|
-
_test_eof78: cs = 78; goto _test_eof;
|
2779
|
-
_test_eof79: cs = 79; goto _test_eof;
|
2780
|
-
_test_eof80: cs = 80; goto _test_eof;
|
2781
|
-
_test_eof81: cs = 81; goto _test_eof;
|
2782
|
-
_test_eof82: cs = 82; goto _test_eof;
|
2783
|
-
_test_eof83: cs = 83; goto _test_eof;
|
2784
|
-
_test_eof113: cs = 113; goto _test_eof;
|
2785
|
-
_test_eof114: cs = 114; goto _test_eof;
|
2786
|
-
_test_eof115: cs = 115; goto _test_eof;
|
2787
|
-
_test_eof116: cs = 116; goto _test_eof;
|
2788
|
-
_test_eof117: cs = 117; goto _test_eof;
|
2789
|
-
_test_eof118: cs = 118; goto _test_eof;
|
2790
|
-
_test_eof84: cs = 84; goto _test_eof;
|
2791
|
-
_test_eof85: cs = 85; goto _test_eof;
|
2792
|
-
_test_eof86: cs = 86; goto _test_eof;
|
2793
|
-
_test_eof119: cs = 119; goto _test_eof;
|
2794
|
-
_test_eof87: cs = 87; goto _test_eof;
|
2795
|
-
_test_eof120: cs = 120; goto _test_eof;
|
2796
|
-
_test_eof121: cs = 121; goto _test_eof;
|
2797
|
-
_test_eof122: cs = 122; goto _test_eof;
|
2798
|
-
_test_eof123: cs = 123; goto _test_eof;
|
2799
|
-
_test_eof124: cs = 124; goto _test_eof;
|
2800
|
-
_test_eof125: cs = 125; goto _test_eof;
|
2801
|
-
_test_eof126: cs = 126; goto _test_eof;
|
2802
|
-
_test_eof127: cs = 127; goto _test_eof;
|
2803
|
-
_test_eof128: cs = 128; goto _test_eof;
|
2804
|
-
_test_eof129: cs = 129; goto _test_eof;
|
2805
|
-
_test_eof88: cs = 88; goto _test_eof;
|
2806
|
-
_test_eof89: cs = 89; goto _test_eof;
|
2807
|
-
_test_eof90: cs = 90; goto _test_eof;
|
2808
|
-
_test_eof91: cs = 91; goto _test_eof;
|
2809
|
-
_test_eof92: cs = 92; goto _test_eof;
|
2810
|
-
_test_eof93: cs = 93; goto _test_eof;
|
2811
|
-
_test_eof130: cs = 130; goto _test_eof;
|
2812
|
-
_test_eof131: cs = 131; goto _test_eof;
|
2813
|
-
_test_eof132: cs = 132; goto _test_eof;
|
2814
|
-
_test_eof133: cs = 133; goto _test_eof;
|
2815
|
-
_test_eof134: cs = 134; goto _test_eof;
|
2816
|
-
_test_eof135: cs = 135; goto _test_eof;
|
2817
|
-
_test_eof136: cs = 136; goto _test_eof;
|
2818
|
-
_test_eof137: cs = 137; goto _test_eof;
|
2819
|
-
_test_eof138: cs = 138; goto _test_eof;
|
2820
|
-
_test_eof139: cs = 139; goto _test_eof;
|
2821
|
-
|
2822
|
-
_test_eof: {}
|
2823
|
-
if ( p == eof )
|
2824
|
-
{
|
2825
|
-
switch ( cs ) {
|
2826
|
-
case 95: goto tr137;
|
2827
|
-
case 96: goto tr139;
|
2828
|
-
case 97: goto tr141;
|
2829
|
-
case 98: goto tr142;
|
2830
|
-
case 99: goto tr143;
|
2831
|
-
case 7: goto tr7;
|
2832
|
-
case 8: goto tr7;
|
2833
|
-
case 9: goto tr7;
|
2834
|
-
case 10: goto tr7;
|
2835
|
-
case 11: goto tr7;
|
2836
|
-
case 12: goto tr7;
|
2837
|
-
case 13: goto tr7;
|
2838
|
-
case 14: goto tr7;
|
2839
|
-
case 15: goto tr7;
|
2840
|
-
case 16: goto tr7;
|
2841
|
-
case 17: goto tr7;
|
2842
|
-
case 18: goto tr7;
|
2843
|
-
case 19: goto tr7;
|
2844
|
-
case 100: goto tr147;
|
2845
|
-
case 101: goto tr147;
|
2846
|
-
case 102: goto tr147;
|
2847
|
-
case 103: goto tr147;
|
2848
|
-
case 104: goto tr142;
|
2849
|
-
case 20: goto tr23;
|
2850
|
-
case 21: goto tr23;
|
2851
|
-
case 22: goto tr23;
|
2852
|
-
case 23: goto tr23;
|
2853
|
-
case 24: goto tr23;
|
2854
|
-
case 105: goto tr153;
|
2855
|
-
case 106: goto tr153;
|
2856
|
-
case 107: goto tr153;
|
2857
|
-
case 108: goto tr153;
|
2858
|
-
case 109: goto tr142;
|
2859
|
-
case 110: goto tr141;
|
2860
|
-
case 111: goto tr157;
|
2861
|
-
case 112: goto tr158;
|
2862
|
-
case 25: goto tr30;
|
2863
|
-
case 26: goto tr30;
|
2864
|
-
case 27: goto tr30;
|
2865
|
-
case 28: goto tr30;
|
2866
|
-
case 29: goto tr30;
|
2867
|
-
case 30: goto tr30;
|
2868
|
-
case 31: goto tr30;
|
2869
|
-
case 32: goto tr30;
|
2870
|
-
case 33: goto tr30;
|
2871
|
-
case 34: goto tr30;
|
2872
|
-
case 35: goto tr30;
|
2873
|
-
case 36: goto tr30;
|
2874
|
-
case 37: goto tr30;
|
2875
|
-
case 38: goto tr30;
|
2876
|
-
case 39: goto tr30;
|
2877
|
-
case 40: goto tr30;
|
2878
|
-
case 41: goto tr30;
|
2879
|
-
case 42: goto tr30;
|
2880
|
-
case 43: goto tr30;
|
2881
|
-
case 44: goto tr30;
|
2882
|
-
case 45: goto tr30;
|
2883
|
-
case 46: goto tr30;
|
2884
|
-
case 47: goto tr30;
|
2885
|
-
case 48: goto tr30;
|
2886
|
-
case 49: goto tr30;
|
2887
|
-
case 50: goto tr30;
|
2888
|
-
case 51: goto tr30;
|
2889
|
-
case 52: goto tr30;
|
2890
|
-
case 53: goto tr30;
|
2891
|
-
case 54: goto tr30;
|
2892
|
-
case 55: goto tr30;
|
2893
|
-
case 56: goto tr30;
|
2894
|
-
case 57: goto tr30;
|
2895
|
-
case 58: goto tr30;
|
2896
|
-
case 59: goto tr30;
|
2897
|
-
case 60: goto tr30;
|
2898
|
-
case 61: goto tr30;
|
2899
|
-
case 62: goto tr30;
|
2900
|
-
case 63: goto tr30;
|
2901
|
-
case 64: goto tr30;
|
2902
|
-
case 65: goto tr30;
|
2903
|
-
case 66: goto tr30;
|
2904
|
-
case 67: goto tr30;
|
2905
|
-
case 68: goto tr30;
|
2906
|
-
case 69: goto tr30;
|
2907
|
-
case 70: goto tr30;
|
2908
|
-
case 71: goto tr30;
|
2909
|
-
case 72: goto tr30;
|
2910
|
-
case 73: goto tr30;
|
2911
|
-
case 74: goto tr30;
|
2912
|
-
case 75: goto tr30;
|
2913
|
-
case 76: goto tr30;
|
2914
|
-
case 77: goto tr30;
|
2915
|
-
case 78: goto tr30;
|
2916
|
-
case 79: goto tr30;
|
2917
|
-
case 80: goto tr30;
|
2918
|
-
case 81: goto tr30;
|
2919
|
-
case 82: goto tr30;
|
2920
|
-
case 83: goto tr30;
|
2921
|
-
case 113: goto tr166;
|
2922
|
-
case 114: goto tr166;
|
2923
|
-
case 115: goto tr168;
|
2924
|
-
case 116: goto tr157;
|
2925
|
-
case 117: goto tr157;
|
2926
|
-
case 118: goto tr157;
|
2927
|
-
case 84: goto tr95;
|
2928
|
-
case 85: goto tr95;
|
2929
|
-
case 86: goto tr95;
|
2930
|
-
case 119: goto tr173;
|
2931
|
-
case 87: goto tr99;
|
2932
|
-
case 120: goto tr157;
|
2933
|
-
case 121: goto tr157;
|
2934
|
-
case 122: goto tr157;
|
2935
|
-
case 123: goto tr157;
|
2936
|
-
case 124: goto tr157;
|
2937
|
-
case 125: goto tr157;
|
2938
|
-
case 126: goto tr157;
|
2939
|
-
case 127: goto tr157;
|
2940
|
-
case 128: goto tr157;
|
2941
|
-
case 129: goto tr157;
|
2942
|
-
case 88: goto tr95;
|
2943
|
-
case 89: goto tr95;
|
2944
|
-
case 90: goto tr95;
|
2945
|
-
case 91: goto tr23;
|
2946
|
-
case 92: goto tr23;
|
2947
|
-
case 93: goto tr23;
|
2948
|
-
case 130: goto tr173;
|
2949
|
-
case 131: goto tr173;
|
2950
|
-
case 132: goto tr173;
|
2951
|
-
case 133: goto tr173;
|
2952
|
-
case 134: goto tr157;
|
2953
|
-
case 135: goto tr157;
|
2954
|
-
case 136: goto tr187;
|
2955
|
-
case 137: goto tr189;
|
2956
|
-
case 138: goto tr191;
|
2957
|
-
case 139: goto tr193;
|
2958
|
-
}
|
2959
|
-
}
|
2960
|
-
|
2961
|
-
_out: {}
|
2962
|
-
}
|
2963
|
-
#line 504 "wikitext_ragel.rl"
|
2964
|
-
if (cs == wikitext_error)
|
2965
|
-
rb_raise(eWikitextParserError, "failed before finding a token");
|
2966
|
-
else if (out->type == NO_TOKEN)
|
2967
|
-
rb_raise(eWikitextParserError, "failed to produce a token");
|
2968
|
-
}
|