rpeg-markdown 0.2.0 → 1.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/README.markdown +49 -0
- data/Rakefile +16 -12
- data/ext/extconf.rb +2 -4
- data/ext/markdown.c +9 -17
- data/ext/markdown_lib.h +4 -2
- data/ext/markdown_parser.c +1431 -1344
- data/lib/markdown.rb +1 -41
- data/lib/peg_markdown.rb +59 -0
- data/test/markdown_test.rb +2 -0
- metadata +6 -6
- data/README +0 -38
data/README.markdown
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
Ruby PEG Markdown
|
2
|
+
=================
|
3
|
+
|
4
|
+
An extension library around [John MacFarlane's fast implementation][1]
|
5
|
+
of Markdown in C.
|
6
|
+
|
7
|
+
[1]: http://github.com/jgm/peg-markdown/
|
8
|
+
|
9
|
+
Synopsis
|
10
|
+
--------
|
11
|
+
|
12
|
+
>> require 'markdown'
|
13
|
+
>> puts Markdown.new('Hello, world.').to_html
|
14
|
+
<p>Hello, world.</p>
|
15
|
+
|
16
|
+
>> puts Markdown.new('_Hello World!_', :smart, :filter_html).to_html
|
17
|
+
<p><em>Hello World!</em></p>
|
18
|
+
|
19
|
+
>> PEGMarkdown.new('Hello! World!')
|
20
|
+
|
21
|
+
Installation / Hacking
|
22
|
+
----------------------
|
23
|
+
|
24
|
+
This library requires a recent version of glib2. All modern GNU userland
|
25
|
+
systems should be fine.
|
26
|
+
|
27
|
+
Install from GEM:
|
28
|
+
|
29
|
+
$ sudo gem install rpeg-markdown
|
30
|
+
|
31
|
+
Hacking:
|
32
|
+
|
33
|
+
$ git clone git://github.com/rtomayko/rpeg-markdown.git
|
34
|
+
$ cd rpeg-markdown
|
35
|
+
$ rake test
|
36
|
+
|
37
|
+
Patches happily accepted via fork or email.
|
38
|
+
|
39
|
+
Changes
|
40
|
+
-------
|
41
|
+
|
42
|
+
http://github.com/rtomayko/addons/tree/v1.0
|
43
|
+
|
44
|
+
COPYING
|
45
|
+
-------
|
46
|
+
|
47
|
+
The peg-markdown sources are licensed under the GPL and the Ruby PEG Markdown
|
48
|
+
extension sources adopts this license. See the file LICENSE included with this
|
49
|
+
distribution for more information.
|
data/Rakefile
CHANGED
@@ -5,15 +5,15 @@ require 'rake/gempackagetask'
|
|
5
5
|
task :default => :test
|
6
6
|
|
7
7
|
DLEXT = Config::CONFIG['DLEXT']
|
8
|
-
VERS = '
|
8
|
+
VERS = '1.0'
|
9
9
|
|
10
10
|
spec =
|
11
11
|
Gem::Specification.new do |s|
|
12
12
|
s.name = "rpeg-markdown"
|
13
13
|
s.version = VERS
|
14
|
-
s.summary = "
|
14
|
+
s.summary = "Fast Markdown implementation"
|
15
15
|
s.files = FileList[
|
16
|
-
'README','LICENSE','Rakefile',
|
16
|
+
'README.markdown','LICENSE','Rakefile',
|
17
17
|
'{lib,ext,test}/**.rb','ext/*.{c,h}',
|
18
18
|
'test/MarkdownTest*/**/*',
|
19
19
|
'bin/rpeg-markdown'
|
@@ -22,7 +22,7 @@ spec =
|
|
22
22
|
s.executables << 'rpeg-markdown'
|
23
23
|
s.require_path = 'lib'
|
24
24
|
s.has_rdoc = true
|
25
|
-
s.extra_rdoc_files = ['
|
25
|
+
s.extra_rdoc_files = ['LICENSE']
|
26
26
|
s.test_files = FileList['test/markdown_test.rb']
|
27
27
|
s.extensions = ['ext/extconf.rb']
|
28
28
|
|
@@ -78,17 +78,18 @@ file 'ext/Makefile' => FileList['ext/{extconf.rb,*.c,*.h,*.rb}'] do
|
|
78
78
|
end
|
79
79
|
CLEAN.include 'ext/Makefile'
|
80
80
|
|
81
|
-
file "ext/
|
81
|
+
file "ext/peg_markdown.#{DLEXT}" => FileList['ext/Makefile', 'ext/*.{c,h,rb}'] do |f|
|
82
82
|
sh 'cd ext && make'
|
83
83
|
end
|
84
84
|
CLEAN.include 'ext/*.{o,bundle,so}'
|
85
85
|
|
86
|
-
file "lib/
|
86
|
+
file "lib/peg_markdown.#{DLEXT}" => "ext/peg_markdown.#{DLEXT}" do |f|
|
87
87
|
cp f.prerequisites, "lib/", :preserve => true
|
88
88
|
end
|
89
|
+
CLEAN.include "lib/*.{so,bundle}"
|
89
90
|
|
90
|
-
desc 'Build the
|
91
|
-
task :build => "lib/
|
91
|
+
desc 'Build the peg_markdown extension'
|
92
|
+
task :build => "lib/peg_markdown.#{DLEXT}"
|
92
93
|
|
93
94
|
desc 'Run unit and conformance tests'
|
94
95
|
task :test => [ 'test:unit', 'test:conformance' ]
|
@@ -98,17 +99,20 @@ task 'test:unit' => [:build] do |t|
|
|
98
99
|
ruby 'test/markdown_test.rb'
|
99
100
|
end
|
100
101
|
|
101
|
-
desc
|
102
|
+
desc "Run conformance tests (MARKDOWN_TEST_VER=#{ENV['MARKDOWN_TEST_VER'] ||= '1.0.3'})"
|
102
103
|
task 'test:conformance' => [:build] do |t|
|
103
104
|
script = "#{pwd}/bin/rpeg-markdown"
|
104
|
-
test_version = ENV['MARKDOWN_TEST_VER']
|
105
|
+
test_version = ENV['MARKDOWN_TEST_VER']
|
105
106
|
chdir("test/MarkdownTest_#{test_version}") do
|
106
107
|
sh "./MarkdownTest.pl --script='#{script}' --tidy"
|
107
108
|
end
|
108
109
|
end
|
109
110
|
|
110
111
|
desc 'Run version 1.0 conformance suite'
|
111
|
-
task 'test:conformance:1.0' =>
|
112
|
+
task 'test:conformance:1.0' => [:build] do
|
113
|
+
ENV['MARKDOWN_TEST_VER'] = '1.0'
|
114
|
+
Rake::Task['test:conformance'].invoke
|
115
|
+
end
|
112
116
|
|
113
117
|
desc 'Run 1.0.3 conformance suite'
|
114
118
|
task 'test:conformance:1.0.3' => [:build] do |t|
|
@@ -129,7 +133,7 @@ desc "See how much memory we're losing"
|
|
129
133
|
task 'test:mem' => %w[submodule:exist build] do |t|
|
130
134
|
$: << File.join(File.dirname(__FILE__), "lib")
|
131
135
|
require 'markdown'
|
132
|
-
FileList['test.txt', 'peg-markdown/MarkdownTest_1.0.3/Tests/*.text'].each do |file|
|
136
|
+
FileList['test/mem.txt', 'peg-markdown/MarkdownTest_1.0.3/Tests/*.text'].each do |file|
|
133
137
|
printf "%s: \n", file
|
134
138
|
markdown = Markdown.new(File.read(file))
|
135
139
|
iterations = (ENV['N'] || 100).to_i
|
data/ext/extconf.rb
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
require 'mkmf'
|
2
2
|
|
3
|
-
dir_config('
|
4
|
-
|
5
|
-
require 'pp'
|
3
|
+
dir_config('peg_markdown')
|
6
4
|
|
7
5
|
$objs = %w[markdown.o markdown_lib.o markdown_output.o markdown_parser.o]
|
8
6
|
|
@@ -14,4 +12,4 @@ else
|
|
14
12
|
end
|
15
13
|
|
16
14
|
create_header
|
17
|
-
create_makefile('
|
15
|
+
create_makefile('peg_markdown')
|
data/ext/markdown.c
CHANGED
@@ -3,27 +3,24 @@
|
|
3
3
|
|
4
4
|
static VALUE rb_cMarkdown;
|
5
5
|
|
6
|
-
static ID id_text;
|
7
|
-
static ID id_smart;
|
8
|
-
static ID id_notes;
|
9
|
-
|
10
|
-
#define TABSTOP 4
|
11
|
-
#define INCREMENT 4096 /* size of chunks in which to allocate memory */
|
12
|
-
|
13
6
|
static VALUE
|
14
7
|
rb_markdown_to_html(int argc, VALUE *argv, VALUE self)
|
15
8
|
{
|
16
9
|
/* grab char pointer to markdown input text */
|
17
|
-
VALUE text = rb_funcall(self,
|
10
|
+
VALUE text = rb_funcall(self, rb_intern("text"), 0);
|
18
11
|
Check_Type(text, T_STRING);
|
19
12
|
char * ptext = StringValuePtr(text);
|
20
13
|
|
21
14
|
/* flip extension bits */
|
22
15
|
int extensions = 0;
|
23
|
-
if ( rb_funcall(self,
|
16
|
+
if ( rb_funcall(self, rb_intern("smart"), 0) == Qtrue )
|
24
17
|
extensions = extensions | EXT_SMART ;
|
25
|
-
if ( rb_funcall(self,
|
18
|
+
if ( rb_funcall(self, rb_intern("notes"), 0) == Qtrue )
|
26
19
|
extensions = extensions | EXT_NOTES ;
|
20
|
+
if ( rb_funcall(self, rb_intern("filter_html"), 0) == Qtrue )
|
21
|
+
extensions = extensions | EXT_FILTER_HTML ;
|
22
|
+
if ( rb_funcall(self, rb_intern("filter_styles"), 0) == Qtrue )
|
23
|
+
extensions = extensions | EXT_FILTER_STYLES ;
|
27
24
|
|
28
25
|
char *html = markdown_to_string(ptext, extensions, HTML_FORMAT);
|
29
26
|
VALUE result = rb_str_new2(html);
|
@@ -32,14 +29,9 @@ rb_markdown_to_html(int argc, VALUE *argv, VALUE self)
|
|
32
29
|
return result;
|
33
30
|
}
|
34
31
|
|
35
|
-
void
|
32
|
+
void Init_peg_markdown()
|
36
33
|
{
|
37
|
-
|
38
|
-
id_text = rb_intern("text");
|
39
|
-
id_smart = rb_intern("smart");
|
40
|
-
id_notes = rb_intern("notes");
|
41
|
-
|
42
|
-
rb_cMarkdown = rb_define_class("Markdown", rb_cObject);
|
34
|
+
rb_cMarkdown = rb_define_class("PEGMarkdown", rb_cObject);
|
43
35
|
rb_define_method(rb_cMarkdown, "to_html", rb_markdown_to_html, -1);
|
44
36
|
}
|
45
37
|
|
data/ext/markdown_lib.h
CHANGED
data/ext/markdown_parser.c
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
#include <stdio.h>
|
4
4
|
#include <stdlib.h>
|
5
5
|
#include <string.h>
|
6
|
-
#define YYRULECOUNT
|
6
|
+
#define YYRULECOUNT 212
|
7
7
|
|
8
8
|
/**********************************************************************
|
9
9
|
|
@@ -243,201 +243,205 @@ YY_LOCAL(void) yySet(char *text, int count) { yyval[count]= yy; }
|
|
243
243
|
|
244
244
|
#define YYACCEPT yyAccept(yythunkpos0)
|
245
245
|
|
246
|
-
YY_RULE(int) yy_Notes(); /*
|
247
|
-
YY_RULE(int) yy_RawNoteBlock(); /*
|
248
|
-
YY_RULE(int) yy_RawNoteReference(); /*
|
249
|
-
YY_RULE(int) yy_DoubleQuoteEnd(); /*
|
250
|
-
YY_RULE(int) yy_DoubleQuoteStart(); /*
|
251
|
-
YY_RULE(int) yy_SingleQuoteEnd(); /*
|
252
|
-
YY_RULE(int) yy_SingleQuoteStart(); /*
|
253
|
-
YY_RULE(int) yy_EnDash(); /*
|
254
|
-
YY_RULE(int) yy_EmDash(); /*
|
255
|
-
YY_RULE(int) yy_Apostrophe(); /*
|
256
|
-
YY_RULE(int) yy_DoubleQuoted(); /*
|
257
|
-
YY_RULE(int) yy_SingleQuoted(); /*
|
258
|
-
YY_RULE(int) yy_Dash(); /*
|
259
|
-
YY_RULE(int) yy_Ellipsis(); /*
|
260
|
-
YY_RULE(int) yy_RawLine(); /*
|
261
|
-
YY_RULE(int) yy_Digit(); /*
|
262
|
-
YY_RULE(int) yy_ExtendedSpecialChar(); /*
|
263
|
-
YY_RULE(int) yy_Quoted(); /*
|
264
|
-
YY_RULE(int) yy_HtmlTag(); /*
|
265
|
-
YY_RULE(int) yy_Ticks5(); /*
|
266
|
-
YY_RULE(int) yy_Ticks4(); /*
|
267
|
-
YY_RULE(int) yy_Ticks3(); /*
|
268
|
-
YY_RULE(int) yy_Ticks2(); /*
|
269
|
-
YY_RULE(int) yy_Ticks1(); /*
|
270
|
-
YY_RULE(int) yy_SkipBlock(); /*
|
271
|
-
YY_RULE(int) yy_References(); /*
|
272
|
-
YY_RULE(int) yy_EmptyTitle(); /*
|
273
|
-
YY_RULE(int) yy_RefTitleParens(); /*
|
274
|
-
YY_RULE(int) yy_RefTitleDouble(); /*
|
275
|
-
YY_RULE(int) yy_RefTitleSingle(); /*
|
276
|
-
YY_RULE(int) yy_RefTitle(); /*
|
277
|
-
YY_RULE(int) yy_RefSrc(); /*
|
278
|
-
YY_RULE(int) yy_AutoLinkEmail(); /*
|
279
|
-
YY_RULE(int) yy_AutoLinkUrl(); /*
|
280
|
-
YY_RULE(int) yy_TitleDouble(); /*
|
281
|
-
YY_RULE(int) yy_TitleSingle(); /*
|
282
|
-
YY_RULE(int) yy_Nonspacechar(); /*
|
283
|
-
YY_RULE(int) yy_SourceContents(); /*
|
284
|
-
YY_RULE(int) yy_Title(); /*
|
285
|
-
YY_RULE(int) yy_Source(); /*
|
286
|
-
YY_RULE(int) yy_Label(); /*
|
287
|
-
YY_RULE(int) yy_ReferenceLinkSingle(); /*
|
288
|
-
YY_RULE(int) yy_ReferenceLinkDouble(); /*
|
289
|
-
YY_RULE(int) yy_AutoLink(); /*
|
290
|
-
YY_RULE(int) yy_ReferenceLink(); /*
|
291
|
-
YY_RULE(int) yy_ExplicitLink(); /*
|
292
|
-
YY_RULE(int) yy_TwoUlClose(); /*
|
293
|
-
YY_RULE(int) yy_TwoUlOpen(); /*
|
294
|
-
YY_RULE(int) yy_TwoStarClose(); /*
|
295
|
-
YY_RULE(int) yy_TwoStarOpen(); /*
|
296
|
-
YY_RULE(int) yy_Alphanumeric(); /*
|
297
|
-
YY_RULE(int) yy_StrongUl(); /*
|
298
|
-
YY_RULE(int) yy_OneUlClose(); /*
|
299
|
-
YY_RULE(int) yy_OneUlOpen(); /*
|
300
|
-
YY_RULE(int) yy_StrongStar(); /*
|
301
|
-
YY_RULE(int) yy_OneStarClose(); /*
|
302
|
-
YY_RULE(int) yy_OneStarOpen(); /*
|
303
|
-
YY_RULE(int) yy_EmphUl(); /*
|
304
|
-
YY_RULE(int) yy_EmphStar(); /*
|
305
|
-
YY_RULE(int) yy_StarLine(); /*
|
306
|
-
YY_RULE(int) yy_UlLine(); /*
|
307
|
-
YY_RULE(int) yy_SpecialChar(); /*
|
308
|
-
YY_RULE(int) yy_Eof(); /*
|
309
|
-
YY_RULE(int) yy_NormalEndline(); /*
|
310
|
-
YY_RULE(int) yy_TerminalEndline(); /*
|
311
|
-
YY_RULE(int) yy_CharEntity(); /*
|
312
|
-
YY_RULE(int) yy_DecEntity(); /*
|
313
|
-
YY_RULE(int) yy_HexEntity(); /*
|
314
|
-
YY_RULE(int) yy_NormalChar(); /*
|
315
|
-
YY_RULE(int) yy_Symbol(); /*
|
316
|
-
YY_RULE(int) yy_Smart(); /*
|
317
|
-
YY_RULE(int) yy_EscapedChar(); /*
|
318
|
-
YY_RULE(int) yy_Entity(); /*
|
319
|
-
YY_RULE(int) yy_RawHtml(); /*
|
320
|
-
YY_RULE(int) yy_Code(); /*
|
321
|
-
YY_RULE(int) yy_InlineNote(); /*
|
322
|
-
YY_RULE(int) yy_NoteReference(); /*
|
323
|
-
YY_RULE(int) yy_Link(); /*
|
324
|
-
YY_RULE(int) yy_Image(); /*
|
325
|
-
YY_RULE(int) yy_Emph(); /*
|
326
|
-
YY_RULE(int) yy_Strong(); /*
|
327
|
-
YY_RULE(int) yy_Space(); /*
|
328
|
-
YY_RULE(int) yy_UlOrStarLine(); /*
|
329
|
-
YY_RULE(int) yy_LineBreak(); /*
|
330
|
-
YY_RULE(int) yy_Str(); /*
|
331
|
-
YY_RULE(int)
|
332
|
-
YY_RULE(int)
|
333
|
-
YY_RULE(int)
|
334
|
-
YY_RULE(int)
|
335
|
-
YY_RULE(int)
|
336
|
-
YY_RULE(int)
|
337
|
-
YY_RULE(int)
|
338
|
-
YY_RULE(int)
|
339
|
-
YY_RULE(int)
|
340
|
-
YY_RULE(int)
|
341
|
-
YY_RULE(int)
|
342
|
-
YY_RULE(int)
|
343
|
-
YY_RULE(int)
|
344
|
-
YY_RULE(int)
|
345
|
-
YY_RULE(int)
|
346
|
-
YY_RULE(int)
|
347
|
-
YY_RULE(int)
|
348
|
-
YY_RULE(int)
|
349
|
-
YY_RULE(int)
|
350
|
-
YY_RULE(int)
|
351
|
-
YY_RULE(int)
|
352
|
-
YY_RULE(int)
|
353
|
-
YY_RULE(int)
|
354
|
-
YY_RULE(int)
|
355
|
-
YY_RULE(int)
|
356
|
-
YY_RULE(int)
|
357
|
-
YY_RULE(int)
|
358
|
-
YY_RULE(int)
|
359
|
-
YY_RULE(int)
|
360
|
-
YY_RULE(int)
|
361
|
-
YY_RULE(int)
|
362
|
-
YY_RULE(int)
|
363
|
-
YY_RULE(int)
|
364
|
-
YY_RULE(int)
|
365
|
-
YY_RULE(int)
|
366
|
-
YY_RULE(int)
|
367
|
-
YY_RULE(int)
|
368
|
-
YY_RULE(int)
|
369
|
-
YY_RULE(int)
|
370
|
-
YY_RULE(int)
|
371
|
-
YY_RULE(int)
|
372
|
-
YY_RULE(int)
|
373
|
-
YY_RULE(int)
|
374
|
-
YY_RULE(int)
|
375
|
-
YY_RULE(int)
|
376
|
-
YY_RULE(int)
|
377
|
-
YY_RULE(int)
|
378
|
-
YY_RULE(int)
|
379
|
-
YY_RULE(int)
|
380
|
-
YY_RULE(int)
|
381
|
-
YY_RULE(int)
|
382
|
-
YY_RULE(int)
|
383
|
-
YY_RULE(int)
|
384
|
-
YY_RULE(int)
|
385
|
-
YY_RULE(int)
|
386
|
-
YY_RULE(int)
|
387
|
-
YY_RULE(int)
|
388
|
-
YY_RULE(int)
|
389
|
-
YY_RULE(int)
|
390
|
-
YY_RULE(int)
|
391
|
-
YY_RULE(int)
|
392
|
-
YY_RULE(int)
|
393
|
-
YY_RULE(int)
|
394
|
-
YY_RULE(int)
|
395
|
-
YY_RULE(int)
|
396
|
-
YY_RULE(int)
|
397
|
-
YY_RULE(int)
|
398
|
-
YY_RULE(int)
|
399
|
-
YY_RULE(int)
|
400
|
-
YY_RULE(int)
|
401
|
-
YY_RULE(int)
|
402
|
-
YY_RULE(int)
|
403
|
-
YY_RULE(int)
|
404
|
-
YY_RULE(int)
|
405
|
-
YY_RULE(int)
|
406
|
-
YY_RULE(int)
|
407
|
-
YY_RULE(int)
|
408
|
-
YY_RULE(int)
|
409
|
-
YY_RULE(int)
|
410
|
-
YY_RULE(int)
|
411
|
-
YY_RULE(int)
|
412
|
-
YY_RULE(int)
|
413
|
-
YY_RULE(int)
|
414
|
-
YY_RULE(int)
|
415
|
-
YY_RULE(int)
|
416
|
-
YY_RULE(int)
|
417
|
-
YY_RULE(int)
|
418
|
-
YY_RULE(int)
|
419
|
-
YY_RULE(int)
|
420
|
-
YY_RULE(int)
|
421
|
-
YY_RULE(int)
|
422
|
-
YY_RULE(int)
|
423
|
-
YY_RULE(int)
|
424
|
-
YY_RULE(int)
|
425
|
-
YY_RULE(int)
|
426
|
-
YY_RULE(int)
|
427
|
-
YY_RULE(int)
|
428
|
-
YY_RULE(int)
|
429
|
-
YY_RULE(int)
|
430
|
-
YY_RULE(int)
|
431
|
-
YY_RULE(int)
|
432
|
-
YY_RULE(int)
|
433
|
-
YY_RULE(int)
|
434
|
-
YY_RULE(int)
|
435
|
-
YY_RULE(int)
|
436
|
-
YY_RULE(int)
|
437
|
-
YY_RULE(int)
|
438
|
-
YY_RULE(int)
|
439
|
-
YY_RULE(int)
|
440
|
-
YY_RULE(int)
|
246
|
+
YY_RULE(int) yy_Notes(); /* 212 */
|
247
|
+
YY_RULE(int) yy_RawNoteBlock(); /* 211 */
|
248
|
+
YY_RULE(int) yy_RawNoteReference(); /* 210 */
|
249
|
+
YY_RULE(int) yy_DoubleQuoteEnd(); /* 209 */
|
250
|
+
YY_RULE(int) yy_DoubleQuoteStart(); /* 208 */
|
251
|
+
YY_RULE(int) yy_SingleQuoteEnd(); /* 207 */
|
252
|
+
YY_RULE(int) yy_SingleQuoteStart(); /* 206 */
|
253
|
+
YY_RULE(int) yy_EnDash(); /* 205 */
|
254
|
+
YY_RULE(int) yy_EmDash(); /* 204 */
|
255
|
+
YY_RULE(int) yy_Apostrophe(); /* 203 */
|
256
|
+
YY_RULE(int) yy_DoubleQuoted(); /* 202 */
|
257
|
+
YY_RULE(int) yy_SingleQuoted(); /* 201 */
|
258
|
+
YY_RULE(int) yy_Dash(); /* 200 */
|
259
|
+
YY_RULE(int) yy_Ellipsis(); /* 199 */
|
260
|
+
YY_RULE(int) yy_RawLine(); /* 198 */
|
261
|
+
YY_RULE(int) yy_Digit(); /* 197 */
|
262
|
+
YY_RULE(int) yy_ExtendedSpecialChar(); /* 196 */
|
263
|
+
YY_RULE(int) yy_Quoted(); /* 195 */
|
264
|
+
YY_RULE(int) yy_HtmlTag(); /* 194 */
|
265
|
+
YY_RULE(int) yy_Ticks5(); /* 193 */
|
266
|
+
YY_RULE(int) yy_Ticks4(); /* 192 */
|
267
|
+
YY_RULE(int) yy_Ticks3(); /* 191 */
|
268
|
+
YY_RULE(int) yy_Ticks2(); /* 190 */
|
269
|
+
YY_RULE(int) yy_Ticks1(); /* 189 */
|
270
|
+
YY_RULE(int) yy_SkipBlock(); /* 188 */
|
271
|
+
YY_RULE(int) yy_References(); /* 187 */
|
272
|
+
YY_RULE(int) yy_EmptyTitle(); /* 186 */
|
273
|
+
YY_RULE(int) yy_RefTitleParens(); /* 185 */
|
274
|
+
YY_RULE(int) yy_RefTitleDouble(); /* 184 */
|
275
|
+
YY_RULE(int) yy_RefTitleSingle(); /* 183 */
|
276
|
+
YY_RULE(int) yy_RefTitle(); /* 182 */
|
277
|
+
YY_RULE(int) yy_RefSrc(); /* 181 */
|
278
|
+
YY_RULE(int) yy_AutoLinkEmail(); /* 180 */
|
279
|
+
YY_RULE(int) yy_AutoLinkUrl(); /* 179 */
|
280
|
+
YY_RULE(int) yy_TitleDouble(); /* 178 */
|
281
|
+
YY_RULE(int) yy_TitleSingle(); /* 177 */
|
282
|
+
YY_RULE(int) yy_Nonspacechar(); /* 176 */
|
283
|
+
YY_RULE(int) yy_SourceContents(); /* 175 */
|
284
|
+
YY_RULE(int) yy_Title(); /* 174 */
|
285
|
+
YY_RULE(int) yy_Source(); /* 173 */
|
286
|
+
YY_RULE(int) yy_Label(); /* 172 */
|
287
|
+
YY_RULE(int) yy_ReferenceLinkSingle(); /* 171 */
|
288
|
+
YY_RULE(int) yy_ReferenceLinkDouble(); /* 170 */
|
289
|
+
YY_RULE(int) yy_AutoLink(); /* 169 */
|
290
|
+
YY_RULE(int) yy_ReferenceLink(); /* 168 */
|
291
|
+
YY_RULE(int) yy_ExplicitLink(); /* 167 */
|
292
|
+
YY_RULE(int) yy_TwoUlClose(); /* 166 */
|
293
|
+
YY_RULE(int) yy_TwoUlOpen(); /* 165 */
|
294
|
+
YY_RULE(int) yy_TwoStarClose(); /* 164 */
|
295
|
+
YY_RULE(int) yy_TwoStarOpen(); /* 163 */
|
296
|
+
YY_RULE(int) yy_Alphanumeric(); /* 162 */
|
297
|
+
YY_RULE(int) yy_StrongUl(); /* 161 */
|
298
|
+
YY_RULE(int) yy_OneUlClose(); /* 160 */
|
299
|
+
YY_RULE(int) yy_OneUlOpen(); /* 159 */
|
300
|
+
YY_RULE(int) yy_StrongStar(); /* 158 */
|
301
|
+
YY_RULE(int) yy_OneStarClose(); /* 157 */
|
302
|
+
YY_RULE(int) yy_OneStarOpen(); /* 156 */
|
303
|
+
YY_RULE(int) yy_EmphUl(); /* 155 */
|
304
|
+
YY_RULE(int) yy_EmphStar(); /* 154 */
|
305
|
+
YY_RULE(int) yy_StarLine(); /* 153 */
|
306
|
+
YY_RULE(int) yy_UlLine(); /* 152 */
|
307
|
+
YY_RULE(int) yy_SpecialChar(); /* 151 */
|
308
|
+
YY_RULE(int) yy_Eof(); /* 150 */
|
309
|
+
YY_RULE(int) yy_NormalEndline(); /* 149 */
|
310
|
+
YY_RULE(int) yy_TerminalEndline(); /* 148 */
|
311
|
+
YY_RULE(int) yy_CharEntity(); /* 147 */
|
312
|
+
YY_RULE(int) yy_DecEntity(); /* 146 */
|
313
|
+
YY_RULE(int) yy_HexEntity(); /* 145 */
|
314
|
+
YY_RULE(int) yy_NormalChar(); /* 144 */
|
315
|
+
YY_RULE(int) yy_Symbol(); /* 143 */
|
316
|
+
YY_RULE(int) yy_Smart(); /* 142 */
|
317
|
+
YY_RULE(int) yy_EscapedChar(); /* 141 */
|
318
|
+
YY_RULE(int) yy_Entity(); /* 140 */
|
319
|
+
YY_RULE(int) yy_RawHtml(); /* 139 */
|
320
|
+
YY_RULE(int) yy_Code(); /* 138 */
|
321
|
+
YY_RULE(int) yy_InlineNote(); /* 137 */
|
322
|
+
YY_RULE(int) yy_NoteReference(); /* 136 */
|
323
|
+
YY_RULE(int) yy_Link(); /* 135 */
|
324
|
+
YY_RULE(int) yy_Image(); /* 134 */
|
325
|
+
YY_RULE(int) yy_Emph(); /* 133 */
|
326
|
+
YY_RULE(int) yy_Strong(); /* 132 */
|
327
|
+
YY_RULE(int) yy_Space(); /* 131 */
|
328
|
+
YY_RULE(int) yy_UlOrStarLine(); /* 130 */
|
329
|
+
YY_RULE(int) yy_LineBreak(); /* 129 */
|
330
|
+
YY_RULE(int) yy_Str(); /* 128 */
|
331
|
+
YY_RULE(int) yy_InStyleTags(); /* 127 */
|
332
|
+
YY_RULE(int) yy_StyleClose(); /* 126 */
|
333
|
+
YY_RULE(int) yy_StyleOpen(); /* 125 */
|
334
|
+
YY_RULE(int) yy_HtmlBlockType(); /* 124 */
|
335
|
+
YY_RULE(int) yy_HtmlBlockSelfClosing(); /* 123 */
|
336
|
+
YY_RULE(int) yy_HtmlComment(); /* 122 */
|
337
|
+
YY_RULE(int) yy_HtmlBlockInTags(); /* 121 */
|
338
|
+
YY_RULE(int) yy_HtmlBlockCloseScript(); /* 120 */
|
339
|
+
YY_RULE(int) yy_HtmlBlockOpenScript(); /* 119 */
|
340
|
+
YY_RULE(int) yy_HtmlBlockCloseTr(); /* 118 */
|
341
|
+
YY_RULE(int) yy_HtmlBlockOpenTr(); /* 117 */
|
342
|
+
YY_RULE(int) yy_HtmlBlockCloseThead(); /* 116 */
|
343
|
+
YY_RULE(int) yy_HtmlBlockOpenThead(); /* 115 */
|
344
|
+
YY_RULE(int) yy_HtmlBlockCloseTh(); /* 114 */
|
345
|
+
YY_RULE(int) yy_HtmlBlockOpenTh(); /* 113 */
|
346
|
+
YY_RULE(int) yy_HtmlBlockCloseTfoot(); /* 112 */
|
347
|
+
YY_RULE(int) yy_HtmlBlockOpenTfoot(); /* 111 */
|
348
|
+
YY_RULE(int) yy_HtmlBlockCloseTd(); /* 110 */
|
349
|
+
YY_RULE(int) yy_HtmlBlockOpenTd(); /* 109 */
|
350
|
+
YY_RULE(int) yy_HtmlBlockCloseTbody(); /* 108 */
|
351
|
+
YY_RULE(int) yy_HtmlBlockOpenTbody(); /* 107 */
|
352
|
+
YY_RULE(int) yy_HtmlBlockCloseLi(); /* 106 */
|
353
|
+
YY_RULE(int) yy_HtmlBlockOpenLi(); /* 105 */
|
354
|
+
YY_RULE(int) yy_HtmlBlockCloseFrameset(); /* 104 */
|
355
|
+
YY_RULE(int) yy_HtmlBlockOpenFrameset(); /* 103 */
|
356
|
+
YY_RULE(int) yy_HtmlBlockCloseDt(); /* 102 */
|
357
|
+
YY_RULE(int) yy_HtmlBlockOpenDt(); /* 101 */
|
358
|
+
YY_RULE(int) yy_HtmlBlockCloseDd(); /* 100 */
|
359
|
+
YY_RULE(int) yy_HtmlBlockOpenDd(); /* 99 */
|
360
|
+
YY_RULE(int) yy_HtmlBlockCloseUl(); /* 98 */
|
361
|
+
YY_RULE(int) yy_HtmlBlockOpenUl(); /* 97 */
|
362
|
+
YY_RULE(int) yy_HtmlBlockCloseTable(); /* 96 */
|
363
|
+
YY_RULE(int) yy_HtmlBlockOpenTable(); /* 95 */
|
364
|
+
YY_RULE(int) yy_HtmlBlockClosePre(); /* 94 */
|
365
|
+
YY_RULE(int) yy_HtmlBlockOpenPre(); /* 93 */
|
366
|
+
YY_RULE(int) yy_HtmlBlockCloseP(); /* 92 */
|
367
|
+
YY_RULE(int) yy_HtmlBlockOpenP(); /* 91 */
|
368
|
+
YY_RULE(int) yy_HtmlBlockCloseOl(); /* 90 */
|
369
|
+
YY_RULE(int) yy_HtmlBlockOpenOl(); /* 89 */
|
370
|
+
YY_RULE(int) yy_HtmlBlockCloseNoscript(); /* 88 */
|
371
|
+
YY_RULE(int) yy_HtmlBlockOpenNoscript(); /* 87 */
|
372
|
+
YY_RULE(int) yy_HtmlBlockCloseNoframes(); /* 86 */
|
373
|
+
YY_RULE(int) yy_HtmlBlockOpenNoframes(); /* 85 */
|
374
|
+
YY_RULE(int) yy_HtmlBlockCloseMenu(); /* 84 */
|
375
|
+
YY_RULE(int) yy_HtmlBlockOpenMenu(); /* 83 */
|
376
|
+
YY_RULE(int) yy_HtmlBlockCloseIsindex(); /* 82 */
|
377
|
+
YY_RULE(int) yy_HtmlBlockOpenIsindex(); /* 81 */
|
378
|
+
YY_RULE(int) yy_HtmlBlockCloseHr(); /* 80 */
|
379
|
+
YY_RULE(int) yy_HtmlBlockOpenHr(); /* 79 */
|
380
|
+
YY_RULE(int) yy_HtmlBlockCloseH6(); /* 78 */
|
381
|
+
YY_RULE(int) yy_HtmlBlockOpenH6(); /* 77 */
|
382
|
+
YY_RULE(int) yy_HtmlBlockCloseH5(); /* 76 */
|
383
|
+
YY_RULE(int) yy_HtmlBlockOpenH5(); /* 75 */
|
384
|
+
YY_RULE(int) yy_HtmlBlockCloseH4(); /* 74 */
|
385
|
+
YY_RULE(int) yy_HtmlBlockOpenH4(); /* 73 */
|
386
|
+
YY_RULE(int) yy_HtmlBlockCloseH3(); /* 72 */
|
387
|
+
YY_RULE(int) yy_HtmlBlockOpenH3(); /* 71 */
|
388
|
+
YY_RULE(int) yy_HtmlBlockCloseH2(); /* 70 */
|
389
|
+
YY_RULE(int) yy_HtmlBlockOpenH2(); /* 69 */
|
390
|
+
YY_RULE(int) yy_HtmlBlockCloseH1(); /* 68 */
|
391
|
+
YY_RULE(int) yy_HtmlBlockOpenH1(); /* 67 */
|
392
|
+
YY_RULE(int) yy_HtmlBlockCloseForm(); /* 66 */
|
393
|
+
YY_RULE(int) yy_HtmlBlockOpenForm(); /* 65 */
|
394
|
+
YY_RULE(int) yy_HtmlBlockCloseFieldset(); /* 64 */
|
395
|
+
YY_RULE(int) yy_HtmlBlockOpenFieldset(); /* 63 */
|
396
|
+
YY_RULE(int) yy_HtmlBlockCloseDl(); /* 62 */
|
397
|
+
YY_RULE(int) yy_HtmlBlockOpenDl(); /* 61 */
|
398
|
+
YY_RULE(int) yy_HtmlBlockCloseDiv(); /* 60 */
|
399
|
+
YY_RULE(int) yy_HtmlBlockOpenDiv(); /* 59 */
|
400
|
+
YY_RULE(int) yy_HtmlBlockCloseDir(); /* 58 */
|
401
|
+
YY_RULE(int) yy_HtmlBlockOpenDir(); /* 57 */
|
402
|
+
YY_RULE(int) yy_HtmlBlockCloseCenter(); /* 56 */
|
403
|
+
YY_RULE(int) yy_HtmlBlockOpenCenter(); /* 55 */
|
404
|
+
YY_RULE(int) yy_HtmlBlockCloseBlockquote(); /* 54 */
|
405
|
+
YY_RULE(int) yy_HtmlBlockOpenBlockquote(); /* 53 */
|
406
|
+
YY_RULE(int) yy_HtmlBlockCloseAddress(); /* 52 */
|
407
|
+
YY_RULE(int) yy_HtmlAttribute(); /* 51 */
|
408
|
+
YY_RULE(int) yy_Spnl(); /* 50 */
|
409
|
+
YY_RULE(int) yy_HtmlBlockOpenAddress(); /* 49 */
|
410
|
+
YY_RULE(int) yy_OptionallyIndentedLine(); /* 48 */
|
411
|
+
YY_RULE(int) yy_OrderedListItem(); /* 47 */
|
412
|
+
YY_RULE(int) yy_OrderedListLoose(); /* 46 */
|
413
|
+
YY_RULE(int) yy_OrderedListTight(); /* 45 */
|
414
|
+
YY_RULE(int) yy_Indent(); /* 44 */
|
415
|
+
YY_RULE(int) yy_ListBlockLine(); /* 43 */
|
416
|
+
YY_RULE(int) yy_ListContinuationBlock(); /* 42 */
|
417
|
+
YY_RULE(int) yy_ListBlock(); /* 41 */
|
418
|
+
YY_RULE(int) yy_Enumerator(); /* 40 */
|
419
|
+
YY_RULE(int) yy_ListItem(); /* 39 */
|
420
|
+
YY_RULE(int) yy_BulletListItem(); /* 38 */
|
421
|
+
YY_RULE(int) yy_BulletListLoose(); /* 37 */
|
422
|
+
YY_RULE(int) yy_BulletListTight(); /* 36 */
|
423
|
+
YY_RULE(int) yy_Spacechar(); /* 35 */
|
424
|
+
YY_RULE(int) yy_Bullet(); /* 34 */
|
425
|
+
YY_RULE(int) yy_VerbatimChunk(); /* 33 */
|
426
|
+
YY_RULE(int) yy_IndentedLine(); /* 32 */
|
427
|
+
YY_RULE(int) yy_NonblankIndentedLine(); /* 31 */
|
428
|
+
YY_RULE(int) yy_Line(); /* 30 */
|
429
|
+
YY_RULE(int) yy_BlockQuoteRaw(); /* 29 */
|
430
|
+
YY_RULE(int) yy_Endline(); /* 28 */
|
431
|
+
YY_RULE(int) yy_SetextHeading2(); /* 27 */
|
432
|
+
YY_RULE(int) yy_SetextHeading1(); /* 26 */
|
433
|
+
YY_RULE(int) yy_SetextHeading(); /* 25 */
|
434
|
+
YY_RULE(int) yy_AtxHeading(); /* 24 */
|
435
|
+
YY_RULE(int) yy_AtxStart(); /* 23 */
|
436
|
+
YY_RULE(int) yy_Inline(); /* 22 */
|
437
|
+
YY_RULE(int) yy_Sp(); /* 21 */
|
438
|
+
YY_RULE(int) yy_Newline(); /* 20 */
|
439
|
+
YY_RULE(int) yy_AtxInline(); /* 19 */
|
440
|
+
YY_RULE(int) yy_Inlines(); /* 18 */
|
441
|
+
YY_RULE(int) yy_NonindentSpace(); /* 17 */
|
442
|
+
YY_RULE(int) yy_Plain(); /* 16 */
|
443
|
+
YY_RULE(int) yy_Para(); /* 15 */
|
444
|
+
YY_RULE(int) yy_StyleBlock(); /* 14 */
|
441
445
|
YY_RULE(int) yy_HtmlBlock(); /* 13 */
|
442
446
|
YY_RULE(int) yy_BulletList(); /* 12 */
|
443
447
|
YY_RULE(int) yy_OrderedList(); /* 11 */
|
@@ -631,7 +635,13 @@ YY_ACTION(void) yy_1_StartList(char *yytext, int yyleng)
|
|
631
635
|
YY_ACTION(void) yy_1_RawHtml(char *yytext, int yyleng)
|
632
636
|
{
|
633
637
|
yyprintf((stderr, "do yy_1_RawHtml\n"));
|
634
|
-
|
638
|
+
if (extension(EXT_FILTER_HTML)) {
|
639
|
+
yy = mk_list(LIST, NULL);
|
640
|
+
} else {
|
641
|
+
yy = mk_str(yytext);
|
642
|
+
yy->key = HTML;
|
643
|
+
}
|
644
|
+
;
|
635
645
|
}
|
636
646
|
YY_ACTION(void) yy_1_Code(char *yytext, int yyleng)
|
637
647
|
{
|
@@ -964,10 +974,27 @@ YY_ACTION(void) yy_1_Inlines(char *yytext, int yyleng)
|
|
964
974
|
#undef c
|
965
975
|
#undef a
|
966
976
|
}
|
977
|
+
YY_ACTION(void) yy_1_StyleBlock(char *yytext, int yyleng)
|
978
|
+
{
|
979
|
+
yyprintf((stderr, "do yy_1_StyleBlock\n"));
|
980
|
+
if (extension(EXT_FILTER_STYLES)) {
|
981
|
+
yy = mk_list(LIST, NULL);
|
982
|
+
} else {
|
983
|
+
yy = mk_str(yytext);
|
984
|
+
yy->key = HTMLBLOCK;
|
985
|
+
}
|
986
|
+
;
|
987
|
+
}
|
967
988
|
YY_ACTION(void) yy_1_HtmlBlock(char *yytext, int yyleng)
|
968
989
|
{
|
969
990
|
yyprintf((stderr, "do yy_1_HtmlBlock\n"));
|
970
|
-
|
991
|
+
if (extension(EXT_FILTER_HTML)) {
|
992
|
+
yy = mk_list(LIST, NULL);
|
993
|
+
} else {
|
994
|
+
yy = mk_str(yytext);
|
995
|
+
yy->key = HTMLBLOCK;
|
996
|
+
}
|
997
|
+
;
|
971
998
|
}
|
972
999
|
YY_ACTION(void) yy_2_OrderedListLoose(char *yytext, int yyleng)
|
973
1000
|
{
|
@@ -2288,8 +2315,8 @@ YY_RULE(int) yy_StarLine()
|
|
2288
2315
|
l268:;
|
2289
2316
|
{ int yypos269= yypos, yythunkpos269= yythunkpos; if (!yymatchChar('*')) goto l269; goto l268;
|
2290
2317
|
l269:; yypos= yypos269; yythunkpos= yythunkpos269;
|
2291
|
-
} goto l266;
|
2292
|
-
l267:; yypos= yypos266; yythunkpos= yythunkpos266; if (!yy_Spacechar()) goto l265; if (!yymatchChar('*')) goto l265;
|
2318
|
+
} yyText(yybegin, yyend); if (!(YY_END)) goto l267; goto l266;
|
2319
|
+
l267:; yypos= yypos266; yythunkpos= yythunkpos266; yyText(yybegin, yyend); if (!(YY_BEGIN)) goto l265; if (!yy_Spacechar()) goto l265; if (!yymatchChar('*')) goto l265;
|
2293
2320
|
l270:;
|
2294
2321
|
{ int yypos271= yypos, yythunkpos271= yythunkpos; if (!yymatchChar('*')) goto l271; goto l270;
|
2295
2322
|
l271:; yypos= yypos271; yythunkpos= yythunkpos271;
|
@@ -2311,8 +2338,8 @@ YY_RULE(int) yy_UlLine()
|
|
2311
2338
|
l276:;
|
2312
2339
|
{ int yypos277= yypos, yythunkpos277= yythunkpos; if (!yymatchChar('_')) goto l277; goto l276;
|
2313
2340
|
l277:; yypos= yypos277; yythunkpos= yythunkpos277;
|
2314
|
-
} goto l274;
|
2315
|
-
l275:; yypos= yypos274; yythunkpos= yythunkpos274; if (!yy_Spacechar()) goto l273; if (!yymatchChar('_')) goto l273;
|
2341
|
+
} yyText(yybegin, yyend); if (!(YY_END)) goto l275; goto l274;
|
2342
|
+
l275:; yypos= yypos274; yythunkpos= yythunkpos274; yyText(yybegin, yyend); if (!(YY_BEGIN)) goto l273; if (!yy_Spacechar()) goto l273; if (!yymatchChar('_')) goto l273;
|
2316
2343
|
l278:;
|
2317
2344
|
{ int yypos279= yypos, yythunkpos279= yythunkpos; if (!yymatchChar('_')) goto l279; goto l278;
|
2318
2345
|
l279:; yypos= yypos279; yythunkpos= yythunkpos279;
|
@@ -3007,2137 +3034,2183 @@ YY_RULE(int) yy_Str()
|
|
3007
3034
|
yyprintf((stderr, " fail %s @ %s\n", "Str", yybuf+yypos));
|
3008
3035
|
return 0;
|
3009
3036
|
}
|
3037
|
+
YY_RULE(int) yy_InStyleTags()
|
3038
|
+
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3039
|
+
yyprintf((stderr, "%s\n", "InStyleTags")); if (!yy_StyleOpen()) goto l521;
|
3040
|
+
l522:;
|
3041
|
+
{ int yypos523= yypos, yythunkpos523= yythunkpos;
|
3042
|
+
{ int yypos524= yypos, yythunkpos524= yythunkpos; if (!yy_StyleClose()) goto l524; goto l523;
|
3043
|
+
l524:; yypos= yypos524; yythunkpos= yythunkpos524;
|
3044
|
+
} if (!yymatchDot()) goto l523; goto l522;
|
3045
|
+
l523:; yypos= yypos523; yythunkpos= yythunkpos523;
|
3046
|
+
} if (!yy_StyleClose()) goto l521;
|
3047
|
+
yyprintf((stderr, " ok %s @ %s\n", "InStyleTags", yybuf+yypos));
|
3048
|
+
return 1;
|
3049
|
+
l521:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3050
|
+
yyprintf((stderr, " fail %s @ %s\n", "InStyleTags", yybuf+yypos));
|
3051
|
+
return 0;
|
3052
|
+
}
|
3053
|
+
YY_RULE(int) yy_StyleClose()
|
3054
|
+
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3055
|
+
yyprintf((stderr, "%s\n", "StyleClose")); if (!yymatchChar('<')) goto l525; if (!yy_Spnl()) goto l525; if (!yymatchChar('/')) goto l525;
|
3056
|
+
{ int yypos526= yypos, yythunkpos526= yythunkpos; if (!yymatchString("style")) goto l527; goto l526;
|
3057
|
+
l527:; yypos= yypos526; yythunkpos= yythunkpos526; if (!yymatchString("STYLE")) goto l525;
|
3058
|
+
}
|
3059
|
+
l526:; if (!yy_Spnl()) goto l525; if (!yymatchChar('>')) goto l525;
|
3060
|
+
yyprintf((stderr, " ok %s @ %s\n", "StyleClose", yybuf+yypos));
|
3061
|
+
return 1;
|
3062
|
+
l525:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3063
|
+
yyprintf((stderr, " fail %s @ %s\n", "StyleClose", yybuf+yypos));
|
3064
|
+
return 0;
|
3065
|
+
}
|
3066
|
+
YY_RULE(int) yy_StyleOpen()
|
3067
|
+
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3068
|
+
yyprintf((stderr, "%s\n", "StyleOpen")); if (!yymatchChar('<')) goto l528; if (!yy_Spnl()) goto l528;
|
3069
|
+
{ int yypos529= yypos, yythunkpos529= yythunkpos; if (!yymatchString("style")) goto l530; goto l529;
|
3070
|
+
l530:; yypos= yypos529; yythunkpos= yythunkpos529; if (!yymatchString("STYLE")) goto l528;
|
3071
|
+
}
|
3072
|
+
l529:; if (!yy_Spnl()) goto l528;
|
3073
|
+
l531:;
|
3074
|
+
{ int yypos532= yypos, yythunkpos532= yythunkpos; if (!yy_HtmlAttribute()) goto l532; goto l531;
|
3075
|
+
l532:; yypos= yypos532; yythunkpos= yythunkpos532;
|
3076
|
+
} if (!yymatchChar('>')) goto l528;
|
3077
|
+
yyprintf((stderr, " ok %s @ %s\n", "StyleOpen", yybuf+yypos));
|
3078
|
+
return 1;
|
3079
|
+
l528:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3080
|
+
yyprintf((stderr, " fail %s @ %s\n", "StyleOpen", yybuf+yypos));
|
3081
|
+
return 0;
|
3082
|
+
}
|
3010
3083
|
YY_RULE(int) yy_HtmlBlockType()
|
3011
3084
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3012
3085
|
yyprintf((stderr, "%s\n", "HtmlBlockType"));
|
3013
|
-
{ int
|
3014
|
-
|
3015
|
-
|
3016
|
-
|
3017
|
-
|
3018
|
-
|
3019
|
-
|
3020
|
-
|
3021
|
-
|
3022
|
-
|
3023
|
-
|
3024
|
-
|
3025
|
-
|
3026
|
-
|
3027
|
-
|
3028
|
-
|
3029
|
-
|
3030
|
-
|
3031
|
-
|
3032
|
-
|
3033
|
-
|
3034
|
-
|
3035
|
-
|
3036
|
-
|
3037
|
-
|
3038
|
-
|
3039
|
-
|
3040
|
-
|
3041
|
-
|
3042
|
-
|
3043
|
-
|
3044
|
-
|
3045
|
-
|
3046
|
-
|
3047
|
-
|
3048
|
-
|
3049
|
-
|
3050
|
-
|
3051
|
-
|
3052
|
-
|
3053
|
-
|
3054
|
-
|
3055
|
-
|
3056
|
-
|
3057
|
-
|
3058
|
-
|
3059
|
-
|
3060
|
-
|
3061
|
-
|
3062
|
-
|
3063
|
-
|
3064
|
-
|
3065
|
-
|
3066
|
-
|
3067
|
-
|
3068
|
-
|
3069
|
-
|
3070
|
-
|
3071
|
-
|
3072
|
-
|
3073
|
-
|
3074
|
-
|
3075
|
-
|
3076
|
-
|
3077
|
-
|
3078
|
-
|
3079
|
-
|
3080
|
-
|
3081
|
-
|
3082
|
-
|
3083
|
-
}
|
3084
|
-
|
3086
|
+
{ int yypos534= yypos, yythunkpos534= yythunkpos; if (!yymatchString("address")) goto l535; goto l534;
|
3087
|
+
l535:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("blockquote")) goto l536; goto l534;
|
3088
|
+
l536:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("center")) goto l537; goto l534;
|
3089
|
+
l537:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("dir")) goto l538; goto l534;
|
3090
|
+
l538:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("div")) goto l539; goto l534;
|
3091
|
+
l539:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("dl")) goto l540; goto l534;
|
3092
|
+
l540:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("fieldset")) goto l541; goto l534;
|
3093
|
+
l541:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("form")) goto l542; goto l534;
|
3094
|
+
l542:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("h1")) goto l543; goto l534;
|
3095
|
+
l543:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("h2")) goto l544; goto l534;
|
3096
|
+
l544:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("h3")) goto l545; goto l534;
|
3097
|
+
l545:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("h4")) goto l546; goto l534;
|
3098
|
+
l546:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("h5")) goto l547; goto l534;
|
3099
|
+
l547:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("h6")) goto l548; goto l534;
|
3100
|
+
l548:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("hr")) goto l549; goto l534;
|
3101
|
+
l549:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("isindex")) goto l550; goto l534;
|
3102
|
+
l550:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("menu")) goto l551; goto l534;
|
3103
|
+
l551:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("noframes")) goto l552; goto l534;
|
3104
|
+
l552:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("noscript")) goto l553; goto l534;
|
3105
|
+
l553:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("ol")) goto l554; goto l534;
|
3106
|
+
l554:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchChar('p')) goto l555; goto l534;
|
3107
|
+
l555:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("pre")) goto l556; goto l534;
|
3108
|
+
l556:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("table")) goto l557; goto l534;
|
3109
|
+
l557:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("ul")) goto l558; goto l534;
|
3110
|
+
l558:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("dd")) goto l559; goto l534;
|
3111
|
+
l559:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("dt")) goto l560; goto l534;
|
3112
|
+
l560:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("frameset")) goto l561; goto l534;
|
3113
|
+
l561:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("li")) goto l562; goto l534;
|
3114
|
+
l562:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("tbody")) goto l563; goto l534;
|
3115
|
+
l563:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("td")) goto l564; goto l534;
|
3116
|
+
l564:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("tfoot")) goto l565; goto l534;
|
3117
|
+
l565:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("th")) goto l566; goto l534;
|
3118
|
+
l566:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("thead")) goto l567; goto l534;
|
3119
|
+
l567:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("tr")) goto l568; goto l534;
|
3120
|
+
l568:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("script")) goto l569; goto l534;
|
3121
|
+
l569:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("ADDRESS")) goto l570; goto l534;
|
3122
|
+
l570:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("BLOCKQUOTE")) goto l571; goto l534;
|
3123
|
+
l571:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("CENTER")) goto l572; goto l534;
|
3124
|
+
l572:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("DIR")) goto l573; goto l534;
|
3125
|
+
l573:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("DIV")) goto l574; goto l534;
|
3126
|
+
l574:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("DL")) goto l575; goto l534;
|
3127
|
+
l575:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("FIELDSET")) goto l576; goto l534;
|
3128
|
+
l576:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("FORM")) goto l577; goto l534;
|
3129
|
+
l577:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("H1")) goto l578; goto l534;
|
3130
|
+
l578:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("H2")) goto l579; goto l534;
|
3131
|
+
l579:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("H3")) goto l580; goto l534;
|
3132
|
+
l580:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("H4")) goto l581; goto l534;
|
3133
|
+
l581:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("H5")) goto l582; goto l534;
|
3134
|
+
l582:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("H6")) goto l583; goto l534;
|
3135
|
+
l583:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("HR")) goto l584; goto l534;
|
3136
|
+
l584:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("ISINDEX")) goto l585; goto l534;
|
3137
|
+
l585:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("MENU")) goto l586; goto l534;
|
3138
|
+
l586:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("NOFRAMES")) goto l587; goto l534;
|
3139
|
+
l587:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("NOSCRIPT")) goto l588; goto l534;
|
3140
|
+
l588:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("OL")) goto l589; goto l534;
|
3141
|
+
l589:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchChar('P')) goto l590; goto l534;
|
3142
|
+
l590:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("PRE")) goto l591; goto l534;
|
3143
|
+
l591:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("TABLE")) goto l592; goto l534;
|
3144
|
+
l592:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("UL")) goto l593; goto l534;
|
3145
|
+
l593:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("DD")) goto l594; goto l534;
|
3146
|
+
l594:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("DT")) goto l595; goto l534;
|
3147
|
+
l595:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("FRAMESET")) goto l596; goto l534;
|
3148
|
+
l596:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("LI")) goto l597; goto l534;
|
3149
|
+
l597:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("TBODY")) goto l598; goto l534;
|
3150
|
+
l598:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("TD")) goto l599; goto l534;
|
3151
|
+
l599:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("TFOOT")) goto l600; goto l534;
|
3152
|
+
l600:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("TH")) goto l601; goto l534;
|
3153
|
+
l601:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("THEAD")) goto l602; goto l534;
|
3154
|
+
l602:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("TR")) goto l603; goto l534;
|
3155
|
+
l603:; yypos= yypos534; yythunkpos= yythunkpos534; if (!yymatchString("SCRIPT")) goto l533;
|
3156
|
+
}
|
3157
|
+
l534:;
|
3085
3158
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockType", yybuf+yypos));
|
3086
3159
|
return 1;
|
3087
|
-
|
3160
|
+
l533:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3088
3161
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockType", yybuf+yypos));
|
3089
3162
|
return 0;
|
3090
3163
|
}
|
3091
3164
|
YY_RULE(int) yy_HtmlBlockSelfClosing()
|
3092
3165
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3093
|
-
yyprintf((stderr, "%s\n", "HtmlBlockSelfClosing")); if (!yymatchChar('<')) goto
|
3094
|
-
|
3095
|
-
{ int
|
3096
|
-
|
3097
|
-
} if (!yymatchChar('/')) goto
|
3166
|
+
yyprintf((stderr, "%s\n", "HtmlBlockSelfClosing")); if (!yymatchChar('<')) goto l604; if (!yy_Spnl()) goto l604; if (!yy_HtmlBlockType()) goto l604; if (!yy_Spnl()) goto l604;
|
3167
|
+
l605:;
|
3168
|
+
{ int yypos606= yypos, yythunkpos606= yythunkpos; if (!yy_HtmlAttribute()) goto l606; goto l605;
|
3169
|
+
l606:; yypos= yypos606; yythunkpos= yythunkpos606;
|
3170
|
+
} if (!yymatchChar('/')) goto l604; if (!yy_Spnl()) goto l604; if (!yymatchChar('>')) goto l604;
|
3098
3171
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockSelfClosing", yybuf+yypos));
|
3099
3172
|
return 1;
|
3100
|
-
|
3173
|
+
l604:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3101
3174
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockSelfClosing", yybuf+yypos));
|
3102
3175
|
return 0;
|
3103
3176
|
}
|
3104
3177
|
YY_RULE(int) yy_HtmlComment()
|
3105
3178
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3106
|
-
yyprintf((stderr, "%s\n", "HtmlComment")); if (!yymatchString("<!--")) goto
|
3107
|
-
|
3108
|
-
{ int
|
3109
|
-
{ int
|
3110
|
-
|
3111
|
-
} if (!yymatchDot()) goto
|
3112
|
-
|
3113
|
-
} if (!yymatchString("-->")) goto
|
3179
|
+
yyprintf((stderr, "%s\n", "HtmlComment")); if (!yymatchString("<!--")) goto l607;
|
3180
|
+
l608:;
|
3181
|
+
{ int yypos609= yypos, yythunkpos609= yythunkpos;
|
3182
|
+
{ int yypos610= yypos, yythunkpos610= yythunkpos; if (!yymatchString("-->")) goto l610; goto l609;
|
3183
|
+
l610:; yypos= yypos610; yythunkpos= yythunkpos610;
|
3184
|
+
} if (!yymatchDot()) goto l609; goto l608;
|
3185
|
+
l609:; yypos= yypos609; yythunkpos= yythunkpos609;
|
3186
|
+
} if (!yymatchString("-->")) goto l607;
|
3114
3187
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlComment", yybuf+yypos));
|
3115
3188
|
return 1;
|
3116
|
-
|
3189
|
+
l607:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3117
3190
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlComment", yybuf+yypos));
|
3118
3191
|
return 0;
|
3119
3192
|
}
|
3120
3193
|
YY_RULE(int) yy_HtmlBlockInTags()
|
3121
3194
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3122
3195
|
yyprintf((stderr, "%s\n", "HtmlBlockInTags"));
|
3123
|
-
{ int
|
3124
|
-
l602:;
|
3125
|
-
{ int yypos603= yypos, yythunkpos603= yythunkpos;
|
3126
|
-
{ int yypos604= yypos, yythunkpos604= yythunkpos; if (!yy_HtmlBlockInTags()) goto l605; goto l604;
|
3127
|
-
l605:; yypos= yypos604; yythunkpos= yythunkpos604;
|
3128
|
-
{ int yypos606= yypos, yythunkpos606= yythunkpos; if (!yy_HtmlBlockCloseAddress()) goto l606; goto l603;
|
3129
|
-
l606:; yypos= yypos606; yythunkpos= yythunkpos606;
|
3130
|
-
} if (!yymatchDot()) goto l603;
|
3131
|
-
}
|
3132
|
-
l604:; goto l602;
|
3133
|
-
l603:; yypos= yypos603; yythunkpos= yythunkpos603;
|
3134
|
-
} if (!yy_HtmlBlockCloseAddress()) goto l601; goto l600;
|
3135
|
-
l601:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenBlockquote()) goto l607;
|
3136
|
-
l608:;
|
3137
|
-
{ int yypos609= yypos, yythunkpos609= yythunkpos;
|
3138
|
-
{ int yypos610= yypos, yythunkpos610= yythunkpos; if (!yy_HtmlBlockInTags()) goto l611; goto l610;
|
3139
|
-
l611:; yypos= yypos610; yythunkpos= yythunkpos610;
|
3140
|
-
{ int yypos612= yypos, yythunkpos612= yythunkpos; if (!yy_HtmlBlockCloseBlockquote()) goto l612; goto l609;
|
3141
|
-
l612:; yypos= yypos612; yythunkpos= yythunkpos612;
|
3142
|
-
} if (!yymatchDot()) goto l609;
|
3143
|
-
}
|
3144
|
-
l610:; goto l608;
|
3145
|
-
l609:; yypos= yypos609; yythunkpos= yythunkpos609;
|
3146
|
-
} if (!yy_HtmlBlockCloseBlockquote()) goto l607; goto l600;
|
3147
|
-
l607:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenCenter()) goto l613;
|
3196
|
+
{ int yypos612= yypos, yythunkpos612= yythunkpos; if (!yy_HtmlBlockOpenAddress()) goto l613;
|
3148
3197
|
l614:;
|
3149
3198
|
{ int yypos615= yypos, yythunkpos615= yythunkpos;
|
3150
3199
|
{ int yypos616= yypos, yythunkpos616= yythunkpos; if (!yy_HtmlBlockInTags()) goto l617; goto l616;
|
3151
3200
|
l617:; yypos= yypos616; yythunkpos= yythunkpos616;
|
3152
|
-
{ int yypos618= yypos, yythunkpos618= yythunkpos; if (!
|
3201
|
+
{ int yypos618= yypos, yythunkpos618= yythunkpos; if (!yy_HtmlBlockCloseAddress()) goto l618; goto l615;
|
3153
3202
|
l618:; yypos= yypos618; yythunkpos= yythunkpos618;
|
3154
3203
|
} if (!yymatchDot()) goto l615;
|
3155
3204
|
}
|
3156
3205
|
l616:; goto l614;
|
3157
3206
|
l615:; yypos= yypos615; yythunkpos= yythunkpos615;
|
3158
|
-
} if (!
|
3159
|
-
l613:; yypos=
|
3207
|
+
} if (!yy_HtmlBlockCloseAddress()) goto l613; goto l612;
|
3208
|
+
l613:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenBlockquote()) goto l619;
|
3160
3209
|
l620:;
|
3161
3210
|
{ int yypos621= yypos, yythunkpos621= yythunkpos;
|
3162
3211
|
{ int yypos622= yypos, yythunkpos622= yythunkpos; if (!yy_HtmlBlockInTags()) goto l623; goto l622;
|
3163
3212
|
l623:; yypos= yypos622; yythunkpos= yythunkpos622;
|
3164
|
-
{ int yypos624= yypos, yythunkpos624= yythunkpos; if (!
|
3213
|
+
{ int yypos624= yypos, yythunkpos624= yythunkpos; if (!yy_HtmlBlockCloseBlockquote()) goto l624; goto l621;
|
3165
3214
|
l624:; yypos= yypos624; yythunkpos= yythunkpos624;
|
3166
3215
|
} if (!yymatchDot()) goto l621;
|
3167
3216
|
}
|
3168
3217
|
l622:; goto l620;
|
3169
3218
|
l621:; yypos= yypos621; yythunkpos= yythunkpos621;
|
3170
|
-
} if (!
|
3171
|
-
l619:; yypos=
|
3219
|
+
} if (!yy_HtmlBlockCloseBlockquote()) goto l619; goto l612;
|
3220
|
+
l619:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenCenter()) goto l625;
|
3172
3221
|
l626:;
|
3173
3222
|
{ int yypos627= yypos, yythunkpos627= yythunkpos;
|
3174
3223
|
{ int yypos628= yypos, yythunkpos628= yythunkpos; if (!yy_HtmlBlockInTags()) goto l629; goto l628;
|
3175
3224
|
l629:; yypos= yypos628; yythunkpos= yythunkpos628;
|
3176
|
-
{ int yypos630= yypos, yythunkpos630= yythunkpos; if (!
|
3225
|
+
{ int yypos630= yypos, yythunkpos630= yythunkpos; if (!yy_HtmlBlockCloseCenter()) goto l630; goto l627;
|
3177
3226
|
l630:; yypos= yypos630; yythunkpos= yythunkpos630;
|
3178
3227
|
} if (!yymatchDot()) goto l627;
|
3179
3228
|
}
|
3180
3229
|
l628:; goto l626;
|
3181
3230
|
l627:; yypos= yypos627; yythunkpos= yythunkpos627;
|
3182
|
-
} if (!
|
3183
|
-
l625:; yypos=
|
3231
|
+
} if (!yy_HtmlBlockCloseCenter()) goto l625; goto l612;
|
3232
|
+
l625:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenDir()) goto l631;
|
3184
3233
|
l632:;
|
3185
3234
|
{ int yypos633= yypos, yythunkpos633= yythunkpos;
|
3186
3235
|
{ int yypos634= yypos, yythunkpos634= yythunkpos; if (!yy_HtmlBlockInTags()) goto l635; goto l634;
|
3187
3236
|
l635:; yypos= yypos634; yythunkpos= yythunkpos634;
|
3188
|
-
{ int yypos636= yypos, yythunkpos636= yythunkpos; if (!
|
3237
|
+
{ int yypos636= yypos, yythunkpos636= yythunkpos; if (!yy_HtmlBlockCloseDir()) goto l636; goto l633;
|
3189
3238
|
l636:; yypos= yypos636; yythunkpos= yythunkpos636;
|
3190
3239
|
} if (!yymatchDot()) goto l633;
|
3191
3240
|
}
|
3192
3241
|
l634:; goto l632;
|
3193
3242
|
l633:; yypos= yypos633; yythunkpos= yythunkpos633;
|
3194
|
-
} if (!
|
3195
|
-
l631:; yypos=
|
3243
|
+
} if (!yy_HtmlBlockCloseDir()) goto l631; goto l612;
|
3244
|
+
l631:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenDiv()) goto l637;
|
3196
3245
|
l638:;
|
3197
3246
|
{ int yypos639= yypos, yythunkpos639= yythunkpos;
|
3198
3247
|
{ int yypos640= yypos, yythunkpos640= yythunkpos; if (!yy_HtmlBlockInTags()) goto l641; goto l640;
|
3199
3248
|
l641:; yypos= yypos640; yythunkpos= yythunkpos640;
|
3200
|
-
{ int yypos642= yypos, yythunkpos642= yythunkpos; if (!
|
3249
|
+
{ int yypos642= yypos, yythunkpos642= yythunkpos; if (!yy_HtmlBlockCloseDiv()) goto l642; goto l639;
|
3201
3250
|
l642:; yypos= yypos642; yythunkpos= yythunkpos642;
|
3202
3251
|
} if (!yymatchDot()) goto l639;
|
3203
3252
|
}
|
3204
3253
|
l640:; goto l638;
|
3205
3254
|
l639:; yypos= yypos639; yythunkpos= yythunkpos639;
|
3206
|
-
} if (!
|
3207
|
-
l637:; yypos=
|
3255
|
+
} if (!yy_HtmlBlockCloseDiv()) goto l637; goto l612;
|
3256
|
+
l637:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenDl()) goto l643;
|
3208
3257
|
l644:;
|
3209
3258
|
{ int yypos645= yypos, yythunkpos645= yythunkpos;
|
3210
3259
|
{ int yypos646= yypos, yythunkpos646= yythunkpos; if (!yy_HtmlBlockInTags()) goto l647; goto l646;
|
3211
3260
|
l647:; yypos= yypos646; yythunkpos= yythunkpos646;
|
3212
|
-
{ int yypos648= yypos, yythunkpos648= yythunkpos; if (!
|
3261
|
+
{ int yypos648= yypos, yythunkpos648= yythunkpos; if (!yy_HtmlBlockCloseDl()) goto l648; goto l645;
|
3213
3262
|
l648:; yypos= yypos648; yythunkpos= yythunkpos648;
|
3214
3263
|
} if (!yymatchDot()) goto l645;
|
3215
3264
|
}
|
3216
3265
|
l646:; goto l644;
|
3217
3266
|
l645:; yypos= yypos645; yythunkpos= yythunkpos645;
|
3218
|
-
} if (!
|
3219
|
-
l643:; yypos=
|
3267
|
+
} if (!yy_HtmlBlockCloseDl()) goto l643; goto l612;
|
3268
|
+
l643:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenFieldset()) goto l649;
|
3220
3269
|
l650:;
|
3221
3270
|
{ int yypos651= yypos, yythunkpos651= yythunkpos;
|
3222
3271
|
{ int yypos652= yypos, yythunkpos652= yythunkpos; if (!yy_HtmlBlockInTags()) goto l653; goto l652;
|
3223
3272
|
l653:; yypos= yypos652; yythunkpos= yythunkpos652;
|
3224
|
-
{ int yypos654= yypos, yythunkpos654= yythunkpos; if (!
|
3273
|
+
{ int yypos654= yypos, yythunkpos654= yythunkpos; if (!yy_HtmlBlockCloseFieldset()) goto l654; goto l651;
|
3225
3274
|
l654:; yypos= yypos654; yythunkpos= yythunkpos654;
|
3226
3275
|
} if (!yymatchDot()) goto l651;
|
3227
3276
|
}
|
3228
3277
|
l652:; goto l650;
|
3229
3278
|
l651:; yypos= yypos651; yythunkpos= yythunkpos651;
|
3230
|
-
} if (!
|
3231
|
-
l649:; yypos=
|
3279
|
+
} if (!yy_HtmlBlockCloseFieldset()) goto l649; goto l612;
|
3280
|
+
l649:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenForm()) goto l655;
|
3232
3281
|
l656:;
|
3233
3282
|
{ int yypos657= yypos, yythunkpos657= yythunkpos;
|
3234
3283
|
{ int yypos658= yypos, yythunkpos658= yythunkpos; if (!yy_HtmlBlockInTags()) goto l659; goto l658;
|
3235
3284
|
l659:; yypos= yypos658; yythunkpos= yythunkpos658;
|
3236
|
-
{ int yypos660= yypos, yythunkpos660= yythunkpos; if (!
|
3285
|
+
{ int yypos660= yypos, yythunkpos660= yythunkpos; if (!yy_HtmlBlockCloseForm()) goto l660; goto l657;
|
3237
3286
|
l660:; yypos= yypos660; yythunkpos= yythunkpos660;
|
3238
3287
|
} if (!yymatchDot()) goto l657;
|
3239
3288
|
}
|
3240
3289
|
l658:; goto l656;
|
3241
3290
|
l657:; yypos= yypos657; yythunkpos= yythunkpos657;
|
3242
|
-
} if (!
|
3243
|
-
l655:; yypos=
|
3291
|
+
} if (!yy_HtmlBlockCloseForm()) goto l655; goto l612;
|
3292
|
+
l655:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenH1()) goto l661;
|
3244
3293
|
l662:;
|
3245
3294
|
{ int yypos663= yypos, yythunkpos663= yythunkpos;
|
3246
3295
|
{ int yypos664= yypos, yythunkpos664= yythunkpos; if (!yy_HtmlBlockInTags()) goto l665; goto l664;
|
3247
3296
|
l665:; yypos= yypos664; yythunkpos= yythunkpos664;
|
3248
|
-
{ int yypos666= yypos, yythunkpos666= yythunkpos; if (!
|
3297
|
+
{ int yypos666= yypos, yythunkpos666= yythunkpos; if (!yy_HtmlBlockCloseH1()) goto l666; goto l663;
|
3249
3298
|
l666:; yypos= yypos666; yythunkpos= yythunkpos666;
|
3250
3299
|
} if (!yymatchDot()) goto l663;
|
3251
3300
|
}
|
3252
3301
|
l664:; goto l662;
|
3253
3302
|
l663:; yypos= yypos663; yythunkpos= yythunkpos663;
|
3254
|
-
} if (!
|
3255
|
-
l661:; yypos=
|
3303
|
+
} if (!yy_HtmlBlockCloseH1()) goto l661; goto l612;
|
3304
|
+
l661:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenH2()) goto l667;
|
3256
3305
|
l668:;
|
3257
3306
|
{ int yypos669= yypos, yythunkpos669= yythunkpos;
|
3258
3307
|
{ int yypos670= yypos, yythunkpos670= yythunkpos; if (!yy_HtmlBlockInTags()) goto l671; goto l670;
|
3259
3308
|
l671:; yypos= yypos670; yythunkpos= yythunkpos670;
|
3260
|
-
{ int yypos672= yypos, yythunkpos672= yythunkpos; if (!
|
3309
|
+
{ int yypos672= yypos, yythunkpos672= yythunkpos; if (!yy_HtmlBlockCloseH2()) goto l672; goto l669;
|
3261
3310
|
l672:; yypos= yypos672; yythunkpos= yythunkpos672;
|
3262
3311
|
} if (!yymatchDot()) goto l669;
|
3263
3312
|
}
|
3264
3313
|
l670:; goto l668;
|
3265
3314
|
l669:; yypos= yypos669; yythunkpos= yythunkpos669;
|
3266
|
-
} if (!
|
3267
|
-
l667:; yypos=
|
3315
|
+
} if (!yy_HtmlBlockCloseH2()) goto l667; goto l612;
|
3316
|
+
l667:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenH3()) goto l673;
|
3268
3317
|
l674:;
|
3269
3318
|
{ int yypos675= yypos, yythunkpos675= yythunkpos;
|
3270
3319
|
{ int yypos676= yypos, yythunkpos676= yythunkpos; if (!yy_HtmlBlockInTags()) goto l677; goto l676;
|
3271
3320
|
l677:; yypos= yypos676; yythunkpos= yythunkpos676;
|
3272
|
-
{ int yypos678= yypos, yythunkpos678= yythunkpos; if (!
|
3321
|
+
{ int yypos678= yypos, yythunkpos678= yythunkpos; if (!yy_HtmlBlockCloseH3()) goto l678; goto l675;
|
3273
3322
|
l678:; yypos= yypos678; yythunkpos= yythunkpos678;
|
3274
3323
|
} if (!yymatchDot()) goto l675;
|
3275
3324
|
}
|
3276
3325
|
l676:; goto l674;
|
3277
3326
|
l675:; yypos= yypos675; yythunkpos= yythunkpos675;
|
3278
|
-
} if (!
|
3279
|
-
l673:; yypos=
|
3327
|
+
} if (!yy_HtmlBlockCloseH3()) goto l673; goto l612;
|
3328
|
+
l673:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenH4()) goto l679;
|
3280
3329
|
l680:;
|
3281
3330
|
{ int yypos681= yypos, yythunkpos681= yythunkpos;
|
3282
3331
|
{ int yypos682= yypos, yythunkpos682= yythunkpos; if (!yy_HtmlBlockInTags()) goto l683; goto l682;
|
3283
3332
|
l683:; yypos= yypos682; yythunkpos= yythunkpos682;
|
3284
|
-
{ int yypos684= yypos, yythunkpos684= yythunkpos; if (!
|
3333
|
+
{ int yypos684= yypos, yythunkpos684= yythunkpos; if (!yy_HtmlBlockCloseH4()) goto l684; goto l681;
|
3285
3334
|
l684:; yypos= yypos684; yythunkpos= yythunkpos684;
|
3286
3335
|
} if (!yymatchDot()) goto l681;
|
3287
3336
|
}
|
3288
3337
|
l682:; goto l680;
|
3289
3338
|
l681:; yypos= yypos681; yythunkpos= yythunkpos681;
|
3290
|
-
} if (!
|
3291
|
-
l679:; yypos=
|
3339
|
+
} if (!yy_HtmlBlockCloseH4()) goto l679; goto l612;
|
3340
|
+
l679:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenH5()) goto l685;
|
3292
3341
|
l686:;
|
3293
3342
|
{ int yypos687= yypos, yythunkpos687= yythunkpos;
|
3294
3343
|
{ int yypos688= yypos, yythunkpos688= yythunkpos; if (!yy_HtmlBlockInTags()) goto l689; goto l688;
|
3295
3344
|
l689:; yypos= yypos688; yythunkpos= yythunkpos688;
|
3296
|
-
{ int yypos690= yypos, yythunkpos690= yythunkpos; if (!
|
3345
|
+
{ int yypos690= yypos, yythunkpos690= yythunkpos; if (!yy_HtmlBlockCloseH5()) goto l690; goto l687;
|
3297
3346
|
l690:; yypos= yypos690; yythunkpos= yythunkpos690;
|
3298
3347
|
} if (!yymatchDot()) goto l687;
|
3299
3348
|
}
|
3300
3349
|
l688:; goto l686;
|
3301
3350
|
l687:; yypos= yypos687; yythunkpos= yythunkpos687;
|
3302
|
-
} if (!
|
3303
|
-
l685:; yypos=
|
3351
|
+
} if (!yy_HtmlBlockCloseH5()) goto l685; goto l612;
|
3352
|
+
l685:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenH6()) goto l691;
|
3304
3353
|
l692:;
|
3305
3354
|
{ int yypos693= yypos, yythunkpos693= yythunkpos;
|
3306
3355
|
{ int yypos694= yypos, yythunkpos694= yythunkpos; if (!yy_HtmlBlockInTags()) goto l695; goto l694;
|
3307
3356
|
l695:; yypos= yypos694; yythunkpos= yythunkpos694;
|
3308
|
-
{ int yypos696= yypos, yythunkpos696= yythunkpos; if (!
|
3357
|
+
{ int yypos696= yypos, yythunkpos696= yythunkpos; if (!yy_HtmlBlockCloseH6()) goto l696; goto l693;
|
3309
3358
|
l696:; yypos= yypos696; yythunkpos= yythunkpos696;
|
3310
3359
|
} if (!yymatchDot()) goto l693;
|
3311
3360
|
}
|
3312
3361
|
l694:; goto l692;
|
3313
3362
|
l693:; yypos= yypos693; yythunkpos= yythunkpos693;
|
3314
|
-
} if (!
|
3315
|
-
l691:; yypos=
|
3363
|
+
} if (!yy_HtmlBlockCloseH6()) goto l691; goto l612;
|
3364
|
+
l691:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenHr()) goto l697;
|
3316
3365
|
l698:;
|
3317
3366
|
{ int yypos699= yypos, yythunkpos699= yythunkpos;
|
3318
3367
|
{ int yypos700= yypos, yythunkpos700= yythunkpos; if (!yy_HtmlBlockInTags()) goto l701; goto l700;
|
3319
3368
|
l701:; yypos= yypos700; yythunkpos= yythunkpos700;
|
3320
|
-
{ int yypos702= yypos, yythunkpos702= yythunkpos; if (!
|
3369
|
+
{ int yypos702= yypos, yythunkpos702= yythunkpos; if (!yy_HtmlBlockCloseHr()) goto l702; goto l699;
|
3321
3370
|
l702:; yypos= yypos702; yythunkpos= yythunkpos702;
|
3322
3371
|
} if (!yymatchDot()) goto l699;
|
3323
3372
|
}
|
3324
3373
|
l700:; goto l698;
|
3325
3374
|
l699:; yypos= yypos699; yythunkpos= yythunkpos699;
|
3326
|
-
} if (!
|
3327
|
-
l697:; yypos=
|
3375
|
+
} if (!yy_HtmlBlockCloseHr()) goto l697; goto l612;
|
3376
|
+
l697:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenIsindex()) goto l703;
|
3328
3377
|
l704:;
|
3329
3378
|
{ int yypos705= yypos, yythunkpos705= yythunkpos;
|
3330
3379
|
{ int yypos706= yypos, yythunkpos706= yythunkpos; if (!yy_HtmlBlockInTags()) goto l707; goto l706;
|
3331
3380
|
l707:; yypos= yypos706; yythunkpos= yythunkpos706;
|
3332
|
-
{ int yypos708= yypos, yythunkpos708= yythunkpos; if (!
|
3381
|
+
{ int yypos708= yypos, yythunkpos708= yythunkpos; if (!yy_HtmlBlockCloseIsindex()) goto l708; goto l705;
|
3333
3382
|
l708:; yypos= yypos708; yythunkpos= yythunkpos708;
|
3334
3383
|
} if (!yymatchDot()) goto l705;
|
3335
3384
|
}
|
3336
3385
|
l706:; goto l704;
|
3337
3386
|
l705:; yypos= yypos705; yythunkpos= yythunkpos705;
|
3338
|
-
} if (!
|
3339
|
-
l703:; yypos=
|
3387
|
+
} if (!yy_HtmlBlockCloseIsindex()) goto l703; goto l612;
|
3388
|
+
l703:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenMenu()) goto l709;
|
3340
3389
|
l710:;
|
3341
3390
|
{ int yypos711= yypos, yythunkpos711= yythunkpos;
|
3342
3391
|
{ int yypos712= yypos, yythunkpos712= yythunkpos; if (!yy_HtmlBlockInTags()) goto l713; goto l712;
|
3343
3392
|
l713:; yypos= yypos712; yythunkpos= yythunkpos712;
|
3344
|
-
{ int yypos714= yypos, yythunkpos714= yythunkpos; if (!
|
3393
|
+
{ int yypos714= yypos, yythunkpos714= yythunkpos; if (!yy_HtmlBlockCloseMenu()) goto l714; goto l711;
|
3345
3394
|
l714:; yypos= yypos714; yythunkpos= yythunkpos714;
|
3346
3395
|
} if (!yymatchDot()) goto l711;
|
3347
3396
|
}
|
3348
3397
|
l712:; goto l710;
|
3349
3398
|
l711:; yypos= yypos711; yythunkpos= yythunkpos711;
|
3350
|
-
} if (!
|
3351
|
-
l709:; yypos=
|
3399
|
+
} if (!yy_HtmlBlockCloseMenu()) goto l709; goto l612;
|
3400
|
+
l709:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenNoframes()) goto l715;
|
3352
3401
|
l716:;
|
3353
3402
|
{ int yypos717= yypos, yythunkpos717= yythunkpos;
|
3354
3403
|
{ int yypos718= yypos, yythunkpos718= yythunkpos; if (!yy_HtmlBlockInTags()) goto l719; goto l718;
|
3355
3404
|
l719:; yypos= yypos718; yythunkpos= yythunkpos718;
|
3356
|
-
{ int yypos720= yypos, yythunkpos720= yythunkpos; if (!
|
3405
|
+
{ int yypos720= yypos, yythunkpos720= yythunkpos; if (!yy_HtmlBlockCloseNoframes()) goto l720; goto l717;
|
3357
3406
|
l720:; yypos= yypos720; yythunkpos= yythunkpos720;
|
3358
3407
|
} if (!yymatchDot()) goto l717;
|
3359
3408
|
}
|
3360
3409
|
l718:; goto l716;
|
3361
3410
|
l717:; yypos= yypos717; yythunkpos= yythunkpos717;
|
3362
|
-
} if (!
|
3363
|
-
l715:; yypos=
|
3411
|
+
} if (!yy_HtmlBlockCloseNoframes()) goto l715; goto l612;
|
3412
|
+
l715:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenNoscript()) goto l721;
|
3364
3413
|
l722:;
|
3365
3414
|
{ int yypos723= yypos, yythunkpos723= yythunkpos;
|
3366
3415
|
{ int yypos724= yypos, yythunkpos724= yythunkpos; if (!yy_HtmlBlockInTags()) goto l725; goto l724;
|
3367
3416
|
l725:; yypos= yypos724; yythunkpos= yythunkpos724;
|
3368
|
-
{ int yypos726= yypos, yythunkpos726= yythunkpos; if (!
|
3417
|
+
{ int yypos726= yypos, yythunkpos726= yythunkpos; if (!yy_HtmlBlockCloseNoscript()) goto l726; goto l723;
|
3369
3418
|
l726:; yypos= yypos726; yythunkpos= yythunkpos726;
|
3370
3419
|
} if (!yymatchDot()) goto l723;
|
3371
3420
|
}
|
3372
3421
|
l724:; goto l722;
|
3373
3422
|
l723:; yypos= yypos723; yythunkpos= yythunkpos723;
|
3374
|
-
} if (!
|
3375
|
-
l721:; yypos=
|
3423
|
+
} if (!yy_HtmlBlockCloseNoscript()) goto l721; goto l612;
|
3424
|
+
l721:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenOl()) goto l727;
|
3376
3425
|
l728:;
|
3377
3426
|
{ int yypos729= yypos, yythunkpos729= yythunkpos;
|
3378
3427
|
{ int yypos730= yypos, yythunkpos730= yythunkpos; if (!yy_HtmlBlockInTags()) goto l731; goto l730;
|
3379
3428
|
l731:; yypos= yypos730; yythunkpos= yythunkpos730;
|
3380
|
-
{ int yypos732= yypos, yythunkpos732= yythunkpos; if (!
|
3429
|
+
{ int yypos732= yypos, yythunkpos732= yythunkpos; if (!yy_HtmlBlockCloseOl()) goto l732; goto l729;
|
3381
3430
|
l732:; yypos= yypos732; yythunkpos= yythunkpos732;
|
3382
3431
|
} if (!yymatchDot()) goto l729;
|
3383
3432
|
}
|
3384
3433
|
l730:; goto l728;
|
3385
3434
|
l729:; yypos= yypos729; yythunkpos= yythunkpos729;
|
3386
|
-
} if (!
|
3387
|
-
l727:; yypos=
|
3435
|
+
} if (!yy_HtmlBlockCloseOl()) goto l727; goto l612;
|
3436
|
+
l727:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenP()) goto l733;
|
3388
3437
|
l734:;
|
3389
3438
|
{ int yypos735= yypos, yythunkpos735= yythunkpos;
|
3390
3439
|
{ int yypos736= yypos, yythunkpos736= yythunkpos; if (!yy_HtmlBlockInTags()) goto l737; goto l736;
|
3391
3440
|
l737:; yypos= yypos736; yythunkpos= yythunkpos736;
|
3392
|
-
{ int yypos738= yypos, yythunkpos738= yythunkpos; if (!
|
3441
|
+
{ int yypos738= yypos, yythunkpos738= yythunkpos; if (!yy_HtmlBlockCloseP()) goto l738; goto l735;
|
3393
3442
|
l738:; yypos= yypos738; yythunkpos= yythunkpos738;
|
3394
3443
|
} if (!yymatchDot()) goto l735;
|
3395
3444
|
}
|
3396
3445
|
l736:; goto l734;
|
3397
3446
|
l735:; yypos= yypos735; yythunkpos= yythunkpos735;
|
3398
|
-
} if (!
|
3399
|
-
l733:; yypos=
|
3447
|
+
} if (!yy_HtmlBlockCloseP()) goto l733; goto l612;
|
3448
|
+
l733:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenPre()) goto l739;
|
3400
3449
|
l740:;
|
3401
3450
|
{ int yypos741= yypos, yythunkpos741= yythunkpos;
|
3402
3451
|
{ int yypos742= yypos, yythunkpos742= yythunkpos; if (!yy_HtmlBlockInTags()) goto l743; goto l742;
|
3403
3452
|
l743:; yypos= yypos742; yythunkpos= yythunkpos742;
|
3404
|
-
{ int yypos744= yypos, yythunkpos744= yythunkpos; if (!
|
3453
|
+
{ int yypos744= yypos, yythunkpos744= yythunkpos; if (!yy_HtmlBlockClosePre()) goto l744; goto l741;
|
3405
3454
|
l744:; yypos= yypos744; yythunkpos= yythunkpos744;
|
3406
3455
|
} if (!yymatchDot()) goto l741;
|
3407
3456
|
}
|
3408
3457
|
l742:; goto l740;
|
3409
3458
|
l741:; yypos= yypos741; yythunkpos= yythunkpos741;
|
3410
|
-
} if (!
|
3411
|
-
l739:; yypos=
|
3459
|
+
} if (!yy_HtmlBlockClosePre()) goto l739; goto l612;
|
3460
|
+
l739:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTable()) goto l745;
|
3412
3461
|
l746:;
|
3413
3462
|
{ int yypos747= yypos, yythunkpos747= yythunkpos;
|
3414
3463
|
{ int yypos748= yypos, yythunkpos748= yythunkpos; if (!yy_HtmlBlockInTags()) goto l749; goto l748;
|
3415
3464
|
l749:; yypos= yypos748; yythunkpos= yythunkpos748;
|
3416
|
-
{ int yypos750= yypos, yythunkpos750= yythunkpos; if (!
|
3465
|
+
{ int yypos750= yypos, yythunkpos750= yythunkpos; if (!yy_HtmlBlockCloseTable()) goto l750; goto l747;
|
3417
3466
|
l750:; yypos= yypos750; yythunkpos= yythunkpos750;
|
3418
3467
|
} if (!yymatchDot()) goto l747;
|
3419
3468
|
}
|
3420
3469
|
l748:; goto l746;
|
3421
3470
|
l747:; yypos= yypos747; yythunkpos= yythunkpos747;
|
3422
|
-
} if (!
|
3423
|
-
l745:; yypos=
|
3471
|
+
} if (!yy_HtmlBlockCloseTable()) goto l745; goto l612;
|
3472
|
+
l745:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenUl()) goto l751;
|
3424
3473
|
l752:;
|
3425
3474
|
{ int yypos753= yypos, yythunkpos753= yythunkpos;
|
3426
3475
|
{ int yypos754= yypos, yythunkpos754= yythunkpos; if (!yy_HtmlBlockInTags()) goto l755; goto l754;
|
3427
3476
|
l755:; yypos= yypos754; yythunkpos= yythunkpos754;
|
3428
|
-
{ int yypos756= yypos, yythunkpos756= yythunkpos; if (!
|
3477
|
+
{ int yypos756= yypos, yythunkpos756= yythunkpos; if (!yy_HtmlBlockCloseUl()) goto l756; goto l753;
|
3429
3478
|
l756:; yypos= yypos756; yythunkpos= yythunkpos756;
|
3430
3479
|
} if (!yymatchDot()) goto l753;
|
3431
3480
|
}
|
3432
3481
|
l754:; goto l752;
|
3433
3482
|
l753:; yypos= yypos753; yythunkpos= yythunkpos753;
|
3434
|
-
} if (!
|
3435
|
-
l751:; yypos=
|
3483
|
+
} if (!yy_HtmlBlockCloseUl()) goto l751; goto l612;
|
3484
|
+
l751:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenDd()) goto l757;
|
3436
3485
|
l758:;
|
3437
3486
|
{ int yypos759= yypos, yythunkpos759= yythunkpos;
|
3438
3487
|
{ int yypos760= yypos, yythunkpos760= yythunkpos; if (!yy_HtmlBlockInTags()) goto l761; goto l760;
|
3439
3488
|
l761:; yypos= yypos760; yythunkpos= yythunkpos760;
|
3440
|
-
{ int yypos762= yypos, yythunkpos762= yythunkpos; if (!
|
3489
|
+
{ int yypos762= yypos, yythunkpos762= yythunkpos; if (!yy_HtmlBlockCloseDd()) goto l762; goto l759;
|
3441
3490
|
l762:; yypos= yypos762; yythunkpos= yythunkpos762;
|
3442
3491
|
} if (!yymatchDot()) goto l759;
|
3443
3492
|
}
|
3444
3493
|
l760:; goto l758;
|
3445
3494
|
l759:; yypos= yypos759; yythunkpos= yythunkpos759;
|
3446
|
-
} if (!
|
3447
|
-
l757:; yypos=
|
3495
|
+
} if (!yy_HtmlBlockCloseDd()) goto l757; goto l612;
|
3496
|
+
l757:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenDt()) goto l763;
|
3448
3497
|
l764:;
|
3449
3498
|
{ int yypos765= yypos, yythunkpos765= yythunkpos;
|
3450
3499
|
{ int yypos766= yypos, yythunkpos766= yythunkpos; if (!yy_HtmlBlockInTags()) goto l767; goto l766;
|
3451
3500
|
l767:; yypos= yypos766; yythunkpos= yythunkpos766;
|
3452
|
-
{ int yypos768= yypos, yythunkpos768= yythunkpos; if (!
|
3501
|
+
{ int yypos768= yypos, yythunkpos768= yythunkpos; if (!yy_HtmlBlockCloseDt()) goto l768; goto l765;
|
3453
3502
|
l768:; yypos= yypos768; yythunkpos= yythunkpos768;
|
3454
3503
|
} if (!yymatchDot()) goto l765;
|
3455
3504
|
}
|
3456
3505
|
l766:; goto l764;
|
3457
3506
|
l765:; yypos= yypos765; yythunkpos= yythunkpos765;
|
3458
|
-
} if (!
|
3459
|
-
l763:; yypos=
|
3507
|
+
} if (!yy_HtmlBlockCloseDt()) goto l763; goto l612;
|
3508
|
+
l763:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenFrameset()) goto l769;
|
3460
3509
|
l770:;
|
3461
3510
|
{ int yypos771= yypos, yythunkpos771= yythunkpos;
|
3462
3511
|
{ int yypos772= yypos, yythunkpos772= yythunkpos; if (!yy_HtmlBlockInTags()) goto l773; goto l772;
|
3463
3512
|
l773:; yypos= yypos772; yythunkpos= yythunkpos772;
|
3464
|
-
{ int yypos774= yypos, yythunkpos774= yythunkpos; if (!
|
3513
|
+
{ int yypos774= yypos, yythunkpos774= yythunkpos; if (!yy_HtmlBlockCloseFrameset()) goto l774; goto l771;
|
3465
3514
|
l774:; yypos= yypos774; yythunkpos= yythunkpos774;
|
3466
3515
|
} if (!yymatchDot()) goto l771;
|
3467
3516
|
}
|
3468
3517
|
l772:; goto l770;
|
3469
3518
|
l771:; yypos= yypos771; yythunkpos= yythunkpos771;
|
3470
|
-
} if (!
|
3471
|
-
l769:; yypos=
|
3519
|
+
} if (!yy_HtmlBlockCloseFrameset()) goto l769; goto l612;
|
3520
|
+
l769:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenLi()) goto l775;
|
3472
3521
|
l776:;
|
3473
3522
|
{ int yypos777= yypos, yythunkpos777= yythunkpos;
|
3474
3523
|
{ int yypos778= yypos, yythunkpos778= yythunkpos; if (!yy_HtmlBlockInTags()) goto l779; goto l778;
|
3475
3524
|
l779:; yypos= yypos778; yythunkpos= yythunkpos778;
|
3476
|
-
{ int yypos780= yypos, yythunkpos780= yythunkpos; if (!
|
3525
|
+
{ int yypos780= yypos, yythunkpos780= yythunkpos; if (!yy_HtmlBlockCloseLi()) goto l780; goto l777;
|
3477
3526
|
l780:; yypos= yypos780; yythunkpos= yythunkpos780;
|
3478
3527
|
} if (!yymatchDot()) goto l777;
|
3479
3528
|
}
|
3480
3529
|
l778:; goto l776;
|
3481
3530
|
l777:; yypos= yypos777; yythunkpos= yythunkpos777;
|
3482
|
-
} if (!
|
3483
|
-
l775:; yypos=
|
3531
|
+
} if (!yy_HtmlBlockCloseLi()) goto l775; goto l612;
|
3532
|
+
l775:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTbody()) goto l781;
|
3484
3533
|
l782:;
|
3485
3534
|
{ int yypos783= yypos, yythunkpos783= yythunkpos;
|
3486
3535
|
{ int yypos784= yypos, yythunkpos784= yythunkpos; if (!yy_HtmlBlockInTags()) goto l785; goto l784;
|
3487
3536
|
l785:; yypos= yypos784; yythunkpos= yythunkpos784;
|
3488
|
-
{ int yypos786= yypos, yythunkpos786= yythunkpos; if (!
|
3537
|
+
{ int yypos786= yypos, yythunkpos786= yythunkpos; if (!yy_HtmlBlockCloseTbody()) goto l786; goto l783;
|
3489
3538
|
l786:; yypos= yypos786; yythunkpos= yythunkpos786;
|
3490
3539
|
} if (!yymatchDot()) goto l783;
|
3491
3540
|
}
|
3492
3541
|
l784:; goto l782;
|
3493
3542
|
l783:; yypos= yypos783; yythunkpos= yythunkpos783;
|
3494
|
-
} if (!
|
3495
|
-
l781:; yypos=
|
3543
|
+
} if (!yy_HtmlBlockCloseTbody()) goto l781; goto l612;
|
3544
|
+
l781:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTd()) goto l787;
|
3496
3545
|
l788:;
|
3497
3546
|
{ int yypos789= yypos, yythunkpos789= yythunkpos;
|
3498
3547
|
{ int yypos790= yypos, yythunkpos790= yythunkpos; if (!yy_HtmlBlockInTags()) goto l791; goto l790;
|
3499
3548
|
l791:; yypos= yypos790; yythunkpos= yythunkpos790;
|
3500
|
-
{ int yypos792= yypos, yythunkpos792= yythunkpos; if (!
|
3549
|
+
{ int yypos792= yypos, yythunkpos792= yythunkpos; if (!yy_HtmlBlockCloseTd()) goto l792; goto l789;
|
3501
3550
|
l792:; yypos= yypos792; yythunkpos= yythunkpos792;
|
3502
3551
|
} if (!yymatchDot()) goto l789;
|
3503
3552
|
}
|
3504
3553
|
l790:; goto l788;
|
3505
3554
|
l789:; yypos= yypos789; yythunkpos= yythunkpos789;
|
3506
|
-
} if (!
|
3507
|
-
l787:; yypos=
|
3555
|
+
} if (!yy_HtmlBlockCloseTd()) goto l787; goto l612;
|
3556
|
+
l787:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTfoot()) goto l793;
|
3508
3557
|
l794:;
|
3509
3558
|
{ int yypos795= yypos, yythunkpos795= yythunkpos;
|
3510
3559
|
{ int yypos796= yypos, yythunkpos796= yythunkpos; if (!yy_HtmlBlockInTags()) goto l797; goto l796;
|
3511
3560
|
l797:; yypos= yypos796; yythunkpos= yythunkpos796;
|
3512
|
-
{ int yypos798= yypos, yythunkpos798= yythunkpos; if (!
|
3561
|
+
{ int yypos798= yypos, yythunkpos798= yythunkpos; if (!yy_HtmlBlockCloseTfoot()) goto l798; goto l795;
|
3513
3562
|
l798:; yypos= yypos798; yythunkpos= yythunkpos798;
|
3514
3563
|
} if (!yymatchDot()) goto l795;
|
3515
3564
|
}
|
3516
3565
|
l796:; goto l794;
|
3517
3566
|
l795:; yypos= yypos795; yythunkpos= yythunkpos795;
|
3518
|
-
} if (!
|
3519
|
-
l793:; yypos=
|
3567
|
+
} if (!yy_HtmlBlockCloseTfoot()) goto l793; goto l612;
|
3568
|
+
l793:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTh()) goto l799;
|
3520
3569
|
l800:;
|
3521
3570
|
{ int yypos801= yypos, yythunkpos801= yythunkpos;
|
3522
3571
|
{ int yypos802= yypos, yythunkpos802= yythunkpos; if (!yy_HtmlBlockInTags()) goto l803; goto l802;
|
3523
3572
|
l803:; yypos= yypos802; yythunkpos= yythunkpos802;
|
3524
|
-
{ int yypos804= yypos, yythunkpos804= yythunkpos; if (!
|
3573
|
+
{ int yypos804= yypos, yythunkpos804= yythunkpos; if (!yy_HtmlBlockCloseTh()) goto l804; goto l801;
|
3525
3574
|
l804:; yypos= yypos804; yythunkpos= yythunkpos804;
|
3526
3575
|
} if (!yymatchDot()) goto l801;
|
3527
3576
|
}
|
3528
3577
|
l802:; goto l800;
|
3529
3578
|
l801:; yypos= yypos801; yythunkpos= yythunkpos801;
|
3530
|
-
} if (!
|
3531
|
-
l799:; yypos=
|
3532
|
-
|
3533
|
-
{ int
|
3534
|
-
{ int
|
3535
|
-
|
3536
|
-
{ int
|
3537
|
-
|
3538
|
-
} if (!yymatchDot()) goto
|
3539
|
-
}
|
3540
|
-
|
3541
|
-
|
3542
|
-
} if (!
|
3543
|
-
|
3544
|
-
|
3579
|
+
} if (!yy_HtmlBlockCloseTh()) goto l799; goto l612;
|
3580
|
+
l799:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenThead()) goto l805;
|
3581
|
+
l806:;
|
3582
|
+
{ int yypos807= yypos, yythunkpos807= yythunkpos;
|
3583
|
+
{ int yypos808= yypos, yythunkpos808= yythunkpos; if (!yy_HtmlBlockInTags()) goto l809; goto l808;
|
3584
|
+
l809:; yypos= yypos808; yythunkpos= yythunkpos808;
|
3585
|
+
{ int yypos810= yypos, yythunkpos810= yythunkpos; if (!yy_HtmlBlockCloseThead()) goto l810; goto l807;
|
3586
|
+
l810:; yypos= yypos810; yythunkpos= yythunkpos810;
|
3587
|
+
} if (!yymatchDot()) goto l807;
|
3588
|
+
}
|
3589
|
+
l808:; goto l806;
|
3590
|
+
l807:; yypos= yypos807; yythunkpos= yythunkpos807;
|
3591
|
+
} if (!yy_HtmlBlockCloseThead()) goto l805; goto l612;
|
3592
|
+
l805:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTr()) goto l811;
|
3593
|
+
l812:;
|
3594
|
+
{ int yypos813= yypos, yythunkpos813= yythunkpos;
|
3595
|
+
{ int yypos814= yypos, yythunkpos814= yythunkpos; if (!yy_HtmlBlockInTags()) goto l815; goto l814;
|
3596
|
+
l815:; yypos= yypos814; yythunkpos= yythunkpos814;
|
3597
|
+
{ int yypos816= yypos, yythunkpos816= yythunkpos; if (!yy_HtmlBlockCloseTr()) goto l816; goto l813;
|
3598
|
+
l816:; yypos= yypos816; yythunkpos= yythunkpos816;
|
3599
|
+
} if (!yymatchDot()) goto l813;
|
3600
|
+
}
|
3601
|
+
l814:; goto l812;
|
3602
|
+
l813:; yypos= yypos813; yythunkpos= yythunkpos813;
|
3603
|
+
} if (!yy_HtmlBlockCloseTr()) goto l811; goto l612;
|
3604
|
+
l811:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenScript()) goto l611;
|
3605
|
+
l817:;
|
3606
|
+
{ int yypos818= yypos, yythunkpos818= yythunkpos;
|
3607
|
+
{ int yypos819= yypos, yythunkpos819= yythunkpos; if (!yy_HtmlBlockInTags()) goto l820; goto l819;
|
3608
|
+
l820:; yypos= yypos819; yythunkpos= yythunkpos819;
|
3609
|
+
{ int yypos821= yypos, yythunkpos821= yythunkpos; if (!yy_HtmlBlockCloseScript()) goto l821; goto l818;
|
3610
|
+
l821:; yypos= yypos821; yythunkpos= yythunkpos821;
|
3611
|
+
} if (!yymatchDot()) goto l818;
|
3612
|
+
}
|
3613
|
+
l819:; goto l817;
|
3614
|
+
l818:; yypos= yypos818; yythunkpos= yythunkpos818;
|
3615
|
+
} if (!yy_HtmlBlockCloseScript()) goto l611;
|
3616
|
+
}
|
3617
|
+
l612:;
|
3545
3618
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockInTags", yybuf+yypos));
|
3546
3619
|
return 1;
|
3547
|
-
|
3620
|
+
l611:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3548
3621
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockInTags", yybuf+yypos));
|
3549
3622
|
return 0;
|
3550
3623
|
}
|
3551
3624
|
YY_RULE(int) yy_HtmlBlockCloseScript()
|
3552
3625
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3553
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseScript")); if (!yymatchChar('<')) goto
|
3554
|
-
{ int
|
3555
|
-
|
3626
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseScript")); if (!yymatchChar('<')) goto l822; if (!yy_Spnl()) goto l822; if (!yymatchChar('/')) goto l822;
|
3627
|
+
{ int yypos823= yypos, yythunkpos823= yythunkpos; if (!yymatchString("script")) goto l824; goto l823;
|
3628
|
+
l824:; yypos= yypos823; yythunkpos= yythunkpos823; if (!yymatchString("SCRIPT")) goto l822;
|
3556
3629
|
}
|
3557
|
-
|
3630
|
+
l823:; if (!yy_Spnl()) goto l822; if (!yymatchChar('>')) goto l822;
|
3558
3631
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseScript", yybuf+yypos));
|
3559
3632
|
return 1;
|
3560
|
-
|
3633
|
+
l822:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3561
3634
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseScript", yybuf+yypos));
|
3562
3635
|
return 0;
|
3563
3636
|
}
|
3564
3637
|
YY_RULE(int) yy_HtmlBlockOpenScript()
|
3565
3638
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3566
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenScript")); if (!yymatchChar('<')) goto
|
3567
|
-
{ int
|
3568
|
-
|
3639
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenScript")); if (!yymatchChar('<')) goto l825; if (!yy_Spnl()) goto l825;
|
3640
|
+
{ int yypos826= yypos, yythunkpos826= yythunkpos; if (!yymatchString("script")) goto l827; goto l826;
|
3641
|
+
l827:; yypos= yypos826; yythunkpos= yythunkpos826; if (!yymatchString("SCRIPT")) goto l825;
|
3569
3642
|
}
|
3570
|
-
|
3571
|
-
|
3572
|
-
{ int
|
3573
|
-
|
3574
|
-
} if (!yymatchChar('>')) goto
|
3643
|
+
l826:; if (!yy_Spnl()) goto l825;
|
3644
|
+
l828:;
|
3645
|
+
{ int yypos829= yypos, yythunkpos829= yythunkpos; if (!yy_HtmlAttribute()) goto l829; goto l828;
|
3646
|
+
l829:; yypos= yypos829; yythunkpos= yythunkpos829;
|
3647
|
+
} if (!yymatchChar('>')) goto l825;
|
3575
3648
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenScript", yybuf+yypos));
|
3576
3649
|
return 1;
|
3577
|
-
|
3650
|
+
l825:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3578
3651
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenScript", yybuf+yypos));
|
3579
3652
|
return 0;
|
3580
3653
|
}
|
3581
3654
|
YY_RULE(int) yy_HtmlBlockCloseTr()
|
3582
3655
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3583
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseTr")); if (!yymatchChar('<')) goto
|
3584
|
-
{ int
|
3585
|
-
|
3656
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseTr")); if (!yymatchChar('<')) goto l830; if (!yy_Spnl()) goto l830; if (!yymatchChar('/')) goto l830;
|
3657
|
+
{ int yypos831= yypos, yythunkpos831= yythunkpos; if (!yymatchString("tr")) goto l832; goto l831;
|
3658
|
+
l832:; yypos= yypos831; yythunkpos= yythunkpos831; if (!yymatchString("TR")) goto l830;
|
3586
3659
|
}
|
3587
|
-
|
3660
|
+
l831:; if (!yy_Spnl()) goto l830; if (!yymatchChar('>')) goto l830;
|
3588
3661
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTr", yybuf+yypos));
|
3589
3662
|
return 1;
|
3590
|
-
|
3663
|
+
l830:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3591
3664
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTr", yybuf+yypos));
|
3592
3665
|
return 0;
|
3593
3666
|
}
|
3594
3667
|
YY_RULE(int) yy_HtmlBlockOpenTr()
|
3595
3668
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3596
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenTr")); if (!yymatchChar('<')) goto
|
3597
|
-
{ int
|
3598
|
-
|
3669
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenTr")); if (!yymatchChar('<')) goto l833; if (!yy_Spnl()) goto l833;
|
3670
|
+
{ int yypos834= yypos, yythunkpos834= yythunkpos; if (!yymatchString("tr")) goto l835; goto l834;
|
3671
|
+
l835:; yypos= yypos834; yythunkpos= yythunkpos834; if (!yymatchString("TR")) goto l833;
|
3599
3672
|
}
|
3600
|
-
|
3601
|
-
|
3602
|
-
{ int
|
3603
|
-
|
3604
|
-
} if (!yymatchChar('>')) goto
|
3673
|
+
l834:; if (!yy_Spnl()) goto l833;
|
3674
|
+
l836:;
|
3675
|
+
{ int yypos837= yypos, yythunkpos837= yythunkpos; if (!yy_HtmlAttribute()) goto l837; goto l836;
|
3676
|
+
l837:; yypos= yypos837; yythunkpos= yythunkpos837;
|
3677
|
+
} if (!yymatchChar('>')) goto l833;
|
3605
3678
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTr", yybuf+yypos));
|
3606
3679
|
return 1;
|
3607
|
-
|
3680
|
+
l833:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3608
3681
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTr", yybuf+yypos));
|
3609
3682
|
return 0;
|
3610
3683
|
}
|
3611
3684
|
YY_RULE(int) yy_HtmlBlockCloseThead()
|
3612
3685
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3613
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseThead")); if (!yymatchChar('<')) goto
|
3614
|
-
{ int
|
3615
|
-
|
3686
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseThead")); if (!yymatchChar('<')) goto l838; if (!yy_Spnl()) goto l838; if (!yymatchChar('/')) goto l838;
|
3687
|
+
{ int yypos839= yypos, yythunkpos839= yythunkpos; if (!yymatchString("thead")) goto l840; goto l839;
|
3688
|
+
l840:; yypos= yypos839; yythunkpos= yythunkpos839; if (!yymatchString("THEAD")) goto l838;
|
3616
3689
|
}
|
3617
|
-
|
3690
|
+
l839:; if (!yy_Spnl()) goto l838; if (!yymatchChar('>')) goto l838;
|
3618
3691
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseThead", yybuf+yypos));
|
3619
3692
|
return 1;
|
3620
|
-
|
3693
|
+
l838:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3621
3694
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseThead", yybuf+yypos));
|
3622
3695
|
return 0;
|
3623
3696
|
}
|
3624
3697
|
YY_RULE(int) yy_HtmlBlockOpenThead()
|
3625
3698
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3626
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenThead")); if (!yymatchChar('<')) goto
|
3627
|
-
{ int
|
3628
|
-
|
3699
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenThead")); if (!yymatchChar('<')) goto l841; if (!yy_Spnl()) goto l841;
|
3700
|
+
{ int yypos842= yypos, yythunkpos842= yythunkpos; if (!yymatchString("thead")) goto l843; goto l842;
|
3701
|
+
l843:; yypos= yypos842; yythunkpos= yythunkpos842; if (!yymatchString("THEAD")) goto l841;
|
3629
3702
|
}
|
3630
|
-
|
3631
|
-
|
3632
|
-
{ int
|
3633
|
-
|
3634
|
-
} if (!yymatchChar('>')) goto
|
3703
|
+
l842:; if (!yy_Spnl()) goto l841;
|
3704
|
+
l844:;
|
3705
|
+
{ int yypos845= yypos, yythunkpos845= yythunkpos; if (!yy_HtmlAttribute()) goto l845; goto l844;
|
3706
|
+
l845:; yypos= yypos845; yythunkpos= yythunkpos845;
|
3707
|
+
} if (!yymatchChar('>')) goto l841;
|
3635
3708
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenThead", yybuf+yypos));
|
3636
3709
|
return 1;
|
3637
|
-
|
3710
|
+
l841:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3638
3711
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenThead", yybuf+yypos));
|
3639
3712
|
return 0;
|
3640
3713
|
}
|
3641
3714
|
YY_RULE(int) yy_HtmlBlockCloseTh()
|
3642
3715
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3643
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseTh")); if (!yymatchChar('<')) goto
|
3644
|
-
{ int
|
3645
|
-
|
3716
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseTh")); if (!yymatchChar('<')) goto l846; if (!yy_Spnl()) goto l846; if (!yymatchChar('/')) goto l846;
|
3717
|
+
{ int yypos847= yypos, yythunkpos847= yythunkpos; if (!yymatchString("th")) goto l848; goto l847;
|
3718
|
+
l848:; yypos= yypos847; yythunkpos= yythunkpos847; if (!yymatchString("TH")) goto l846;
|
3646
3719
|
}
|
3647
|
-
|
3720
|
+
l847:; if (!yy_Spnl()) goto l846; if (!yymatchChar('>')) goto l846;
|
3648
3721
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTh", yybuf+yypos));
|
3649
3722
|
return 1;
|
3650
|
-
|
3723
|
+
l846:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3651
3724
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTh", yybuf+yypos));
|
3652
3725
|
return 0;
|
3653
3726
|
}
|
3654
3727
|
YY_RULE(int) yy_HtmlBlockOpenTh()
|
3655
3728
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3656
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenTh")); if (!yymatchChar('<')) goto
|
3657
|
-
{ int
|
3658
|
-
|
3729
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenTh")); if (!yymatchChar('<')) goto l849; if (!yy_Spnl()) goto l849;
|
3730
|
+
{ int yypos850= yypos, yythunkpos850= yythunkpos; if (!yymatchString("th")) goto l851; goto l850;
|
3731
|
+
l851:; yypos= yypos850; yythunkpos= yythunkpos850; if (!yymatchString("TH")) goto l849;
|
3659
3732
|
}
|
3660
|
-
|
3661
|
-
|
3662
|
-
{ int
|
3663
|
-
|
3664
|
-
} if (!yymatchChar('>')) goto
|
3733
|
+
l850:; if (!yy_Spnl()) goto l849;
|
3734
|
+
l852:;
|
3735
|
+
{ int yypos853= yypos, yythunkpos853= yythunkpos; if (!yy_HtmlAttribute()) goto l853; goto l852;
|
3736
|
+
l853:; yypos= yypos853; yythunkpos= yythunkpos853;
|
3737
|
+
} if (!yymatchChar('>')) goto l849;
|
3665
3738
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTh", yybuf+yypos));
|
3666
3739
|
return 1;
|
3667
|
-
|
3740
|
+
l849:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3668
3741
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTh", yybuf+yypos));
|
3669
3742
|
return 0;
|
3670
3743
|
}
|
3671
3744
|
YY_RULE(int) yy_HtmlBlockCloseTfoot()
|
3672
3745
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3673
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseTfoot")); if (!yymatchChar('<')) goto
|
3674
|
-
{ int
|
3675
|
-
|
3746
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseTfoot")); if (!yymatchChar('<')) goto l854; if (!yy_Spnl()) goto l854; if (!yymatchChar('/')) goto l854;
|
3747
|
+
{ int yypos855= yypos, yythunkpos855= yythunkpos; if (!yymatchString("tfoot")) goto l856; goto l855;
|
3748
|
+
l856:; yypos= yypos855; yythunkpos= yythunkpos855; if (!yymatchString("TFOOT")) goto l854;
|
3676
3749
|
}
|
3677
|
-
|
3750
|
+
l855:; if (!yy_Spnl()) goto l854; if (!yymatchChar('>')) goto l854;
|
3678
3751
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTfoot", yybuf+yypos));
|
3679
3752
|
return 1;
|
3680
|
-
|
3753
|
+
l854:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3681
3754
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTfoot", yybuf+yypos));
|
3682
3755
|
return 0;
|
3683
3756
|
}
|
3684
3757
|
YY_RULE(int) yy_HtmlBlockOpenTfoot()
|
3685
3758
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3686
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenTfoot")); if (!yymatchChar('<')) goto
|
3687
|
-
{ int
|
3688
|
-
|
3759
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenTfoot")); if (!yymatchChar('<')) goto l857; if (!yy_Spnl()) goto l857;
|
3760
|
+
{ int yypos858= yypos, yythunkpos858= yythunkpos; if (!yymatchString("tfoot")) goto l859; goto l858;
|
3761
|
+
l859:; yypos= yypos858; yythunkpos= yythunkpos858; if (!yymatchString("TFOOT")) goto l857;
|
3689
3762
|
}
|
3690
|
-
|
3691
|
-
|
3692
|
-
{ int
|
3693
|
-
|
3694
|
-
} if (!yymatchChar('>')) goto
|
3763
|
+
l858:; if (!yy_Spnl()) goto l857;
|
3764
|
+
l860:;
|
3765
|
+
{ int yypos861= yypos, yythunkpos861= yythunkpos; if (!yy_HtmlAttribute()) goto l861; goto l860;
|
3766
|
+
l861:; yypos= yypos861; yythunkpos= yythunkpos861;
|
3767
|
+
} if (!yymatchChar('>')) goto l857;
|
3695
3768
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTfoot", yybuf+yypos));
|
3696
3769
|
return 1;
|
3697
|
-
|
3770
|
+
l857:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3698
3771
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTfoot", yybuf+yypos));
|
3699
3772
|
return 0;
|
3700
3773
|
}
|
3701
3774
|
YY_RULE(int) yy_HtmlBlockCloseTd()
|
3702
3775
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3703
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseTd")); if (!yymatchChar('<')) goto
|
3704
|
-
{ int
|
3705
|
-
|
3776
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseTd")); if (!yymatchChar('<')) goto l862; if (!yy_Spnl()) goto l862; if (!yymatchChar('/')) goto l862;
|
3777
|
+
{ int yypos863= yypos, yythunkpos863= yythunkpos; if (!yymatchString("td")) goto l864; goto l863;
|
3778
|
+
l864:; yypos= yypos863; yythunkpos= yythunkpos863; if (!yymatchString("TD")) goto l862;
|
3706
3779
|
}
|
3707
|
-
|
3780
|
+
l863:; if (!yy_Spnl()) goto l862; if (!yymatchChar('>')) goto l862;
|
3708
3781
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTd", yybuf+yypos));
|
3709
3782
|
return 1;
|
3710
|
-
|
3783
|
+
l862:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3711
3784
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTd", yybuf+yypos));
|
3712
3785
|
return 0;
|
3713
3786
|
}
|
3714
3787
|
YY_RULE(int) yy_HtmlBlockOpenTd()
|
3715
3788
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3716
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenTd")); if (!yymatchChar('<')) goto
|
3717
|
-
{ int
|
3718
|
-
|
3789
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenTd")); if (!yymatchChar('<')) goto l865; if (!yy_Spnl()) goto l865;
|
3790
|
+
{ int yypos866= yypos, yythunkpos866= yythunkpos; if (!yymatchString("td")) goto l867; goto l866;
|
3791
|
+
l867:; yypos= yypos866; yythunkpos= yythunkpos866; if (!yymatchString("TD")) goto l865;
|
3719
3792
|
}
|
3720
|
-
|
3721
|
-
|
3722
|
-
{ int
|
3723
|
-
|
3724
|
-
} if (!yymatchChar('>')) goto
|
3793
|
+
l866:; if (!yy_Spnl()) goto l865;
|
3794
|
+
l868:;
|
3795
|
+
{ int yypos869= yypos, yythunkpos869= yythunkpos; if (!yy_HtmlAttribute()) goto l869; goto l868;
|
3796
|
+
l869:; yypos= yypos869; yythunkpos= yythunkpos869;
|
3797
|
+
} if (!yymatchChar('>')) goto l865;
|
3725
3798
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTd", yybuf+yypos));
|
3726
3799
|
return 1;
|
3727
|
-
|
3800
|
+
l865:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3728
3801
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTd", yybuf+yypos));
|
3729
3802
|
return 0;
|
3730
3803
|
}
|
3731
3804
|
YY_RULE(int) yy_HtmlBlockCloseTbody()
|
3732
3805
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3733
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseTbody")); if (!yymatchChar('<')) goto
|
3734
|
-
{ int
|
3735
|
-
|
3806
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseTbody")); if (!yymatchChar('<')) goto l870; if (!yy_Spnl()) goto l870; if (!yymatchChar('/')) goto l870;
|
3807
|
+
{ int yypos871= yypos, yythunkpos871= yythunkpos; if (!yymatchString("tbody")) goto l872; goto l871;
|
3808
|
+
l872:; yypos= yypos871; yythunkpos= yythunkpos871; if (!yymatchString("TBODY")) goto l870;
|
3736
3809
|
}
|
3737
|
-
|
3810
|
+
l871:; if (!yy_Spnl()) goto l870; if (!yymatchChar('>')) goto l870;
|
3738
3811
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTbody", yybuf+yypos));
|
3739
3812
|
return 1;
|
3740
|
-
|
3813
|
+
l870:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3741
3814
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTbody", yybuf+yypos));
|
3742
3815
|
return 0;
|
3743
3816
|
}
|
3744
3817
|
YY_RULE(int) yy_HtmlBlockOpenTbody()
|
3745
3818
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3746
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenTbody")); if (!yymatchChar('<')) goto
|
3747
|
-
{ int
|
3748
|
-
|
3819
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenTbody")); if (!yymatchChar('<')) goto l873; if (!yy_Spnl()) goto l873;
|
3820
|
+
{ int yypos874= yypos, yythunkpos874= yythunkpos; if (!yymatchString("tbody")) goto l875; goto l874;
|
3821
|
+
l875:; yypos= yypos874; yythunkpos= yythunkpos874; if (!yymatchString("TBODY")) goto l873;
|
3749
3822
|
}
|
3750
|
-
|
3751
|
-
|
3752
|
-
{ int
|
3753
|
-
|
3754
|
-
} if (!yymatchChar('>')) goto
|
3823
|
+
l874:; if (!yy_Spnl()) goto l873;
|
3824
|
+
l876:;
|
3825
|
+
{ int yypos877= yypos, yythunkpos877= yythunkpos; if (!yy_HtmlAttribute()) goto l877; goto l876;
|
3826
|
+
l877:; yypos= yypos877; yythunkpos= yythunkpos877;
|
3827
|
+
} if (!yymatchChar('>')) goto l873;
|
3755
3828
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTbody", yybuf+yypos));
|
3756
3829
|
return 1;
|
3757
|
-
|
3830
|
+
l873:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3758
3831
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTbody", yybuf+yypos));
|
3759
3832
|
return 0;
|
3760
3833
|
}
|
3761
3834
|
YY_RULE(int) yy_HtmlBlockCloseLi()
|
3762
3835
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3763
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseLi")); if (!yymatchChar('<')) goto
|
3764
|
-
{ int
|
3765
|
-
|
3836
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseLi")); if (!yymatchChar('<')) goto l878; if (!yy_Spnl()) goto l878; if (!yymatchChar('/')) goto l878;
|
3837
|
+
{ int yypos879= yypos, yythunkpos879= yythunkpos; if (!yymatchString("li")) goto l880; goto l879;
|
3838
|
+
l880:; yypos= yypos879; yythunkpos= yythunkpos879; if (!yymatchString("LI")) goto l878;
|
3766
3839
|
}
|
3767
|
-
|
3840
|
+
l879:; if (!yy_Spnl()) goto l878; if (!yymatchChar('>')) goto l878;
|
3768
3841
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseLi", yybuf+yypos));
|
3769
3842
|
return 1;
|
3770
|
-
|
3843
|
+
l878:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3771
3844
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseLi", yybuf+yypos));
|
3772
3845
|
return 0;
|
3773
3846
|
}
|
3774
3847
|
YY_RULE(int) yy_HtmlBlockOpenLi()
|
3775
3848
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3776
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenLi")); if (!yymatchChar('<')) goto
|
3777
|
-
{ int
|
3778
|
-
|
3849
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenLi")); if (!yymatchChar('<')) goto l881; if (!yy_Spnl()) goto l881;
|
3850
|
+
{ int yypos882= yypos, yythunkpos882= yythunkpos; if (!yymatchString("li")) goto l883; goto l882;
|
3851
|
+
l883:; yypos= yypos882; yythunkpos= yythunkpos882; if (!yymatchString("LI")) goto l881;
|
3779
3852
|
}
|
3780
|
-
|
3781
|
-
|
3782
|
-
{ int
|
3783
|
-
|
3784
|
-
} if (!yymatchChar('>')) goto
|
3853
|
+
l882:; if (!yy_Spnl()) goto l881;
|
3854
|
+
l884:;
|
3855
|
+
{ int yypos885= yypos, yythunkpos885= yythunkpos; if (!yy_HtmlAttribute()) goto l885; goto l884;
|
3856
|
+
l885:; yypos= yypos885; yythunkpos= yythunkpos885;
|
3857
|
+
} if (!yymatchChar('>')) goto l881;
|
3785
3858
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenLi", yybuf+yypos));
|
3786
3859
|
return 1;
|
3787
|
-
|
3860
|
+
l881:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3788
3861
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenLi", yybuf+yypos));
|
3789
3862
|
return 0;
|
3790
3863
|
}
|
3791
3864
|
YY_RULE(int) yy_HtmlBlockCloseFrameset()
|
3792
3865
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3793
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseFrameset")); if (!yymatchChar('<')) goto
|
3794
|
-
{ int
|
3795
|
-
|
3866
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseFrameset")); if (!yymatchChar('<')) goto l886; if (!yy_Spnl()) goto l886; if (!yymatchChar('/')) goto l886;
|
3867
|
+
{ int yypos887= yypos, yythunkpos887= yythunkpos; if (!yymatchString("frameset")) goto l888; goto l887;
|
3868
|
+
l888:; yypos= yypos887; yythunkpos= yythunkpos887; if (!yymatchString("FRAMESET")) goto l886;
|
3796
3869
|
}
|
3797
|
-
|
3870
|
+
l887:; if (!yy_Spnl()) goto l886; if (!yymatchChar('>')) goto l886;
|
3798
3871
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseFrameset", yybuf+yypos));
|
3799
3872
|
return 1;
|
3800
|
-
|
3873
|
+
l886:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3801
3874
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseFrameset", yybuf+yypos));
|
3802
3875
|
return 0;
|
3803
3876
|
}
|
3804
3877
|
YY_RULE(int) yy_HtmlBlockOpenFrameset()
|
3805
3878
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3806
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenFrameset")); if (!yymatchChar('<')) goto
|
3807
|
-
{ int
|
3808
|
-
|
3879
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenFrameset")); if (!yymatchChar('<')) goto l889; if (!yy_Spnl()) goto l889;
|
3880
|
+
{ int yypos890= yypos, yythunkpos890= yythunkpos; if (!yymatchString("frameset")) goto l891; goto l890;
|
3881
|
+
l891:; yypos= yypos890; yythunkpos= yythunkpos890; if (!yymatchString("FRAMESET")) goto l889;
|
3809
3882
|
}
|
3810
|
-
|
3811
|
-
|
3812
|
-
{ int
|
3813
|
-
|
3814
|
-
} if (!yymatchChar('>')) goto
|
3883
|
+
l890:; if (!yy_Spnl()) goto l889;
|
3884
|
+
l892:;
|
3885
|
+
{ int yypos893= yypos, yythunkpos893= yythunkpos; if (!yy_HtmlAttribute()) goto l893; goto l892;
|
3886
|
+
l893:; yypos= yypos893; yythunkpos= yythunkpos893;
|
3887
|
+
} if (!yymatchChar('>')) goto l889;
|
3815
3888
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenFrameset", yybuf+yypos));
|
3816
3889
|
return 1;
|
3817
|
-
|
3890
|
+
l889:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3818
3891
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenFrameset", yybuf+yypos));
|
3819
3892
|
return 0;
|
3820
3893
|
}
|
3821
3894
|
YY_RULE(int) yy_HtmlBlockCloseDt()
|
3822
3895
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3823
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseDt")); if (!yymatchChar('<')) goto
|
3824
|
-
{ int
|
3825
|
-
|
3896
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseDt")); if (!yymatchChar('<')) goto l894; if (!yy_Spnl()) goto l894; if (!yymatchChar('/')) goto l894;
|
3897
|
+
{ int yypos895= yypos, yythunkpos895= yythunkpos; if (!yymatchString("dt")) goto l896; goto l895;
|
3898
|
+
l896:; yypos= yypos895; yythunkpos= yythunkpos895; if (!yymatchString("DT")) goto l894;
|
3826
3899
|
}
|
3827
|
-
|
3900
|
+
l895:; if (!yy_Spnl()) goto l894; if (!yymatchChar('>')) goto l894;
|
3828
3901
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDt", yybuf+yypos));
|
3829
3902
|
return 1;
|
3830
|
-
|
3903
|
+
l894:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3831
3904
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDt", yybuf+yypos));
|
3832
3905
|
return 0;
|
3833
3906
|
}
|
3834
3907
|
YY_RULE(int) yy_HtmlBlockOpenDt()
|
3835
3908
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3836
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenDt")); if (!yymatchChar('<')) goto
|
3837
|
-
{ int
|
3838
|
-
|
3909
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenDt")); if (!yymatchChar('<')) goto l897; if (!yy_Spnl()) goto l897;
|
3910
|
+
{ int yypos898= yypos, yythunkpos898= yythunkpos; if (!yymatchString("dt")) goto l899; goto l898;
|
3911
|
+
l899:; yypos= yypos898; yythunkpos= yythunkpos898; if (!yymatchString("DT")) goto l897;
|
3839
3912
|
}
|
3840
|
-
|
3841
|
-
|
3842
|
-
{ int
|
3843
|
-
|
3844
|
-
} if (!yymatchChar('>')) goto
|
3913
|
+
l898:; if (!yy_Spnl()) goto l897;
|
3914
|
+
l900:;
|
3915
|
+
{ int yypos901= yypos, yythunkpos901= yythunkpos; if (!yy_HtmlAttribute()) goto l901; goto l900;
|
3916
|
+
l901:; yypos= yypos901; yythunkpos= yythunkpos901;
|
3917
|
+
} if (!yymatchChar('>')) goto l897;
|
3845
3918
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDt", yybuf+yypos));
|
3846
3919
|
return 1;
|
3847
|
-
|
3920
|
+
l897:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3848
3921
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDt", yybuf+yypos));
|
3849
3922
|
return 0;
|
3850
3923
|
}
|
3851
3924
|
YY_RULE(int) yy_HtmlBlockCloseDd()
|
3852
3925
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3853
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseDd")); if (!yymatchChar('<')) goto
|
3854
|
-
{ int
|
3855
|
-
|
3926
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseDd")); if (!yymatchChar('<')) goto l902; if (!yy_Spnl()) goto l902; if (!yymatchChar('/')) goto l902;
|
3927
|
+
{ int yypos903= yypos, yythunkpos903= yythunkpos; if (!yymatchString("dd")) goto l904; goto l903;
|
3928
|
+
l904:; yypos= yypos903; yythunkpos= yythunkpos903; if (!yymatchString("DD")) goto l902;
|
3856
3929
|
}
|
3857
|
-
|
3930
|
+
l903:; if (!yy_Spnl()) goto l902; if (!yymatchChar('>')) goto l902;
|
3858
3931
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDd", yybuf+yypos));
|
3859
3932
|
return 1;
|
3860
|
-
|
3933
|
+
l902:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3861
3934
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDd", yybuf+yypos));
|
3862
3935
|
return 0;
|
3863
3936
|
}
|
3864
3937
|
YY_RULE(int) yy_HtmlBlockOpenDd()
|
3865
3938
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3866
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenDd")); if (!yymatchChar('<')) goto
|
3867
|
-
{ int
|
3868
|
-
|
3939
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenDd")); if (!yymatchChar('<')) goto l905; if (!yy_Spnl()) goto l905;
|
3940
|
+
{ int yypos906= yypos, yythunkpos906= yythunkpos; if (!yymatchString("dd")) goto l907; goto l906;
|
3941
|
+
l907:; yypos= yypos906; yythunkpos= yythunkpos906; if (!yymatchString("DD")) goto l905;
|
3869
3942
|
}
|
3870
|
-
|
3871
|
-
|
3872
|
-
{ int
|
3873
|
-
|
3874
|
-
} if (!yymatchChar('>')) goto
|
3943
|
+
l906:; if (!yy_Spnl()) goto l905;
|
3944
|
+
l908:;
|
3945
|
+
{ int yypos909= yypos, yythunkpos909= yythunkpos; if (!yy_HtmlAttribute()) goto l909; goto l908;
|
3946
|
+
l909:; yypos= yypos909; yythunkpos= yythunkpos909;
|
3947
|
+
} if (!yymatchChar('>')) goto l905;
|
3875
3948
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDd", yybuf+yypos));
|
3876
3949
|
return 1;
|
3877
|
-
|
3950
|
+
l905:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3878
3951
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDd", yybuf+yypos));
|
3879
3952
|
return 0;
|
3880
3953
|
}
|
3881
3954
|
YY_RULE(int) yy_HtmlBlockCloseUl()
|
3882
3955
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3883
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseUl")); if (!yymatchChar('<')) goto
|
3884
|
-
{ int
|
3885
|
-
|
3956
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseUl")); if (!yymatchChar('<')) goto l910; if (!yy_Spnl()) goto l910; if (!yymatchChar('/')) goto l910;
|
3957
|
+
{ int yypos911= yypos, yythunkpos911= yythunkpos; if (!yymatchString("ul")) goto l912; goto l911;
|
3958
|
+
l912:; yypos= yypos911; yythunkpos= yythunkpos911; if (!yymatchString("UL")) goto l910;
|
3886
3959
|
}
|
3887
|
-
|
3960
|
+
l911:; if (!yy_Spnl()) goto l910; if (!yymatchChar('>')) goto l910;
|
3888
3961
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseUl", yybuf+yypos));
|
3889
3962
|
return 1;
|
3890
|
-
|
3963
|
+
l910:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3891
3964
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseUl", yybuf+yypos));
|
3892
3965
|
return 0;
|
3893
3966
|
}
|
3894
3967
|
YY_RULE(int) yy_HtmlBlockOpenUl()
|
3895
3968
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3896
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenUl")); if (!yymatchChar('<')) goto
|
3897
|
-
{ int
|
3898
|
-
|
3969
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenUl")); if (!yymatchChar('<')) goto l913; if (!yy_Spnl()) goto l913;
|
3970
|
+
{ int yypos914= yypos, yythunkpos914= yythunkpos; if (!yymatchString("ul")) goto l915; goto l914;
|
3971
|
+
l915:; yypos= yypos914; yythunkpos= yythunkpos914; if (!yymatchString("UL")) goto l913;
|
3899
3972
|
}
|
3900
|
-
|
3901
|
-
|
3902
|
-
{ int
|
3903
|
-
|
3904
|
-
} if (!yymatchChar('>')) goto
|
3973
|
+
l914:; if (!yy_Spnl()) goto l913;
|
3974
|
+
l916:;
|
3975
|
+
{ int yypos917= yypos, yythunkpos917= yythunkpos; if (!yy_HtmlAttribute()) goto l917; goto l916;
|
3976
|
+
l917:; yypos= yypos917; yythunkpos= yythunkpos917;
|
3977
|
+
} if (!yymatchChar('>')) goto l913;
|
3905
3978
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenUl", yybuf+yypos));
|
3906
3979
|
return 1;
|
3907
|
-
|
3980
|
+
l913:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3908
3981
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenUl", yybuf+yypos));
|
3909
3982
|
return 0;
|
3910
3983
|
}
|
3911
3984
|
YY_RULE(int) yy_HtmlBlockCloseTable()
|
3912
3985
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3913
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseTable")); if (!yymatchChar('<')) goto
|
3914
|
-
{ int
|
3915
|
-
|
3986
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseTable")); if (!yymatchChar('<')) goto l918; if (!yy_Spnl()) goto l918; if (!yymatchChar('/')) goto l918;
|
3987
|
+
{ int yypos919= yypos, yythunkpos919= yythunkpos; if (!yymatchString("table")) goto l920; goto l919;
|
3988
|
+
l920:; yypos= yypos919; yythunkpos= yythunkpos919; if (!yymatchString("TABLE")) goto l918;
|
3916
3989
|
}
|
3917
|
-
|
3990
|
+
l919:; if (!yy_Spnl()) goto l918; if (!yymatchChar('>')) goto l918;
|
3918
3991
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTable", yybuf+yypos));
|
3919
3992
|
return 1;
|
3920
|
-
|
3993
|
+
l918:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3921
3994
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTable", yybuf+yypos));
|
3922
3995
|
return 0;
|
3923
3996
|
}
|
3924
3997
|
YY_RULE(int) yy_HtmlBlockOpenTable()
|
3925
3998
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3926
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenTable")); if (!yymatchChar('<')) goto
|
3927
|
-
{ int
|
3928
|
-
|
3999
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenTable")); if (!yymatchChar('<')) goto l921; if (!yy_Spnl()) goto l921;
|
4000
|
+
{ int yypos922= yypos, yythunkpos922= yythunkpos; if (!yymatchString("table")) goto l923; goto l922;
|
4001
|
+
l923:; yypos= yypos922; yythunkpos= yythunkpos922; if (!yymatchString("TABLE")) goto l921;
|
3929
4002
|
}
|
3930
|
-
|
3931
|
-
|
3932
|
-
{ int
|
3933
|
-
|
3934
|
-
} if (!yymatchChar('>')) goto
|
4003
|
+
l922:; if (!yy_Spnl()) goto l921;
|
4004
|
+
l924:;
|
4005
|
+
{ int yypos925= yypos, yythunkpos925= yythunkpos; if (!yy_HtmlAttribute()) goto l925; goto l924;
|
4006
|
+
l925:; yypos= yypos925; yythunkpos= yythunkpos925;
|
4007
|
+
} if (!yymatchChar('>')) goto l921;
|
3935
4008
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTable", yybuf+yypos));
|
3936
4009
|
return 1;
|
3937
|
-
|
4010
|
+
l921:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3938
4011
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTable", yybuf+yypos));
|
3939
4012
|
return 0;
|
3940
4013
|
}
|
3941
4014
|
YY_RULE(int) yy_HtmlBlockClosePre()
|
3942
4015
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3943
|
-
yyprintf((stderr, "%s\n", "HtmlBlockClosePre")); if (!yymatchChar('<')) goto
|
3944
|
-
{ int
|
3945
|
-
|
4016
|
+
yyprintf((stderr, "%s\n", "HtmlBlockClosePre")); if (!yymatchChar('<')) goto l926; if (!yy_Spnl()) goto l926; if (!yymatchChar('/')) goto l926;
|
4017
|
+
{ int yypos927= yypos, yythunkpos927= yythunkpos; if (!yymatchString("pre")) goto l928; goto l927;
|
4018
|
+
l928:; yypos= yypos927; yythunkpos= yythunkpos927; if (!yymatchString("PRE")) goto l926;
|
3946
4019
|
}
|
3947
|
-
|
4020
|
+
l927:; if (!yy_Spnl()) goto l926; if (!yymatchChar('>')) goto l926;
|
3948
4021
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockClosePre", yybuf+yypos));
|
3949
4022
|
return 1;
|
3950
|
-
|
4023
|
+
l926:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3951
4024
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockClosePre", yybuf+yypos));
|
3952
4025
|
return 0;
|
3953
4026
|
}
|
3954
4027
|
YY_RULE(int) yy_HtmlBlockOpenPre()
|
3955
4028
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3956
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenPre")); if (!yymatchChar('<')) goto
|
3957
|
-
{ int
|
3958
|
-
|
4029
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenPre")); if (!yymatchChar('<')) goto l929; if (!yy_Spnl()) goto l929;
|
4030
|
+
{ int yypos930= yypos, yythunkpos930= yythunkpos; if (!yymatchString("pre")) goto l931; goto l930;
|
4031
|
+
l931:; yypos= yypos930; yythunkpos= yythunkpos930; if (!yymatchString("PRE")) goto l929;
|
3959
4032
|
}
|
3960
|
-
|
3961
|
-
|
3962
|
-
{ int
|
3963
|
-
|
3964
|
-
} if (!yymatchChar('>')) goto
|
4033
|
+
l930:; if (!yy_Spnl()) goto l929;
|
4034
|
+
l932:;
|
4035
|
+
{ int yypos933= yypos, yythunkpos933= yythunkpos; if (!yy_HtmlAttribute()) goto l933; goto l932;
|
4036
|
+
l933:; yypos= yypos933; yythunkpos= yythunkpos933;
|
4037
|
+
} if (!yymatchChar('>')) goto l929;
|
3965
4038
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenPre", yybuf+yypos));
|
3966
4039
|
return 1;
|
3967
|
-
|
4040
|
+
l929:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3968
4041
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenPre", yybuf+yypos));
|
3969
4042
|
return 0;
|
3970
4043
|
}
|
3971
4044
|
YY_RULE(int) yy_HtmlBlockCloseP()
|
3972
4045
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3973
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseP")); if (!yymatchChar('<')) goto
|
3974
|
-
{ int
|
3975
|
-
|
4046
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseP")); if (!yymatchChar('<')) goto l934; if (!yy_Spnl()) goto l934; if (!yymatchChar('/')) goto l934;
|
4047
|
+
{ int yypos935= yypos, yythunkpos935= yythunkpos; if (!yymatchChar('p')) goto l936; goto l935;
|
4048
|
+
l936:; yypos= yypos935; yythunkpos= yythunkpos935; if (!yymatchChar('P')) goto l934;
|
3976
4049
|
}
|
3977
|
-
|
4050
|
+
l935:; if (!yy_Spnl()) goto l934; if (!yymatchChar('>')) goto l934;
|
3978
4051
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseP", yybuf+yypos));
|
3979
4052
|
return 1;
|
3980
|
-
|
4053
|
+
l934:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3981
4054
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseP", yybuf+yypos));
|
3982
4055
|
return 0;
|
3983
4056
|
}
|
3984
4057
|
YY_RULE(int) yy_HtmlBlockOpenP()
|
3985
4058
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
3986
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenP")); if (!yymatchChar('<')) goto
|
3987
|
-
{ int
|
3988
|
-
|
4059
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenP")); if (!yymatchChar('<')) goto l937; if (!yy_Spnl()) goto l937;
|
4060
|
+
{ int yypos938= yypos, yythunkpos938= yythunkpos; if (!yymatchChar('p')) goto l939; goto l938;
|
4061
|
+
l939:; yypos= yypos938; yythunkpos= yythunkpos938; if (!yymatchChar('P')) goto l937;
|
3989
4062
|
}
|
3990
|
-
|
3991
|
-
|
3992
|
-
{ int
|
3993
|
-
|
3994
|
-
} if (!yymatchChar('>')) goto
|
4063
|
+
l938:; if (!yy_Spnl()) goto l937;
|
4064
|
+
l940:;
|
4065
|
+
{ int yypos941= yypos, yythunkpos941= yythunkpos; if (!yy_HtmlAttribute()) goto l941; goto l940;
|
4066
|
+
l941:; yypos= yypos941; yythunkpos= yythunkpos941;
|
4067
|
+
} if (!yymatchChar('>')) goto l937;
|
3995
4068
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenP", yybuf+yypos));
|
3996
4069
|
return 1;
|
3997
|
-
|
4070
|
+
l937:; yypos= yypos0; yythunkpos= yythunkpos0;
|
3998
4071
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenP", yybuf+yypos));
|
3999
4072
|
return 0;
|
4000
4073
|
}
|
4001
4074
|
YY_RULE(int) yy_HtmlBlockCloseOl()
|
4002
4075
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4003
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseOl")); if (!yymatchChar('<')) goto
|
4004
|
-
{ int
|
4005
|
-
|
4076
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseOl")); if (!yymatchChar('<')) goto l942; if (!yy_Spnl()) goto l942; if (!yymatchChar('/')) goto l942;
|
4077
|
+
{ int yypos943= yypos, yythunkpos943= yythunkpos; if (!yymatchString("ol")) goto l944; goto l943;
|
4078
|
+
l944:; yypos= yypos943; yythunkpos= yythunkpos943; if (!yymatchString("OL")) goto l942;
|
4006
4079
|
}
|
4007
|
-
|
4080
|
+
l943:; if (!yy_Spnl()) goto l942; if (!yymatchChar('>')) goto l942;
|
4008
4081
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseOl", yybuf+yypos));
|
4009
4082
|
return 1;
|
4010
|
-
|
4083
|
+
l942:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4011
4084
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseOl", yybuf+yypos));
|
4012
4085
|
return 0;
|
4013
4086
|
}
|
4014
4087
|
YY_RULE(int) yy_HtmlBlockOpenOl()
|
4015
4088
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4016
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenOl")); if (!yymatchChar('<')) goto
|
4017
|
-
{ int
|
4018
|
-
|
4089
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenOl")); if (!yymatchChar('<')) goto l945; if (!yy_Spnl()) goto l945;
|
4090
|
+
{ int yypos946= yypos, yythunkpos946= yythunkpos; if (!yymatchString("ol")) goto l947; goto l946;
|
4091
|
+
l947:; yypos= yypos946; yythunkpos= yythunkpos946; if (!yymatchString("OL")) goto l945;
|
4019
4092
|
}
|
4020
|
-
|
4021
|
-
|
4022
|
-
{ int
|
4023
|
-
|
4024
|
-
} if (!yymatchChar('>')) goto
|
4093
|
+
l946:; if (!yy_Spnl()) goto l945;
|
4094
|
+
l948:;
|
4095
|
+
{ int yypos949= yypos, yythunkpos949= yythunkpos; if (!yy_HtmlAttribute()) goto l949; goto l948;
|
4096
|
+
l949:; yypos= yypos949; yythunkpos= yythunkpos949;
|
4097
|
+
} if (!yymatchChar('>')) goto l945;
|
4025
4098
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenOl", yybuf+yypos));
|
4026
4099
|
return 1;
|
4027
|
-
|
4100
|
+
l945:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4028
4101
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenOl", yybuf+yypos));
|
4029
4102
|
return 0;
|
4030
4103
|
}
|
4031
4104
|
YY_RULE(int) yy_HtmlBlockCloseNoscript()
|
4032
4105
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4033
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseNoscript")); if (!yymatchChar('<')) goto
|
4034
|
-
{ int
|
4035
|
-
|
4106
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseNoscript")); if (!yymatchChar('<')) goto l950; if (!yy_Spnl()) goto l950; if (!yymatchChar('/')) goto l950;
|
4107
|
+
{ int yypos951= yypos, yythunkpos951= yythunkpos; if (!yymatchString("noscript")) goto l952; goto l951;
|
4108
|
+
l952:; yypos= yypos951; yythunkpos= yythunkpos951; if (!yymatchString("NOSCRIPT")) goto l950;
|
4036
4109
|
}
|
4037
|
-
|
4110
|
+
l951:; if (!yy_Spnl()) goto l950; if (!yymatchChar('>')) goto l950;
|
4038
4111
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseNoscript", yybuf+yypos));
|
4039
4112
|
return 1;
|
4040
|
-
|
4113
|
+
l950:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4041
4114
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseNoscript", yybuf+yypos));
|
4042
4115
|
return 0;
|
4043
4116
|
}
|
4044
4117
|
YY_RULE(int) yy_HtmlBlockOpenNoscript()
|
4045
4118
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4046
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenNoscript")); if (!yymatchChar('<')) goto
|
4047
|
-
{ int
|
4048
|
-
|
4119
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenNoscript")); if (!yymatchChar('<')) goto l953; if (!yy_Spnl()) goto l953;
|
4120
|
+
{ int yypos954= yypos, yythunkpos954= yythunkpos; if (!yymatchString("noscript")) goto l955; goto l954;
|
4121
|
+
l955:; yypos= yypos954; yythunkpos= yythunkpos954; if (!yymatchString("NOSCRIPT")) goto l953;
|
4049
4122
|
}
|
4050
|
-
|
4051
|
-
|
4052
|
-
{ int
|
4053
|
-
|
4054
|
-
} if (!yymatchChar('>')) goto
|
4123
|
+
l954:; if (!yy_Spnl()) goto l953;
|
4124
|
+
l956:;
|
4125
|
+
{ int yypos957= yypos, yythunkpos957= yythunkpos; if (!yy_HtmlAttribute()) goto l957; goto l956;
|
4126
|
+
l957:; yypos= yypos957; yythunkpos= yythunkpos957;
|
4127
|
+
} if (!yymatchChar('>')) goto l953;
|
4055
4128
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenNoscript", yybuf+yypos));
|
4056
4129
|
return 1;
|
4057
|
-
|
4130
|
+
l953:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4058
4131
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenNoscript", yybuf+yypos));
|
4059
4132
|
return 0;
|
4060
4133
|
}
|
4061
4134
|
YY_RULE(int) yy_HtmlBlockCloseNoframes()
|
4062
4135
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4063
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseNoframes")); if (!yymatchChar('<')) goto
|
4064
|
-
{ int
|
4065
|
-
|
4136
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseNoframes")); if (!yymatchChar('<')) goto l958; if (!yy_Spnl()) goto l958; if (!yymatchChar('/')) goto l958;
|
4137
|
+
{ int yypos959= yypos, yythunkpos959= yythunkpos; if (!yymatchString("noframes")) goto l960; goto l959;
|
4138
|
+
l960:; yypos= yypos959; yythunkpos= yythunkpos959; if (!yymatchString("NOFRAMES")) goto l958;
|
4066
4139
|
}
|
4067
|
-
|
4140
|
+
l959:; if (!yy_Spnl()) goto l958; if (!yymatchChar('>')) goto l958;
|
4068
4141
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseNoframes", yybuf+yypos));
|
4069
4142
|
return 1;
|
4070
|
-
|
4143
|
+
l958:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4071
4144
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseNoframes", yybuf+yypos));
|
4072
4145
|
return 0;
|
4073
4146
|
}
|
4074
4147
|
YY_RULE(int) yy_HtmlBlockOpenNoframes()
|
4075
4148
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4076
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenNoframes")); if (!yymatchChar('<')) goto
|
4077
|
-
{ int
|
4078
|
-
|
4149
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenNoframes")); if (!yymatchChar('<')) goto l961; if (!yy_Spnl()) goto l961;
|
4150
|
+
{ int yypos962= yypos, yythunkpos962= yythunkpos; if (!yymatchString("noframes")) goto l963; goto l962;
|
4151
|
+
l963:; yypos= yypos962; yythunkpos= yythunkpos962; if (!yymatchString("NOFRAMES")) goto l961;
|
4079
4152
|
}
|
4080
|
-
|
4081
|
-
|
4082
|
-
{ int
|
4083
|
-
|
4084
|
-
} if (!yymatchChar('>')) goto
|
4153
|
+
l962:; if (!yy_Spnl()) goto l961;
|
4154
|
+
l964:;
|
4155
|
+
{ int yypos965= yypos, yythunkpos965= yythunkpos; if (!yy_HtmlAttribute()) goto l965; goto l964;
|
4156
|
+
l965:; yypos= yypos965; yythunkpos= yythunkpos965;
|
4157
|
+
} if (!yymatchChar('>')) goto l961;
|
4085
4158
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenNoframes", yybuf+yypos));
|
4086
4159
|
return 1;
|
4087
|
-
|
4160
|
+
l961:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4088
4161
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenNoframes", yybuf+yypos));
|
4089
4162
|
return 0;
|
4090
4163
|
}
|
4091
4164
|
YY_RULE(int) yy_HtmlBlockCloseMenu()
|
4092
4165
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4093
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseMenu")); if (!yymatchChar('<')) goto
|
4094
|
-
{ int
|
4095
|
-
|
4166
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseMenu")); if (!yymatchChar('<')) goto l966; if (!yy_Spnl()) goto l966; if (!yymatchChar('/')) goto l966;
|
4167
|
+
{ int yypos967= yypos, yythunkpos967= yythunkpos; if (!yymatchString("menu")) goto l968; goto l967;
|
4168
|
+
l968:; yypos= yypos967; yythunkpos= yythunkpos967; if (!yymatchString("MENU")) goto l966;
|
4096
4169
|
}
|
4097
|
-
|
4170
|
+
l967:; if (!yy_Spnl()) goto l966; if (!yymatchChar('>')) goto l966;
|
4098
4171
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseMenu", yybuf+yypos));
|
4099
4172
|
return 1;
|
4100
|
-
|
4173
|
+
l966:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4101
4174
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseMenu", yybuf+yypos));
|
4102
4175
|
return 0;
|
4103
4176
|
}
|
4104
4177
|
YY_RULE(int) yy_HtmlBlockOpenMenu()
|
4105
4178
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4106
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenMenu")); if (!yymatchChar('<')) goto
|
4107
|
-
{ int
|
4108
|
-
|
4179
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenMenu")); if (!yymatchChar('<')) goto l969; if (!yy_Spnl()) goto l969;
|
4180
|
+
{ int yypos970= yypos, yythunkpos970= yythunkpos; if (!yymatchString("menu")) goto l971; goto l970;
|
4181
|
+
l971:; yypos= yypos970; yythunkpos= yythunkpos970; if (!yymatchString("MENU")) goto l969;
|
4109
4182
|
}
|
4110
|
-
|
4111
|
-
|
4112
|
-
{ int
|
4113
|
-
|
4114
|
-
} if (!yymatchChar('>')) goto
|
4183
|
+
l970:; if (!yy_Spnl()) goto l969;
|
4184
|
+
l972:;
|
4185
|
+
{ int yypos973= yypos, yythunkpos973= yythunkpos; if (!yy_HtmlAttribute()) goto l973; goto l972;
|
4186
|
+
l973:; yypos= yypos973; yythunkpos= yythunkpos973;
|
4187
|
+
} if (!yymatchChar('>')) goto l969;
|
4115
4188
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenMenu", yybuf+yypos));
|
4116
4189
|
return 1;
|
4117
|
-
|
4190
|
+
l969:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4118
4191
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenMenu", yybuf+yypos));
|
4119
4192
|
return 0;
|
4120
4193
|
}
|
4121
4194
|
YY_RULE(int) yy_HtmlBlockCloseIsindex()
|
4122
4195
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4123
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseIsindex")); if (!yymatchChar('<')) goto
|
4124
|
-
{ int
|
4125
|
-
|
4196
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseIsindex")); if (!yymatchChar('<')) goto l974; if (!yy_Spnl()) goto l974; if (!yymatchChar('/')) goto l974;
|
4197
|
+
{ int yypos975= yypos, yythunkpos975= yythunkpos; if (!yymatchString("isindex")) goto l976; goto l975;
|
4198
|
+
l976:; yypos= yypos975; yythunkpos= yythunkpos975; if (!yymatchString("ISINDEX")) goto l974;
|
4126
4199
|
}
|
4127
|
-
|
4200
|
+
l975:; if (!yy_Spnl()) goto l974; if (!yymatchChar('>')) goto l974;
|
4128
4201
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseIsindex", yybuf+yypos));
|
4129
4202
|
return 1;
|
4130
|
-
|
4203
|
+
l974:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4131
4204
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseIsindex", yybuf+yypos));
|
4132
4205
|
return 0;
|
4133
4206
|
}
|
4134
4207
|
YY_RULE(int) yy_HtmlBlockOpenIsindex()
|
4135
4208
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4136
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenIsindex")); if (!yymatchChar('<')) goto
|
4137
|
-
{ int
|
4138
|
-
|
4209
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenIsindex")); if (!yymatchChar('<')) goto l977; if (!yy_Spnl()) goto l977;
|
4210
|
+
{ int yypos978= yypos, yythunkpos978= yythunkpos; if (!yymatchString("isindex")) goto l979; goto l978;
|
4211
|
+
l979:; yypos= yypos978; yythunkpos= yythunkpos978; if (!yymatchString("ISINDEX")) goto l977;
|
4139
4212
|
}
|
4140
|
-
|
4141
|
-
|
4142
|
-
{ int
|
4143
|
-
|
4144
|
-
} if (!yymatchChar('>')) goto
|
4213
|
+
l978:; if (!yy_Spnl()) goto l977;
|
4214
|
+
l980:;
|
4215
|
+
{ int yypos981= yypos, yythunkpos981= yythunkpos; if (!yy_HtmlAttribute()) goto l981; goto l980;
|
4216
|
+
l981:; yypos= yypos981; yythunkpos= yythunkpos981;
|
4217
|
+
} if (!yymatchChar('>')) goto l977;
|
4145
4218
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenIsindex", yybuf+yypos));
|
4146
4219
|
return 1;
|
4147
|
-
|
4220
|
+
l977:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4148
4221
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenIsindex", yybuf+yypos));
|
4149
4222
|
return 0;
|
4150
4223
|
}
|
4151
4224
|
YY_RULE(int) yy_HtmlBlockCloseHr()
|
4152
4225
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4153
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseHr")); if (!yymatchChar('<')) goto
|
4154
|
-
{ int
|
4155
|
-
|
4226
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseHr")); if (!yymatchChar('<')) goto l982; if (!yy_Spnl()) goto l982; if (!yymatchChar('/')) goto l982;
|
4227
|
+
{ int yypos983= yypos, yythunkpos983= yythunkpos; if (!yymatchString("hr")) goto l984; goto l983;
|
4228
|
+
l984:; yypos= yypos983; yythunkpos= yythunkpos983; if (!yymatchString("HR")) goto l982;
|
4156
4229
|
}
|
4157
|
-
|
4230
|
+
l983:; if (!yy_Spnl()) goto l982; if (!yymatchChar('>')) goto l982;
|
4158
4231
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseHr", yybuf+yypos));
|
4159
4232
|
return 1;
|
4160
|
-
|
4233
|
+
l982:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4161
4234
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseHr", yybuf+yypos));
|
4162
4235
|
return 0;
|
4163
4236
|
}
|
4164
4237
|
YY_RULE(int) yy_HtmlBlockOpenHr()
|
4165
4238
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4166
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenHr")); if (!yymatchChar('<')) goto
|
4167
|
-
{ int
|
4168
|
-
|
4239
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenHr")); if (!yymatchChar('<')) goto l985; if (!yy_Spnl()) goto l985;
|
4240
|
+
{ int yypos986= yypos, yythunkpos986= yythunkpos; if (!yymatchString("hr")) goto l987; goto l986;
|
4241
|
+
l987:; yypos= yypos986; yythunkpos= yythunkpos986; if (!yymatchString("HR")) goto l985;
|
4169
4242
|
}
|
4170
|
-
|
4171
|
-
|
4172
|
-
{ int
|
4173
|
-
|
4174
|
-
} if (!yymatchChar('>')) goto
|
4243
|
+
l986:; if (!yy_Spnl()) goto l985;
|
4244
|
+
l988:;
|
4245
|
+
{ int yypos989= yypos, yythunkpos989= yythunkpos; if (!yy_HtmlAttribute()) goto l989; goto l988;
|
4246
|
+
l989:; yypos= yypos989; yythunkpos= yythunkpos989;
|
4247
|
+
} if (!yymatchChar('>')) goto l985;
|
4175
4248
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenHr", yybuf+yypos));
|
4176
4249
|
return 1;
|
4177
|
-
|
4250
|
+
l985:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4178
4251
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenHr", yybuf+yypos));
|
4179
4252
|
return 0;
|
4180
4253
|
}
|
4181
4254
|
YY_RULE(int) yy_HtmlBlockCloseH6()
|
4182
4255
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4183
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseH6")); if (!yymatchChar('<')) goto
|
4184
|
-
{ int
|
4185
|
-
|
4256
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseH6")); if (!yymatchChar('<')) goto l990; if (!yy_Spnl()) goto l990; if (!yymatchChar('/')) goto l990;
|
4257
|
+
{ int yypos991= yypos, yythunkpos991= yythunkpos; if (!yymatchString("h6")) goto l992; goto l991;
|
4258
|
+
l992:; yypos= yypos991; yythunkpos= yythunkpos991; if (!yymatchString("H6")) goto l990;
|
4186
4259
|
}
|
4187
|
-
|
4260
|
+
l991:; if (!yy_Spnl()) goto l990; if (!yymatchChar('>')) goto l990;
|
4188
4261
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH6", yybuf+yypos));
|
4189
4262
|
return 1;
|
4190
|
-
|
4263
|
+
l990:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4191
4264
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH6", yybuf+yypos));
|
4192
4265
|
return 0;
|
4193
4266
|
}
|
4194
4267
|
YY_RULE(int) yy_HtmlBlockOpenH6()
|
4195
4268
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4196
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenH6")); if (!yymatchChar('<')) goto
|
4197
|
-
{ int
|
4198
|
-
|
4269
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenH6")); if (!yymatchChar('<')) goto l993; if (!yy_Spnl()) goto l993;
|
4270
|
+
{ int yypos994= yypos, yythunkpos994= yythunkpos; if (!yymatchString("h6")) goto l995; goto l994;
|
4271
|
+
l995:; yypos= yypos994; yythunkpos= yythunkpos994; if (!yymatchString("H6")) goto l993;
|
4199
4272
|
}
|
4200
|
-
|
4201
|
-
|
4202
|
-
{ int
|
4203
|
-
|
4204
|
-
} if (!yymatchChar('>')) goto
|
4273
|
+
l994:; if (!yy_Spnl()) goto l993;
|
4274
|
+
l996:;
|
4275
|
+
{ int yypos997= yypos, yythunkpos997= yythunkpos; if (!yy_HtmlAttribute()) goto l997; goto l996;
|
4276
|
+
l997:; yypos= yypos997; yythunkpos= yythunkpos997;
|
4277
|
+
} if (!yymatchChar('>')) goto l993;
|
4205
4278
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH6", yybuf+yypos));
|
4206
4279
|
return 1;
|
4207
|
-
|
4280
|
+
l993:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4208
4281
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH6", yybuf+yypos));
|
4209
4282
|
return 0;
|
4210
4283
|
}
|
4211
4284
|
YY_RULE(int) yy_HtmlBlockCloseH5()
|
4212
4285
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4213
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseH5")); if (!yymatchChar('<')) goto
|
4214
|
-
{ int
|
4215
|
-
|
4286
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseH5")); if (!yymatchChar('<')) goto l998; if (!yy_Spnl()) goto l998; if (!yymatchChar('/')) goto l998;
|
4287
|
+
{ int yypos999= yypos, yythunkpos999= yythunkpos; if (!yymatchString("h5")) goto l1000; goto l999;
|
4288
|
+
l1000:; yypos= yypos999; yythunkpos= yythunkpos999; if (!yymatchString("H5")) goto l998;
|
4216
4289
|
}
|
4217
|
-
|
4290
|
+
l999:; if (!yy_Spnl()) goto l998; if (!yymatchChar('>')) goto l998;
|
4218
4291
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH5", yybuf+yypos));
|
4219
4292
|
return 1;
|
4220
|
-
|
4293
|
+
l998:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4221
4294
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH5", yybuf+yypos));
|
4222
4295
|
return 0;
|
4223
4296
|
}
|
4224
4297
|
YY_RULE(int) yy_HtmlBlockOpenH5()
|
4225
4298
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4226
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenH5")); if (!yymatchChar('<')) goto
|
4227
|
-
{ int
|
4228
|
-
|
4299
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenH5")); if (!yymatchChar('<')) goto l1001; if (!yy_Spnl()) goto l1001;
|
4300
|
+
{ int yypos1002= yypos, yythunkpos1002= yythunkpos; if (!yymatchString("h5")) goto l1003; goto l1002;
|
4301
|
+
l1003:; yypos= yypos1002; yythunkpos= yythunkpos1002; if (!yymatchString("H5")) goto l1001;
|
4229
4302
|
}
|
4230
|
-
|
4231
|
-
|
4232
|
-
{ int
|
4233
|
-
|
4234
|
-
} if (!yymatchChar('>')) goto
|
4303
|
+
l1002:; if (!yy_Spnl()) goto l1001;
|
4304
|
+
l1004:;
|
4305
|
+
{ int yypos1005= yypos, yythunkpos1005= yythunkpos; if (!yy_HtmlAttribute()) goto l1005; goto l1004;
|
4306
|
+
l1005:; yypos= yypos1005; yythunkpos= yythunkpos1005;
|
4307
|
+
} if (!yymatchChar('>')) goto l1001;
|
4235
4308
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH5", yybuf+yypos));
|
4236
4309
|
return 1;
|
4237
|
-
|
4310
|
+
l1001:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4238
4311
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH5", yybuf+yypos));
|
4239
4312
|
return 0;
|
4240
4313
|
}
|
4241
4314
|
YY_RULE(int) yy_HtmlBlockCloseH4()
|
4242
4315
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4243
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseH4")); if (!yymatchChar('<')) goto
|
4244
|
-
{ int
|
4245
|
-
|
4316
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseH4")); if (!yymatchChar('<')) goto l1006; if (!yy_Spnl()) goto l1006; if (!yymatchChar('/')) goto l1006;
|
4317
|
+
{ int yypos1007= yypos, yythunkpos1007= yythunkpos; if (!yymatchString("h4")) goto l1008; goto l1007;
|
4318
|
+
l1008:; yypos= yypos1007; yythunkpos= yythunkpos1007; if (!yymatchString("H4")) goto l1006;
|
4246
4319
|
}
|
4247
|
-
|
4320
|
+
l1007:; if (!yy_Spnl()) goto l1006; if (!yymatchChar('>')) goto l1006;
|
4248
4321
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH4", yybuf+yypos));
|
4249
4322
|
return 1;
|
4250
|
-
|
4323
|
+
l1006:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4251
4324
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH4", yybuf+yypos));
|
4252
4325
|
return 0;
|
4253
4326
|
}
|
4254
4327
|
YY_RULE(int) yy_HtmlBlockOpenH4()
|
4255
4328
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4256
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenH4")); if (!yymatchChar('<')) goto
|
4257
|
-
{ int
|
4258
|
-
|
4329
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenH4")); if (!yymatchChar('<')) goto l1009; if (!yy_Spnl()) goto l1009;
|
4330
|
+
{ int yypos1010= yypos, yythunkpos1010= yythunkpos; if (!yymatchString("h4")) goto l1011; goto l1010;
|
4331
|
+
l1011:; yypos= yypos1010; yythunkpos= yythunkpos1010; if (!yymatchString("H4")) goto l1009;
|
4259
4332
|
}
|
4260
|
-
|
4261
|
-
|
4262
|
-
{ int
|
4263
|
-
|
4264
|
-
} if (!yymatchChar('>')) goto
|
4333
|
+
l1010:; if (!yy_Spnl()) goto l1009;
|
4334
|
+
l1012:;
|
4335
|
+
{ int yypos1013= yypos, yythunkpos1013= yythunkpos; if (!yy_HtmlAttribute()) goto l1013; goto l1012;
|
4336
|
+
l1013:; yypos= yypos1013; yythunkpos= yythunkpos1013;
|
4337
|
+
} if (!yymatchChar('>')) goto l1009;
|
4265
4338
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH4", yybuf+yypos));
|
4266
4339
|
return 1;
|
4267
|
-
|
4340
|
+
l1009:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4268
4341
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH4", yybuf+yypos));
|
4269
4342
|
return 0;
|
4270
4343
|
}
|
4271
4344
|
YY_RULE(int) yy_HtmlBlockCloseH3()
|
4272
4345
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4273
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseH3")); if (!yymatchChar('<')) goto
|
4274
|
-
{ int
|
4275
|
-
|
4346
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseH3")); if (!yymatchChar('<')) goto l1014; if (!yy_Spnl()) goto l1014; if (!yymatchChar('/')) goto l1014;
|
4347
|
+
{ int yypos1015= yypos, yythunkpos1015= yythunkpos; if (!yymatchString("h3")) goto l1016; goto l1015;
|
4348
|
+
l1016:; yypos= yypos1015; yythunkpos= yythunkpos1015; if (!yymatchString("H3")) goto l1014;
|
4276
4349
|
}
|
4277
|
-
|
4350
|
+
l1015:; if (!yy_Spnl()) goto l1014; if (!yymatchChar('>')) goto l1014;
|
4278
4351
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH3", yybuf+yypos));
|
4279
4352
|
return 1;
|
4280
|
-
|
4353
|
+
l1014:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4281
4354
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH3", yybuf+yypos));
|
4282
4355
|
return 0;
|
4283
4356
|
}
|
4284
4357
|
YY_RULE(int) yy_HtmlBlockOpenH3()
|
4285
4358
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4286
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenH3")); if (!yymatchChar('<')) goto
|
4287
|
-
{ int
|
4288
|
-
|
4359
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenH3")); if (!yymatchChar('<')) goto l1017; if (!yy_Spnl()) goto l1017;
|
4360
|
+
{ int yypos1018= yypos, yythunkpos1018= yythunkpos; if (!yymatchString("h3")) goto l1019; goto l1018;
|
4361
|
+
l1019:; yypos= yypos1018; yythunkpos= yythunkpos1018; if (!yymatchString("H3")) goto l1017;
|
4289
4362
|
}
|
4290
|
-
|
4291
|
-
|
4292
|
-
{ int
|
4293
|
-
|
4294
|
-
} if (!yymatchChar('>')) goto
|
4363
|
+
l1018:; if (!yy_Spnl()) goto l1017;
|
4364
|
+
l1020:;
|
4365
|
+
{ int yypos1021= yypos, yythunkpos1021= yythunkpos; if (!yy_HtmlAttribute()) goto l1021; goto l1020;
|
4366
|
+
l1021:; yypos= yypos1021; yythunkpos= yythunkpos1021;
|
4367
|
+
} if (!yymatchChar('>')) goto l1017;
|
4295
4368
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH3", yybuf+yypos));
|
4296
4369
|
return 1;
|
4297
|
-
|
4370
|
+
l1017:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4298
4371
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH3", yybuf+yypos));
|
4299
4372
|
return 0;
|
4300
4373
|
}
|
4301
4374
|
YY_RULE(int) yy_HtmlBlockCloseH2()
|
4302
4375
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4303
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseH2")); if (!yymatchChar('<')) goto
|
4304
|
-
{ int
|
4305
|
-
|
4376
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseH2")); if (!yymatchChar('<')) goto l1022; if (!yy_Spnl()) goto l1022; if (!yymatchChar('/')) goto l1022;
|
4377
|
+
{ int yypos1023= yypos, yythunkpos1023= yythunkpos; if (!yymatchString("h2")) goto l1024; goto l1023;
|
4378
|
+
l1024:; yypos= yypos1023; yythunkpos= yythunkpos1023; if (!yymatchString("H2")) goto l1022;
|
4306
4379
|
}
|
4307
|
-
|
4380
|
+
l1023:; if (!yy_Spnl()) goto l1022; if (!yymatchChar('>')) goto l1022;
|
4308
4381
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH2", yybuf+yypos));
|
4309
4382
|
return 1;
|
4310
|
-
|
4383
|
+
l1022:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4311
4384
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH2", yybuf+yypos));
|
4312
4385
|
return 0;
|
4313
4386
|
}
|
4314
4387
|
YY_RULE(int) yy_HtmlBlockOpenH2()
|
4315
4388
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4316
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenH2")); if (!yymatchChar('<')) goto
|
4317
|
-
{ int
|
4318
|
-
|
4389
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenH2")); if (!yymatchChar('<')) goto l1025; if (!yy_Spnl()) goto l1025;
|
4390
|
+
{ int yypos1026= yypos, yythunkpos1026= yythunkpos; if (!yymatchString("h2")) goto l1027; goto l1026;
|
4391
|
+
l1027:; yypos= yypos1026; yythunkpos= yythunkpos1026; if (!yymatchString("H2")) goto l1025;
|
4319
4392
|
}
|
4320
|
-
|
4321
|
-
|
4322
|
-
{ int
|
4323
|
-
|
4324
|
-
} if (!yymatchChar('>')) goto
|
4393
|
+
l1026:; if (!yy_Spnl()) goto l1025;
|
4394
|
+
l1028:;
|
4395
|
+
{ int yypos1029= yypos, yythunkpos1029= yythunkpos; if (!yy_HtmlAttribute()) goto l1029; goto l1028;
|
4396
|
+
l1029:; yypos= yypos1029; yythunkpos= yythunkpos1029;
|
4397
|
+
} if (!yymatchChar('>')) goto l1025;
|
4325
4398
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH2", yybuf+yypos));
|
4326
4399
|
return 1;
|
4327
|
-
|
4400
|
+
l1025:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4328
4401
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH2", yybuf+yypos));
|
4329
4402
|
return 0;
|
4330
4403
|
}
|
4331
4404
|
YY_RULE(int) yy_HtmlBlockCloseH1()
|
4332
4405
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4333
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseH1")); if (!yymatchChar('<')) goto
|
4334
|
-
{ int
|
4335
|
-
|
4406
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseH1")); if (!yymatchChar('<')) goto l1030; if (!yy_Spnl()) goto l1030; if (!yymatchChar('/')) goto l1030;
|
4407
|
+
{ int yypos1031= yypos, yythunkpos1031= yythunkpos; if (!yymatchString("h1")) goto l1032; goto l1031;
|
4408
|
+
l1032:; yypos= yypos1031; yythunkpos= yythunkpos1031; if (!yymatchString("H1")) goto l1030;
|
4336
4409
|
}
|
4337
|
-
|
4410
|
+
l1031:; if (!yy_Spnl()) goto l1030; if (!yymatchChar('>')) goto l1030;
|
4338
4411
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH1", yybuf+yypos));
|
4339
4412
|
return 1;
|
4340
|
-
|
4413
|
+
l1030:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4341
4414
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH1", yybuf+yypos));
|
4342
4415
|
return 0;
|
4343
4416
|
}
|
4344
4417
|
YY_RULE(int) yy_HtmlBlockOpenH1()
|
4345
4418
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4346
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenH1")); if (!yymatchChar('<')) goto
|
4347
|
-
{ int
|
4348
|
-
|
4419
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenH1")); if (!yymatchChar('<')) goto l1033; if (!yy_Spnl()) goto l1033;
|
4420
|
+
{ int yypos1034= yypos, yythunkpos1034= yythunkpos; if (!yymatchString("h1")) goto l1035; goto l1034;
|
4421
|
+
l1035:; yypos= yypos1034; yythunkpos= yythunkpos1034; if (!yymatchString("H1")) goto l1033;
|
4349
4422
|
}
|
4350
|
-
|
4351
|
-
|
4352
|
-
{ int
|
4353
|
-
|
4354
|
-
} if (!yymatchChar('>')) goto
|
4423
|
+
l1034:; if (!yy_Spnl()) goto l1033;
|
4424
|
+
l1036:;
|
4425
|
+
{ int yypos1037= yypos, yythunkpos1037= yythunkpos; if (!yy_HtmlAttribute()) goto l1037; goto l1036;
|
4426
|
+
l1037:; yypos= yypos1037; yythunkpos= yythunkpos1037;
|
4427
|
+
} if (!yymatchChar('>')) goto l1033;
|
4355
4428
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH1", yybuf+yypos));
|
4356
4429
|
return 1;
|
4357
|
-
|
4430
|
+
l1033:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4358
4431
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH1", yybuf+yypos));
|
4359
4432
|
return 0;
|
4360
4433
|
}
|
4361
4434
|
YY_RULE(int) yy_HtmlBlockCloseForm()
|
4362
4435
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4363
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseForm")); if (!yymatchChar('<')) goto
|
4364
|
-
{ int
|
4365
|
-
|
4436
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseForm")); if (!yymatchChar('<')) goto l1038; if (!yy_Spnl()) goto l1038; if (!yymatchChar('/')) goto l1038;
|
4437
|
+
{ int yypos1039= yypos, yythunkpos1039= yythunkpos; if (!yymatchString("form")) goto l1040; goto l1039;
|
4438
|
+
l1040:; yypos= yypos1039; yythunkpos= yythunkpos1039; if (!yymatchString("FORM")) goto l1038;
|
4366
4439
|
}
|
4367
|
-
|
4440
|
+
l1039:; if (!yy_Spnl()) goto l1038; if (!yymatchChar('>')) goto l1038;
|
4368
4441
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseForm", yybuf+yypos));
|
4369
4442
|
return 1;
|
4370
|
-
|
4443
|
+
l1038:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4371
4444
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseForm", yybuf+yypos));
|
4372
4445
|
return 0;
|
4373
4446
|
}
|
4374
4447
|
YY_RULE(int) yy_HtmlBlockOpenForm()
|
4375
4448
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4376
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenForm")); if (!yymatchChar('<')) goto
|
4377
|
-
{ int
|
4378
|
-
|
4449
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenForm")); if (!yymatchChar('<')) goto l1041; if (!yy_Spnl()) goto l1041;
|
4450
|
+
{ int yypos1042= yypos, yythunkpos1042= yythunkpos; if (!yymatchString("form")) goto l1043; goto l1042;
|
4451
|
+
l1043:; yypos= yypos1042; yythunkpos= yythunkpos1042; if (!yymatchString("FORM")) goto l1041;
|
4379
4452
|
}
|
4380
|
-
|
4381
|
-
|
4382
|
-
{ int
|
4383
|
-
|
4384
|
-
} if (!yymatchChar('>')) goto
|
4453
|
+
l1042:; if (!yy_Spnl()) goto l1041;
|
4454
|
+
l1044:;
|
4455
|
+
{ int yypos1045= yypos, yythunkpos1045= yythunkpos; if (!yy_HtmlAttribute()) goto l1045; goto l1044;
|
4456
|
+
l1045:; yypos= yypos1045; yythunkpos= yythunkpos1045;
|
4457
|
+
} if (!yymatchChar('>')) goto l1041;
|
4385
4458
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenForm", yybuf+yypos));
|
4386
4459
|
return 1;
|
4387
|
-
|
4460
|
+
l1041:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4388
4461
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenForm", yybuf+yypos));
|
4389
4462
|
return 0;
|
4390
4463
|
}
|
4391
4464
|
YY_RULE(int) yy_HtmlBlockCloseFieldset()
|
4392
4465
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4393
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseFieldset")); if (!yymatchChar('<')) goto
|
4394
|
-
{ int
|
4395
|
-
|
4466
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseFieldset")); if (!yymatchChar('<')) goto l1046; if (!yy_Spnl()) goto l1046; if (!yymatchChar('/')) goto l1046;
|
4467
|
+
{ int yypos1047= yypos, yythunkpos1047= yythunkpos; if (!yymatchString("fieldset")) goto l1048; goto l1047;
|
4468
|
+
l1048:; yypos= yypos1047; yythunkpos= yythunkpos1047; if (!yymatchString("FIELDSET")) goto l1046;
|
4396
4469
|
}
|
4397
|
-
|
4470
|
+
l1047:; if (!yy_Spnl()) goto l1046; if (!yymatchChar('>')) goto l1046;
|
4398
4471
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseFieldset", yybuf+yypos));
|
4399
4472
|
return 1;
|
4400
|
-
|
4473
|
+
l1046:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4401
4474
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseFieldset", yybuf+yypos));
|
4402
4475
|
return 0;
|
4403
4476
|
}
|
4404
4477
|
YY_RULE(int) yy_HtmlBlockOpenFieldset()
|
4405
4478
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4406
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenFieldset")); if (!yymatchChar('<')) goto
|
4407
|
-
{ int
|
4408
|
-
|
4479
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenFieldset")); if (!yymatchChar('<')) goto l1049; if (!yy_Spnl()) goto l1049;
|
4480
|
+
{ int yypos1050= yypos, yythunkpos1050= yythunkpos; if (!yymatchString("fieldset")) goto l1051; goto l1050;
|
4481
|
+
l1051:; yypos= yypos1050; yythunkpos= yythunkpos1050; if (!yymatchString("FIELDSET")) goto l1049;
|
4409
4482
|
}
|
4410
|
-
|
4411
|
-
|
4412
|
-
{ int
|
4413
|
-
|
4414
|
-
} if (!yymatchChar('>')) goto
|
4483
|
+
l1050:; if (!yy_Spnl()) goto l1049;
|
4484
|
+
l1052:;
|
4485
|
+
{ int yypos1053= yypos, yythunkpos1053= yythunkpos; if (!yy_HtmlAttribute()) goto l1053; goto l1052;
|
4486
|
+
l1053:; yypos= yypos1053; yythunkpos= yythunkpos1053;
|
4487
|
+
} if (!yymatchChar('>')) goto l1049;
|
4415
4488
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenFieldset", yybuf+yypos));
|
4416
4489
|
return 1;
|
4417
|
-
|
4490
|
+
l1049:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4418
4491
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenFieldset", yybuf+yypos));
|
4419
4492
|
return 0;
|
4420
4493
|
}
|
4421
4494
|
YY_RULE(int) yy_HtmlBlockCloseDl()
|
4422
4495
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4423
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseDl")); if (!yymatchChar('<')) goto
|
4424
|
-
{ int
|
4425
|
-
|
4496
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseDl")); if (!yymatchChar('<')) goto l1054; if (!yy_Spnl()) goto l1054; if (!yymatchChar('/')) goto l1054;
|
4497
|
+
{ int yypos1055= yypos, yythunkpos1055= yythunkpos; if (!yymatchString("dl")) goto l1056; goto l1055;
|
4498
|
+
l1056:; yypos= yypos1055; yythunkpos= yythunkpos1055; if (!yymatchString("DL")) goto l1054;
|
4426
4499
|
}
|
4427
|
-
|
4500
|
+
l1055:; if (!yy_Spnl()) goto l1054; if (!yymatchChar('>')) goto l1054;
|
4428
4501
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDl", yybuf+yypos));
|
4429
4502
|
return 1;
|
4430
|
-
|
4503
|
+
l1054:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4431
4504
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDl", yybuf+yypos));
|
4432
4505
|
return 0;
|
4433
4506
|
}
|
4434
4507
|
YY_RULE(int) yy_HtmlBlockOpenDl()
|
4435
4508
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4436
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenDl")); if (!yymatchChar('<')) goto
|
4437
|
-
{ int
|
4438
|
-
|
4509
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenDl")); if (!yymatchChar('<')) goto l1057; if (!yy_Spnl()) goto l1057;
|
4510
|
+
{ int yypos1058= yypos, yythunkpos1058= yythunkpos; if (!yymatchString("dl")) goto l1059; goto l1058;
|
4511
|
+
l1059:; yypos= yypos1058; yythunkpos= yythunkpos1058; if (!yymatchString("DL")) goto l1057;
|
4439
4512
|
}
|
4440
|
-
|
4441
|
-
|
4442
|
-
{ int
|
4443
|
-
|
4444
|
-
} if (!yymatchChar('>')) goto
|
4513
|
+
l1058:; if (!yy_Spnl()) goto l1057;
|
4514
|
+
l1060:;
|
4515
|
+
{ int yypos1061= yypos, yythunkpos1061= yythunkpos; if (!yy_HtmlAttribute()) goto l1061; goto l1060;
|
4516
|
+
l1061:; yypos= yypos1061; yythunkpos= yythunkpos1061;
|
4517
|
+
} if (!yymatchChar('>')) goto l1057;
|
4445
4518
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDl", yybuf+yypos));
|
4446
4519
|
return 1;
|
4447
|
-
|
4520
|
+
l1057:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4448
4521
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDl", yybuf+yypos));
|
4449
4522
|
return 0;
|
4450
4523
|
}
|
4451
4524
|
YY_RULE(int) yy_HtmlBlockCloseDiv()
|
4452
4525
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4453
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseDiv")); if (!yymatchChar('<')) goto
|
4454
|
-
{ int
|
4455
|
-
|
4526
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseDiv")); if (!yymatchChar('<')) goto l1062; if (!yy_Spnl()) goto l1062; if (!yymatchChar('/')) goto l1062;
|
4527
|
+
{ int yypos1063= yypos, yythunkpos1063= yythunkpos; if (!yymatchString("div")) goto l1064; goto l1063;
|
4528
|
+
l1064:; yypos= yypos1063; yythunkpos= yythunkpos1063; if (!yymatchString("DIV")) goto l1062;
|
4456
4529
|
}
|
4457
|
-
|
4530
|
+
l1063:; if (!yy_Spnl()) goto l1062; if (!yymatchChar('>')) goto l1062;
|
4458
4531
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDiv", yybuf+yypos));
|
4459
4532
|
return 1;
|
4460
|
-
|
4533
|
+
l1062:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4461
4534
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDiv", yybuf+yypos));
|
4462
4535
|
return 0;
|
4463
4536
|
}
|
4464
4537
|
YY_RULE(int) yy_HtmlBlockOpenDiv()
|
4465
4538
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4466
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenDiv")); if (!yymatchChar('<')) goto
|
4467
|
-
{ int
|
4468
|
-
|
4539
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenDiv")); if (!yymatchChar('<')) goto l1065; if (!yy_Spnl()) goto l1065;
|
4540
|
+
{ int yypos1066= yypos, yythunkpos1066= yythunkpos; if (!yymatchString("div")) goto l1067; goto l1066;
|
4541
|
+
l1067:; yypos= yypos1066; yythunkpos= yythunkpos1066; if (!yymatchString("DIV")) goto l1065;
|
4469
4542
|
}
|
4470
|
-
|
4471
|
-
|
4472
|
-
{ int
|
4473
|
-
|
4474
|
-
} if (!yymatchChar('>')) goto
|
4543
|
+
l1066:; if (!yy_Spnl()) goto l1065;
|
4544
|
+
l1068:;
|
4545
|
+
{ int yypos1069= yypos, yythunkpos1069= yythunkpos; if (!yy_HtmlAttribute()) goto l1069; goto l1068;
|
4546
|
+
l1069:; yypos= yypos1069; yythunkpos= yythunkpos1069;
|
4547
|
+
} if (!yymatchChar('>')) goto l1065;
|
4475
4548
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDiv", yybuf+yypos));
|
4476
4549
|
return 1;
|
4477
|
-
|
4550
|
+
l1065:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4478
4551
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDiv", yybuf+yypos));
|
4479
4552
|
return 0;
|
4480
4553
|
}
|
4481
4554
|
YY_RULE(int) yy_HtmlBlockCloseDir()
|
4482
4555
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4483
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseDir")); if (!yymatchChar('<')) goto
|
4484
|
-
{ int
|
4485
|
-
|
4556
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseDir")); if (!yymatchChar('<')) goto l1070; if (!yy_Spnl()) goto l1070; if (!yymatchChar('/')) goto l1070;
|
4557
|
+
{ int yypos1071= yypos, yythunkpos1071= yythunkpos; if (!yymatchString("dir")) goto l1072; goto l1071;
|
4558
|
+
l1072:; yypos= yypos1071; yythunkpos= yythunkpos1071; if (!yymatchString("DIR")) goto l1070;
|
4486
4559
|
}
|
4487
|
-
|
4560
|
+
l1071:; if (!yy_Spnl()) goto l1070; if (!yymatchChar('>')) goto l1070;
|
4488
4561
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDir", yybuf+yypos));
|
4489
4562
|
return 1;
|
4490
|
-
|
4563
|
+
l1070:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4491
4564
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDir", yybuf+yypos));
|
4492
4565
|
return 0;
|
4493
4566
|
}
|
4494
4567
|
YY_RULE(int) yy_HtmlBlockOpenDir()
|
4495
4568
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4496
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenDir")); if (!yymatchChar('<')) goto
|
4497
|
-
{ int
|
4498
|
-
|
4569
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenDir")); if (!yymatchChar('<')) goto l1073; if (!yy_Spnl()) goto l1073;
|
4570
|
+
{ int yypos1074= yypos, yythunkpos1074= yythunkpos; if (!yymatchString("dir")) goto l1075; goto l1074;
|
4571
|
+
l1075:; yypos= yypos1074; yythunkpos= yythunkpos1074; if (!yymatchString("DIR")) goto l1073;
|
4499
4572
|
}
|
4500
|
-
|
4501
|
-
|
4502
|
-
{ int
|
4503
|
-
|
4504
|
-
} if (!yymatchChar('>')) goto
|
4573
|
+
l1074:; if (!yy_Spnl()) goto l1073;
|
4574
|
+
l1076:;
|
4575
|
+
{ int yypos1077= yypos, yythunkpos1077= yythunkpos; if (!yy_HtmlAttribute()) goto l1077; goto l1076;
|
4576
|
+
l1077:; yypos= yypos1077; yythunkpos= yythunkpos1077;
|
4577
|
+
} if (!yymatchChar('>')) goto l1073;
|
4505
4578
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDir", yybuf+yypos));
|
4506
4579
|
return 1;
|
4507
|
-
|
4580
|
+
l1073:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4508
4581
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDir", yybuf+yypos));
|
4509
4582
|
return 0;
|
4510
4583
|
}
|
4511
4584
|
YY_RULE(int) yy_HtmlBlockCloseCenter()
|
4512
4585
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4513
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseCenter")); if (!yymatchChar('<')) goto
|
4514
|
-
{ int
|
4515
|
-
|
4586
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseCenter")); if (!yymatchChar('<')) goto l1078; if (!yy_Spnl()) goto l1078; if (!yymatchChar('/')) goto l1078;
|
4587
|
+
{ int yypos1079= yypos, yythunkpos1079= yythunkpos; if (!yymatchString("center")) goto l1080; goto l1079;
|
4588
|
+
l1080:; yypos= yypos1079; yythunkpos= yythunkpos1079; if (!yymatchString("CENTER")) goto l1078;
|
4516
4589
|
}
|
4517
|
-
|
4590
|
+
l1079:; if (!yy_Spnl()) goto l1078; if (!yymatchChar('>')) goto l1078;
|
4518
4591
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseCenter", yybuf+yypos));
|
4519
4592
|
return 1;
|
4520
|
-
|
4593
|
+
l1078:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4521
4594
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseCenter", yybuf+yypos));
|
4522
4595
|
return 0;
|
4523
4596
|
}
|
4524
4597
|
YY_RULE(int) yy_HtmlBlockOpenCenter()
|
4525
4598
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4526
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenCenter")); if (!yymatchChar('<')) goto
|
4527
|
-
{ int
|
4528
|
-
|
4599
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenCenter")); if (!yymatchChar('<')) goto l1081; if (!yy_Spnl()) goto l1081;
|
4600
|
+
{ int yypos1082= yypos, yythunkpos1082= yythunkpos; if (!yymatchString("center")) goto l1083; goto l1082;
|
4601
|
+
l1083:; yypos= yypos1082; yythunkpos= yythunkpos1082; if (!yymatchString("CENTER")) goto l1081;
|
4529
4602
|
}
|
4530
|
-
|
4531
|
-
|
4532
|
-
{ int
|
4533
|
-
|
4534
|
-
} if (!yymatchChar('>')) goto
|
4603
|
+
l1082:; if (!yy_Spnl()) goto l1081;
|
4604
|
+
l1084:;
|
4605
|
+
{ int yypos1085= yypos, yythunkpos1085= yythunkpos; if (!yy_HtmlAttribute()) goto l1085; goto l1084;
|
4606
|
+
l1085:; yypos= yypos1085; yythunkpos= yythunkpos1085;
|
4607
|
+
} if (!yymatchChar('>')) goto l1081;
|
4535
4608
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenCenter", yybuf+yypos));
|
4536
4609
|
return 1;
|
4537
|
-
|
4610
|
+
l1081:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4538
4611
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenCenter", yybuf+yypos));
|
4539
4612
|
return 0;
|
4540
4613
|
}
|
4541
4614
|
YY_RULE(int) yy_HtmlBlockCloseBlockquote()
|
4542
4615
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4543
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseBlockquote")); if (!yymatchChar('<')) goto
|
4544
|
-
{ int
|
4545
|
-
|
4616
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseBlockquote")); if (!yymatchChar('<')) goto l1086; if (!yy_Spnl()) goto l1086; if (!yymatchChar('/')) goto l1086;
|
4617
|
+
{ int yypos1087= yypos, yythunkpos1087= yythunkpos; if (!yymatchString("blockquote")) goto l1088; goto l1087;
|
4618
|
+
l1088:; yypos= yypos1087; yythunkpos= yythunkpos1087; if (!yymatchString("BLOCKQUOTE")) goto l1086;
|
4546
4619
|
}
|
4547
|
-
|
4620
|
+
l1087:; if (!yy_Spnl()) goto l1086; if (!yymatchChar('>')) goto l1086;
|
4548
4621
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseBlockquote", yybuf+yypos));
|
4549
4622
|
return 1;
|
4550
|
-
|
4623
|
+
l1086:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4551
4624
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseBlockquote", yybuf+yypos));
|
4552
4625
|
return 0;
|
4553
4626
|
}
|
4554
4627
|
YY_RULE(int) yy_HtmlBlockOpenBlockquote()
|
4555
4628
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4556
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenBlockquote")); if (!yymatchChar('<')) goto
|
4557
|
-
{ int
|
4558
|
-
|
4629
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenBlockquote")); if (!yymatchChar('<')) goto l1089; if (!yy_Spnl()) goto l1089;
|
4630
|
+
{ int yypos1090= yypos, yythunkpos1090= yythunkpos; if (!yymatchString("blockquote")) goto l1091; goto l1090;
|
4631
|
+
l1091:; yypos= yypos1090; yythunkpos= yythunkpos1090; if (!yymatchString("BLOCKQUOTE")) goto l1089;
|
4559
4632
|
}
|
4560
|
-
|
4561
|
-
|
4562
|
-
{ int
|
4563
|
-
|
4564
|
-
} if (!yymatchChar('>')) goto
|
4633
|
+
l1090:; if (!yy_Spnl()) goto l1089;
|
4634
|
+
l1092:;
|
4635
|
+
{ int yypos1093= yypos, yythunkpos1093= yythunkpos; if (!yy_HtmlAttribute()) goto l1093; goto l1092;
|
4636
|
+
l1093:; yypos= yypos1093; yythunkpos= yythunkpos1093;
|
4637
|
+
} if (!yymatchChar('>')) goto l1089;
|
4565
4638
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenBlockquote", yybuf+yypos));
|
4566
4639
|
return 1;
|
4567
|
-
|
4640
|
+
l1089:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4568
4641
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenBlockquote", yybuf+yypos));
|
4569
4642
|
return 0;
|
4570
4643
|
}
|
4571
4644
|
YY_RULE(int) yy_HtmlBlockCloseAddress()
|
4572
4645
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4573
|
-
yyprintf((stderr, "%s\n", "HtmlBlockCloseAddress")); if (!yymatchChar('<')) goto
|
4574
|
-
{ int
|
4575
|
-
|
4646
|
+
yyprintf((stderr, "%s\n", "HtmlBlockCloseAddress")); if (!yymatchChar('<')) goto l1094; if (!yy_Spnl()) goto l1094; if (!yymatchChar('/')) goto l1094;
|
4647
|
+
{ int yypos1095= yypos, yythunkpos1095= yythunkpos; if (!yymatchString("address")) goto l1096; goto l1095;
|
4648
|
+
l1096:; yypos= yypos1095; yythunkpos= yythunkpos1095; if (!yymatchString("ADDRESS")) goto l1094;
|
4576
4649
|
}
|
4577
|
-
|
4650
|
+
l1095:; if (!yy_Spnl()) goto l1094; if (!yymatchChar('>')) goto l1094;
|
4578
4651
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseAddress", yybuf+yypos));
|
4579
4652
|
return 1;
|
4580
|
-
|
4653
|
+
l1094:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4581
4654
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseAddress", yybuf+yypos));
|
4582
4655
|
return 0;
|
4583
4656
|
}
|
4584
4657
|
YY_RULE(int) yy_HtmlAttribute()
|
4585
4658
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4586
4659
|
yyprintf((stderr, "%s\n", "HtmlAttribute"));
|
4587
|
-
{ int
|
4588
|
-
|
4589
|
-
}
|
4590
|
-
|
4591
|
-
|
4592
|
-
{ int
|
4593
|
-
{ int
|
4594
|
-
|
4595
|
-
}
|
4596
|
-
|
4597
|
-
|
4598
|
-
} if (!yy_Spnl()) goto
|
4599
|
-
{ int
|
4600
|
-
{ int
|
4601
|
-
|
4602
|
-
|
4603
|
-
{ int
|
4604
|
-
|
4605
|
-
}
|
4606
|
-
}
|
4607
|
-
|
4608
|
-
|
4609
|
-
}
|
4610
|
-
|
4660
|
+
{ int yypos1100= yypos, yythunkpos1100= yythunkpos; if (!yy_Alphanumeric()) goto l1101; goto l1100;
|
4661
|
+
l1101:; yypos= yypos1100; yythunkpos= yythunkpos1100; if (!yymatchChar('-')) goto l1097;
|
4662
|
+
}
|
4663
|
+
l1100:;
|
4664
|
+
l1098:;
|
4665
|
+
{ int yypos1099= yypos, yythunkpos1099= yythunkpos;
|
4666
|
+
{ int yypos1102= yypos, yythunkpos1102= yythunkpos; if (!yy_Alphanumeric()) goto l1103; goto l1102;
|
4667
|
+
l1103:; yypos= yypos1102; yythunkpos= yythunkpos1102; if (!yymatchChar('-')) goto l1099;
|
4668
|
+
}
|
4669
|
+
l1102:; goto l1098;
|
4670
|
+
l1099:; yypos= yypos1099; yythunkpos= yythunkpos1099;
|
4671
|
+
} if (!yy_Spnl()) goto l1097;
|
4672
|
+
{ int yypos1104= yypos, yythunkpos1104= yythunkpos; if (!yymatchChar('=')) goto l1104; if (!yy_Spnl()) goto l1104;
|
4673
|
+
{ int yypos1106= yypos, yythunkpos1106= yythunkpos; if (!yy_Quoted()) goto l1107; goto l1106;
|
4674
|
+
l1107:; yypos= yypos1106; yythunkpos= yythunkpos1106; if (!yy_Nonspacechar()) goto l1104;
|
4675
|
+
l1108:;
|
4676
|
+
{ int yypos1109= yypos, yythunkpos1109= yythunkpos; if (!yy_Nonspacechar()) goto l1109; goto l1108;
|
4677
|
+
l1109:; yypos= yypos1109; yythunkpos= yythunkpos1109;
|
4678
|
+
}
|
4679
|
+
}
|
4680
|
+
l1106:; goto l1105;
|
4681
|
+
l1104:; yypos= yypos1104; yythunkpos= yythunkpos1104;
|
4682
|
+
}
|
4683
|
+
l1105:; if (!yy_Spnl()) goto l1097;
|
4611
4684
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlAttribute", yybuf+yypos));
|
4612
4685
|
return 1;
|
4613
|
-
|
4686
|
+
l1097:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4614
4687
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlAttribute", yybuf+yypos));
|
4615
4688
|
return 0;
|
4616
4689
|
}
|
4617
4690
|
YY_RULE(int) yy_Spnl()
|
4618
4691
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4619
|
-
yyprintf((stderr, "%s\n", "Spnl")); if (!yy_Sp()) goto
|
4620
|
-
{ int
|
4621
|
-
|
4692
|
+
yyprintf((stderr, "%s\n", "Spnl")); if (!yy_Sp()) goto l1110;
|
4693
|
+
{ int yypos1111= yypos, yythunkpos1111= yythunkpos; if (!yy_Newline()) goto l1111; if (!yy_Sp()) goto l1111; goto l1112;
|
4694
|
+
l1111:; yypos= yypos1111; yythunkpos= yythunkpos1111;
|
4622
4695
|
}
|
4623
|
-
|
4696
|
+
l1112:;
|
4624
4697
|
yyprintf((stderr, " ok %s @ %s\n", "Spnl", yybuf+yypos));
|
4625
4698
|
return 1;
|
4626
|
-
|
4699
|
+
l1110:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4627
4700
|
yyprintf((stderr, " fail %s @ %s\n", "Spnl", yybuf+yypos));
|
4628
4701
|
return 0;
|
4629
4702
|
}
|
4630
4703
|
YY_RULE(int) yy_HtmlBlockOpenAddress()
|
4631
4704
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4632
|
-
yyprintf((stderr, "%s\n", "HtmlBlockOpenAddress")); if (!yymatchChar('<')) goto
|
4633
|
-
{ int
|
4634
|
-
|
4705
|
+
yyprintf((stderr, "%s\n", "HtmlBlockOpenAddress")); if (!yymatchChar('<')) goto l1113; if (!yy_Spnl()) goto l1113;
|
4706
|
+
{ int yypos1114= yypos, yythunkpos1114= yythunkpos; if (!yymatchString("address")) goto l1115; goto l1114;
|
4707
|
+
l1115:; yypos= yypos1114; yythunkpos= yythunkpos1114; if (!yymatchString("ADDRESS")) goto l1113;
|
4635
4708
|
}
|
4636
|
-
|
4637
|
-
|
4638
|
-
{ int
|
4639
|
-
|
4640
|
-
} if (!yymatchChar('>')) goto
|
4709
|
+
l1114:; if (!yy_Spnl()) goto l1113;
|
4710
|
+
l1116:;
|
4711
|
+
{ int yypos1117= yypos, yythunkpos1117= yythunkpos; if (!yy_HtmlAttribute()) goto l1117; goto l1116;
|
4712
|
+
l1117:; yypos= yypos1117; yythunkpos= yythunkpos1117;
|
4713
|
+
} if (!yymatchChar('>')) goto l1113;
|
4641
4714
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenAddress", yybuf+yypos));
|
4642
4715
|
return 1;
|
4643
|
-
|
4716
|
+
l1113:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4644
4717
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenAddress", yybuf+yypos));
|
4645
4718
|
return 0;
|
4646
4719
|
}
|
4647
4720
|
YY_RULE(int) yy_OptionallyIndentedLine()
|
4648
4721
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4649
4722
|
yyprintf((stderr, "%s\n", "OptionallyIndentedLine"));
|
4650
|
-
{ int
|
4651
|
-
|
4723
|
+
{ int yypos1119= yypos, yythunkpos1119= yythunkpos; if (!yy_Indent()) goto l1119; goto l1120;
|
4724
|
+
l1119:; yypos= yypos1119; yythunkpos= yythunkpos1119;
|
4652
4725
|
}
|
4653
|
-
|
4726
|
+
l1120:; if (!yy_Line()) goto l1118;
|
4654
4727
|
yyprintf((stderr, " ok %s @ %s\n", "OptionallyIndentedLine", yybuf+yypos));
|
4655
4728
|
return 1;
|
4656
|
-
|
4729
|
+
l1118:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4657
4730
|
yyprintf((stderr, " fail %s @ %s\n", "OptionallyIndentedLine", yybuf+yypos));
|
4658
4731
|
return 0;
|
4659
4732
|
}
|
4660
4733
|
YY_RULE(int) yy_OrderedListItem()
|
4661
4734
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4662
4735
|
yyprintf((stderr, "%s\n", "OrderedListItem"));
|
4663
|
-
{ int
|
4664
|
-
|
4736
|
+
{ int yypos1122= yypos, yythunkpos1122= yythunkpos; if (!yy_HorizontalRule()) goto l1122; goto l1121;
|
4737
|
+
l1122:; yypos= yypos1122; yythunkpos= yythunkpos1122;
|
4665
4738
|
}
|
4666
|
-
{ int
|
4667
|
-
} if (!yy_ListItem()) goto
|
4739
|
+
{ int yypos1123= yypos, yythunkpos1123= yythunkpos; if (!yy_Enumerator()) goto l1121; yypos= yypos1123; yythunkpos= yythunkpos1123;
|
4740
|
+
} if (!yy_ListItem()) goto l1121;
|
4668
4741
|
yyprintf((stderr, " ok %s @ %s\n", "OrderedListItem", yybuf+yypos));
|
4669
4742
|
return 1;
|
4670
|
-
|
4743
|
+
l1121:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4671
4744
|
yyprintf((stderr, " fail %s @ %s\n", "OrderedListItem", yybuf+yypos));
|
4672
4745
|
return 0;
|
4673
4746
|
}
|
4674
4747
|
YY_RULE(int) yy_OrderedListLoose()
|
4675
4748
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 2, 0);
|
4676
|
-
yyprintf((stderr, "%s\n", "OrderedListLoose")); if (!yy_StartList()) goto
|
4677
|
-
|
4678
|
-
{ int
|
4679
|
-
|
4749
|
+
yyprintf((stderr, "%s\n", "OrderedListLoose")); if (!yy_StartList()) goto l1124; yyDo(yySet, -2, 0); if (!yy_OrderedListItem()) goto l1124; yyDo(yySet, -1, 0);
|
4750
|
+
l1127:;
|
4751
|
+
{ int yypos1128= yypos, yythunkpos1128= yythunkpos; if (!yy_BlankLine()) goto l1128; goto l1127;
|
4752
|
+
l1128:; yypos= yypos1128; yythunkpos= yythunkpos1128;
|
4680
4753
|
} yyDo(yy_1_OrderedListLoose, yybegin, yyend);
|
4681
|
-
|
4682
|
-
{ int
|
4683
|
-
|
4684
|
-
{ int
|
4685
|
-
|
4686
|
-
} yyDo(yy_1_OrderedListLoose, yybegin, yyend); goto
|
4687
|
-
|
4754
|
+
l1125:;
|
4755
|
+
{ int yypos1126= yypos, yythunkpos1126= yythunkpos; if (!yy_OrderedListItem()) goto l1126; yyDo(yySet, -1, 0);
|
4756
|
+
l1129:;
|
4757
|
+
{ int yypos1130= yypos, yythunkpos1130= yythunkpos; if (!yy_BlankLine()) goto l1130; goto l1129;
|
4758
|
+
l1130:; yypos= yypos1130; yythunkpos= yythunkpos1130;
|
4759
|
+
} yyDo(yy_1_OrderedListLoose, yybegin, yyend); goto l1125;
|
4760
|
+
l1126:; yypos= yypos1126; yythunkpos= yythunkpos1126;
|
4688
4761
|
} yyDo(yy_2_OrderedListLoose, yybegin, yyend);
|
4689
4762
|
yyprintf((stderr, " ok %s @ %s\n", "OrderedListLoose", yybuf+yypos)); yyDo(yyPop, 2, 0);
|
4690
4763
|
return 1;
|
4691
|
-
|
4764
|
+
l1124:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4692
4765
|
yyprintf((stderr, " fail %s @ %s\n", "OrderedListLoose", yybuf+yypos));
|
4693
4766
|
return 0;
|
4694
4767
|
}
|
4695
4768
|
YY_RULE(int) yy_OrderedListTight()
|
4696
4769
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
|
4697
|
-
yyprintf((stderr, "%s\n", "OrderedListTight")); if (!yy_StartList()) goto
|
4698
|
-
|
4699
|
-
{ int
|
4700
|
-
|
4770
|
+
yyprintf((stderr, "%s\n", "OrderedListTight")); if (!yy_StartList()) goto l1131; yyDo(yySet, -1, 0); if (!yy_OrderedListItem()) goto l1131; yyDo(yy_1_OrderedListTight, yybegin, yyend);
|
4771
|
+
l1132:;
|
4772
|
+
{ int yypos1133= yypos, yythunkpos1133= yythunkpos; if (!yy_OrderedListItem()) goto l1133; yyDo(yy_1_OrderedListTight, yybegin, yyend); goto l1132;
|
4773
|
+
l1133:; yypos= yypos1133; yythunkpos= yythunkpos1133;
|
4701
4774
|
}
|
4702
|
-
|
4703
|
-
{ int
|
4704
|
-
|
4775
|
+
l1134:;
|
4776
|
+
{ int yypos1135= yypos, yythunkpos1135= yythunkpos; if (!yy_BlankLine()) goto l1135; goto l1134;
|
4777
|
+
l1135:; yypos= yypos1135; yythunkpos= yythunkpos1135;
|
4705
4778
|
}
|
4706
|
-
{ int
|
4707
|
-
|
4779
|
+
{ int yypos1136= yypos, yythunkpos1136= yythunkpos; if (!yy_OrderedListLoose()) goto l1136; goto l1131;
|
4780
|
+
l1136:; yypos= yypos1136; yythunkpos= yythunkpos1136;
|
4708
4781
|
} yyDo(yy_2_OrderedListTight, yybegin, yyend);
|
4709
4782
|
yyprintf((stderr, " ok %s @ %s\n", "OrderedListTight", yybuf+yypos)); yyDo(yyPop, 1, 0);
|
4710
4783
|
return 1;
|
4711
|
-
|
4784
|
+
l1131:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4712
4785
|
yyprintf((stderr, " fail %s @ %s\n", "OrderedListTight", yybuf+yypos));
|
4713
4786
|
return 0;
|
4714
4787
|
}
|
4715
4788
|
YY_RULE(int) yy_Indent()
|
4716
4789
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4717
4790
|
yyprintf((stderr, "%s\n", "Indent"));
|
4718
|
-
{ int
|
4719
|
-
|
4791
|
+
{ int yypos1138= yypos, yythunkpos1138= yythunkpos; if (!yymatchChar('\t')) goto l1139; goto l1138;
|
4792
|
+
l1139:; yypos= yypos1138; yythunkpos= yythunkpos1138; if (!yymatchString(" ")) goto l1137;
|
4720
4793
|
}
|
4721
|
-
|
4794
|
+
l1138:;
|
4722
4795
|
yyprintf((stderr, " ok %s @ %s\n", "Indent", yybuf+yypos));
|
4723
4796
|
return 1;
|
4724
|
-
|
4797
|
+
l1137:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4725
4798
|
yyprintf((stderr, " fail %s @ %s\n", "Indent", yybuf+yypos));
|
4726
4799
|
return 0;
|
4727
4800
|
}
|
4728
4801
|
YY_RULE(int) yy_ListBlockLine()
|
4729
4802
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4730
4803
|
yyprintf((stderr, "%s\n", "ListBlockLine"));
|
4731
|
-
{ int
|
4732
|
-
{ int
|
4733
|
-
|
4804
|
+
{ int yypos1141= yypos, yythunkpos1141= yythunkpos;
|
4805
|
+
{ int yypos1142= yypos, yythunkpos1142= yythunkpos; if (!yy_Indent()) goto l1142; goto l1143;
|
4806
|
+
l1142:; yypos= yypos1142; yythunkpos= yythunkpos1142;
|
4734
4807
|
}
|
4735
|
-
|
4736
|
-
{ int
|
4737
|
-
|
4808
|
+
l1143:;
|
4809
|
+
{ int yypos1144= yypos, yythunkpos1144= yythunkpos; if (!yy_BulletListItem()) goto l1145; goto l1144;
|
4810
|
+
l1145:; yypos= yypos1144; yythunkpos= yythunkpos1144; if (!yy_OrderedListItem()) goto l1141;
|
4738
4811
|
}
|
4739
|
-
|
4740
|
-
|
4812
|
+
l1144:; goto l1140;
|
4813
|
+
l1141:; yypos= yypos1141; yythunkpos= yythunkpos1141;
|
4741
4814
|
}
|
4742
|
-
{ int
|
4743
|
-
|
4744
|
-
} if (!yy_OptionallyIndentedLine()) goto
|
4815
|
+
{ int yypos1146= yypos, yythunkpos1146= yythunkpos; if (!yy_BlankLine()) goto l1146; goto l1140;
|
4816
|
+
l1146:; yypos= yypos1146; yythunkpos= yythunkpos1146;
|
4817
|
+
} if (!yy_OptionallyIndentedLine()) goto l1140;
|
4745
4818
|
yyprintf((stderr, " ok %s @ %s\n", "ListBlockLine", yybuf+yypos));
|
4746
4819
|
return 1;
|
4747
|
-
|
4820
|
+
l1140:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4748
4821
|
yyprintf((stderr, " fail %s @ %s\n", "ListBlockLine", yybuf+yypos));
|
4749
4822
|
return 0;
|
4750
4823
|
}
|
4751
4824
|
YY_RULE(int) yy_ListContinuationBlock()
|
4752
4825
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
|
4753
|
-
yyprintf((stderr, "%s\n", "ListContinuationBlock")); if (!yy_StartList()) goto
|
4754
|
-
|
4755
|
-
{ int
|
4756
|
-
|
4757
|
-
} yyText(yybegin, yyend); if (!(YY_END)) goto
|
4758
|
-
|
4759
|
-
{ int
|
4760
|
-
|
4826
|
+
yyprintf((stderr, "%s\n", "ListContinuationBlock")); if (!yy_StartList()) goto l1147; yyDo(yySet, -1, 0); yyText(yybegin, yyend); if (!(YY_BEGIN)) goto l1147;
|
4827
|
+
l1148:;
|
4828
|
+
{ int yypos1149= yypos, yythunkpos1149= yythunkpos; if (!yy_BlankLine()) goto l1149; goto l1148;
|
4829
|
+
l1149:; yypos= yypos1149; yythunkpos= yythunkpos1149;
|
4830
|
+
} yyText(yybegin, yyend); if (!(YY_END)) goto l1147; yyDo(yy_1_ListContinuationBlock, yybegin, yyend); if (!yy_Indent()) goto l1147; if (!yy_ListBlock()) goto l1147; yyDo(yy_2_ListContinuationBlock, yybegin, yyend);
|
4831
|
+
l1150:;
|
4832
|
+
{ int yypos1151= yypos, yythunkpos1151= yythunkpos; if (!yy_Indent()) goto l1151; if (!yy_ListBlock()) goto l1151; yyDo(yy_2_ListContinuationBlock, yybegin, yyend); goto l1150;
|
4833
|
+
l1151:; yypos= yypos1151; yythunkpos= yythunkpos1151;
|
4761
4834
|
} yyDo(yy_3_ListContinuationBlock, yybegin, yyend);
|
4762
4835
|
yyprintf((stderr, " ok %s @ %s\n", "ListContinuationBlock", yybuf+yypos)); yyDo(yyPop, 1, 0);
|
4763
4836
|
return 1;
|
4764
|
-
|
4837
|
+
l1147:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4765
4838
|
yyprintf((stderr, " fail %s @ %s\n", "ListContinuationBlock", yybuf+yypos));
|
4766
4839
|
return 0;
|
4767
4840
|
}
|
4768
4841
|
YY_RULE(int) yy_ListBlock()
|
4769
4842
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
|
4770
|
-
yyprintf((stderr, "%s\n", "ListBlock")); if (!yy_StartList()) goto
|
4771
|
-
|
4772
|
-
{ int
|
4773
|
-
|
4843
|
+
yyprintf((stderr, "%s\n", "ListBlock")); if (!yy_StartList()) goto l1152; yyDo(yySet, -1, 0); if (!yy_Line()) goto l1152; yyDo(yy_1_ListBlock, yybegin, yyend);
|
4844
|
+
l1153:;
|
4845
|
+
{ int yypos1154= yypos, yythunkpos1154= yythunkpos; if (!yy_ListBlockLine()) goto l1154; yyDo(yy_2_ListBlock, yybegin, yyend); goto l1153;
|
4846
|
+
l1154:; yypos= yypos1154; yythunkpos= yythunkpos1154;
|
4774
4847
|
} yyDo(yy_3_ListBlock, yybegin, yyend);
|
4775
4848
|
yyprintf((stderr, " ok %s @ %s\n", "ListBlock", yybuf+yypos)); yyDo(yyPop, 1, 0);
|
4776
4849
|
return 1;
|
4777
|
-
|
4850
|
+
l1152:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4778
4851
|
yyprintf((stderr, " fail %s @ %s\n", "ListBlock", yybuf+yypos));
|
4779
4852
|
return 0;
|
4780
4853
|
}
|
4781
4854
|
YY_RULE(int) yy_Enumerator()
|
4782
4855
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4783
|
-
yyprintf((stderr, "%s\n", "Enumerator")); if (!yy_NonindentSpace()) goto
|
4784
|
-
|
4785
|
-
{ int
|
4786
|
-
|
4787
|
-
} if (!yymatchChar('.')) goto
|
4788
|
-
|
4789
|
-
{ int
|
4790
|
-
|
4856
|
+
yyprintf((stderr, "%s\n", "Enumerator")); if (!yy_NonindentSpace()) goto l1155; if (!yymatchClass((unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l1155;
|
4857
|
+
l1156:;
|
4858
|
+
{ int yypos1157= yypos, yythunkpos1157= yythunkpos; if (!yymatchClass((unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l1157; goto l1156;
|
4859
|
+
l1157:; yypos= yypos1157; yythunkpos= yythunkpos1157;
|
4860
|
+
} if (!yymatchChar('.')) goto l1155; if (!yy_Spacechar()) goto l1155;
|
4861
|
+
l1158:;
|
4862
|
+
{ int yypos1159= yypos, yythunkpos1159= yythunkpos; if (!yy_Spacechar()) goto l1159; goto l1158;
|
4863
|
+
l1159:; yypos= yypos1159; yythunkpos= yythunkpos1159;
|
4791
4864
|
}
|
4792
4865
|
yyprintf((stderr, " ok %s @ %s\n", "Enumerator", yybuf+yypos));
|
4793
4866
|
return 1;
|
4794
|
-
|
4867
|
+
l1155:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4795
4868
|
yyprintf((stderr, " fail %s @ %s\n", "Enumerator", yybuf+yypos));
|
4796
4869
|
return 0;
|
4797
4870
|
}
|
4798
4871
|
YY_RULE(int) yy_ListItem()
|
4799
4872
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
|
4800
4873
|
yyprintf((stderr, "%s\n", "ListItem"));
|
4801
|
-
{ int
|
4802
|
-
|
4874
|
+
{ int yypos1161= yypos, yythunkpos1161= yythunkpos; if (!yy_Bullet()) goto l1162; goto l1161;
|
4875
|
+
l1162:; yypos= yypos1161; yythunkpos= yythunkpos1161; if (!yy_Enumerator()) goto l1160;
|
4803
4876
|
}
|
4804
|
-
|
4805
|
-
|
4806
|
-
{ int
|
4807
|
-
|
4877
|
+
l1161:; if (!yy_StartList()) goto l1160; yyDo(yySet, -1, 0); if (!yy_ListBlock()) goto l1160; yyDo(yy_1_ListItem, yybegin, yyend);
|
4878
|
+
l1163:;
|
4879
|
+
{ int yypos1164= yypos, yythunkpos1164= yythunkpos; if (!yy_ListContinuationBlock()) goto l1164; yyDo(yy_2_ListItem, yybegin, yyend); goto l1163;
|
4880
|
+
l1164:; yypos= yypos1164; yythunkpos= yythunkpos1164;
|
4808
4881
|
} yyDo(yy_3_ListItem, yybegin, yyend);
|
4809
4882
|
yyprintf((stderr, " ok %s @ %s\n", "ListItem", yybuf+yypos)); yyDo(yyPop, 1, 0);
|
4810
4883
|
return 1;
|
4811
|
-
|
4884
|
+
l1160:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4812
4885
|
yyprintf((stderr, " fail %s @ %s\n", "ListItem", yybuf+yypos));
|
4813
4886
|
return 0;
|
4814
4887
|
}
|
4815
4888
|
YY_RULE(int) yy_BulletListItem()
|
4816
4889
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4817
4890
|
yyprintf((stderr, "%s\n", "BulletListItem"));
|
4818
|
-
{ int
|
4819
|
-
|
4891
|
+
{ int yypos1166= yypos, yythunkpos1166= yythunkpos; if (!yy_HorizontalRule()) goto l1166; goto l1165;
|
4892
|
+
l1166:; yypos= yypos1166; yythunkpos= yythunkpos1166;
|
4820
4893
|
}
|
4821
|
-
{ int
|
4822
|
-
} if (!yy_ListItem()) goto
|
4894
|
+
{ int yypos1167= yypos, yythunkpos1167= yythunkpos; if (!yy_Bullet()) goto l1165; yypos= yypos1167; yythunkpos= yythunkpos1167;
|
4895
|
+
} if (!yy_ListItem()) goto l1165;
|
4823
4896
|
yyprintf((stderr, " ok %s @ %s\n", "BulletListItem", yybuf+yypos));
|
4824
4897
|
return 1;
|
4825
|
-
|
4898
|
+
l1165:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4826
4899
|
yyprintf((stderr, " fail %s @ %s\n", "BulletListItem", yybuf+yypos));
|
4827
4900
|
return 0;
|
4828
4901
|
}
|
4829
4902
|
YY_RULE(int) yy_BulletListLoose()
|
4830
4903
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 2, 0);
|
4831
|
-
yyprintf((stderr, "%s\n", "BulletListLoose")); if (!yy_StartList()) goto
|
4832
|
-
|
4833
|
-
{ int
|
4834
|
-
|
4904
|
+
yyprintf((stderr, "%s\n", "BulletListLoose")); if (!yy_StartList()) goto l1168; yyDo(yySet, -2, 0); if (!yy_BulletListItem()) goto l1168; yyDo(yySet, -1, 0);
|
4905
|
+
l1171:;
|
4906
|
+
{ int yypos1172= yypos, yythunkpos1172= yythunkpos; if (!yy_BlankLine()) goto l1172; goto l1171;
|
4907
|
+
l1172:; yypos= yypos1172; yythunkpos= yythunkpos1172;
|
4835
4908
|
} yyDo(yy_1_BulletListLoose, yybegin, yyend);
|
4836
|
-
|
4837
|
-
{ int
|
4838
|
-
|
4839
|
-
{ int
|
4840
|
-
|
4841
|
-
} yyDo(yy_1_BulletListLoose, yybegin, yyend); goto
|
4842
|
-
|
4909
|
+
l1169:;
|
4910
|
+
{ int yypos1170= yypos, yythunkpos1170= yythunkpos; if (!yy_BulletListItem()) goto l1170; yyDo(yySet, -1, 0);
|
4911
|
+
l1173:;
|
4912
|
+
{ int yypos1174= yypos, yythunkpos1174= yythunkpos; if (!yy_BlankLine()) goto l1174; goto l1173;
|
4913
|
+
l1174:; yypos= yypos1174; yythunkpos= yythunkpos1174;
|
4914
|
+
} yyDo(yy_1_BulletListLoose, yybegin, yyend); goto l1169;
|
4915
|
+
l1170:; yypos= yypos1170; yythunkpos= yythunkpos1170;
|
4843
4916
|
} yyDo(yy_2_BulletListLoose, yybegin, yyend);
|
4844
4917
|
yyprintf((stderr, " ok %s @ %s\n", "BulletListLoose", yybuf+yypos)); yyDo(yyPop, 2, 0);
|
4845
4918
|
return 1;
|
4846
|
-
|
4919
|
+
l1168:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4847
4920
|
yyprintf((stderr, " fail %s @ %s\n", "BulletListLoose", yybuf+yypos));
|
4848
4921
|
return 0;
|
4849
4922
|
}
|
4850
4923
|
YY_RULE(int) yy_BulletListTight()
|
4851
4924
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
|
4852
|
-
yyprintf((stderr, "%s\n", "BulletListTight")); if (!yy_StartList()) goto
|
4853
|
-
|
4854
|
-
{ int
|
4855
|
-
|
4925
|
+
yyprintf((stderr, "%s\n", "BulletListTight")); if (!yy_StartList()) goto l1175; yyDo(yySet, -1, 0); if (!yy_BulletListItem()) goto l1175; yyDo(yy_1_BulletListTight, yybegin, yyend);
|
4926
|
+
l1176:;
|
4927
|
+
{ int yypos1177= yypos, yythunkpos1177= yythunkpos; if (!yy_BulletListItem()) goto l1177; yyDo(yy_1_BulletListTight, yybegin, yyend); goto l1176;
|
4928
|
+
l1177:; yypos= yypos1177; yythunkpos= yythunkpos1177;
|
4856
4929
|
}
|
4857
|
-
|
4858
|
-
{ int
|
4859
|
-
|
4930
|
+
l1178:;
|
4931
|
+
{ int yypos1179= yypos, yythunkpos1179= yythunkpos; if (!yy_BlankLine()) goto l1179; goto l1178;
|
4932
|
+
l1179:; yypos= yypos1179; yythunkpos= yythunkpos1179;
|
4860
4933
|
}
|
4861
|
-
{ int
|
4862
|
-
|
4934
|
+
{ int yypos1180= yypos, yythunkpos1180= yythunkpos; if (!yy_BulletListLoose()) goto l1180; goto l1175;
|
4935
|
+
l1180:; yypos= yypos1180; yythunkpos= yythunkpos1180;
|
4863
4936
|
} yyDo(yy_2_BulletListTight, yybegin, yyend);
|
4864
4937
|
yyprintf((stderr, " ok %s @ %s\n", "BulletListTight", yybuf+yypos)); yyDo(yyPop, 1, 0);
|
4865
4938
|
return 1;
|
4866
|
-
|
4939
|
+
l1175:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4867
4940
|
yyprintf((stderr, " fail %s @ %s\n", "BulletListTight", yybuf+yypos));
|
4868
4941
|
return 0;
|
4869
4942
|
}
|
4870
4943
|
YY_RULE(int) yy_Spacechar()
|
4871
4944
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4872
4945
|
yyprintf((stderr, "%s\n", "Spacechar"));
|
4873
|
-
{ int
|
4874
|
-
|
4946
|
+
{ int yypos1182= yypos, yythunkpos1182= yythunkpos; if (!yymatchChar(' ')) goto l1183; goto l1182;
|
4947
|
+
l1183:; yypos= yypos1182; yythunkpos= yythunkpos1182; if (!yymatchChar('\t')) goto l1181;
|
4875
4948
|
}
|
4876
|
-
|
4949
|
+
l1182:;
|
4877
4950
|
yyprintf((stderr, " ok %s @ %s\n", "Spacechar", yybuf+yypos));
|
4878
4951
|
return 1;
|
4879
|
-
|
4952
|
+
l1181:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4880
4953
|
yyprintf((stderr, " fail %s @ %s\n", "Spacechar", yybuf+yypos));
|
4881
4954
|
return 0;
|
4882
4955
|
}
|
4883
4956
|
YY_RULE(int) yy_Bullet()
|
4884
4957
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4885
|
-
yyprintf((stderr, "%s\n", "Bullet")); if (!yy_NonindentSpace()) goto
|
4886
|
-
{ int
|
4887
|
-
|
4888
|
-
|
4958
|
+
yyprintf((stderr, "%s\n", "Bullet")); if (!yy_NonindentSpace()) goto l1184;
|
4959
|
+
{ int yypos1185= yypos, yythunkpos1185= yythunkpos; if (!yymatchChar('+')) goto l1186; goto l1185;
|
4960
|
+
l1186:; yypos= yypos1185; yythunkpos= yythunkpos1185; if (!yymatchChar('*')) goto l1187; goto l1185;
|
4961
|
+
l1187:; yypos= yypos1185; yythunkpos= yythunkpos1185; if (!yymatchChar('-')) goto l1184;
|
4889
4962
|
}
|
4890
|
-
|
4891
|
-
|
4892
|
-
{ int
|
4893
|
-
|
4963
|
+
l1185:; if (!yy_Spacechar()) goto l1184;
|
4964
|
+
l1188:;
|
4965
|
+
{ int yypos1189= yypos, yythunkpos1189= yythunkpos; if (!yy_Spacechar()) goto l1189; goto l1188;
|
4966
|
+
l1189:; yypos= yypos1189; yythunkpos= yythunkpos1189;
|
4894
4967
|
}
|
4895
4968
|
yyprintf((stderr, " ok %s @ %s\n", "Bullet", yybuf+yypos));
|
4896
4969
|
return 1;
|
4897
|
-
|
4970
|
+
l1184:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4898
4971
|
yyprintf((stderr, " fail %s @ %s\n", "Bullet", yybuf+yypos));
|
4899
4972
|
return 0;
|
4900
4973
|
}
|
4901
4974
|
YY_RULE(int) yy_VerbatimChunk()
|
4902
4975
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
|
4903
|
-
yyprintf((stderr, "%s\n", "VerbatimChunk")); if (!yy_StartList()) goto
|
4904
|
-
|
4905
|
-
{ int
|
4906
|
-
|
4907
|
-
} if (!yy_NonblankIndentedLine()) goto
|
4908
|
-
|
4909
|
-
{ int
|
4910
|
-
|
4976
|
+
yyprintf((stderr, "%s\n", "VerbatimChunk")); if (!yy_StartList()) goto l1190; yyDo(yySet, -1, 0);
|
4977
|
+
l1191:;
|
4978
|
+
{ int yypos1192= yypos, yythunkpos1192= yythunkpos; if (!yy_BlankLine()) goto l1192; yyDo(yy_1_VerbatimChunk, yybegin, yyend); goto l1191;
|
4979
|
+
l1192:; yypos= yypos1192; yythunkpos= yythunkpos1192;
|
4980
|
+
} if (!yy_NonblankIndentedLine()) goto l1190; yyDo(yy_2_VerbatimChunk, yybegin, yyend);
|
4981
|
+
l1193:;
|
4982
|
+
{ int yypos1194= yypos, yythunkpos1194= yythunkpos; if (!yy_NonblankIndentedLine()) goto l1194; yyDo(yy_2_VerbatimChunk, yybegin, yyend); goto l1193;
|
4983
|
+
l1194:; yypos= yypos1194; yythunkpos= yythunkpos1194;
|
4911
4984
|
} yyDo(yy_3_VerbatimChunk, yybegin, yyend);
|
4912
4985
|
yyprintf((stderr, " ok %s @ %s\n", "VerbatimChunk", yybuf+yypos)); yyDo(yyPop, 1, 0);
|
4913
4986
|
return 1;
|
4914
|
-
|
4987
|
+
l1190:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4915
4988
|
yyprintf((stderr, " fail %s @ %s\n", "VerbatimChunk", yybuf+yypos));
|
4916
4989
|
return 0;
|
4917
4990
|
}
|
4918
4991
|
YY_RULE(int) yy_IndentedLine()
|
4919
4992
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4920
|
-
yyprintf((stderr, "%s\n", "IndentedLine")); if (!yy_Indent()) goto
|
4993
|
+
yyprintf((stderr, "%s\n", "IndentedLine")); if (!yy_Indent()) goto l1195; if (!yy_Line()) goto l1195;
|
4921
4994
|
yyprintf((stderr, " ok %s @ %s\n", "IndentedLine", yybuf+yypos));
|
4922
4995
|
return 1;
|
4923
|
-
|
4996
|
+
l1195:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4924
4997
|
yyprintf((stderr, " fail %s @ %s\n", "IndentedLine", yybuf+yypos));
|
4925
4998
|
return 0;
|
4926
4999
|
}
|
4927
5000
|
YY_RULE(int) yy_NonblankIndentedLine()
|
4928
5001
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4929
5002
|
yyprintf((stderr, "%s\n", "NonblankIndentedLine"));
|
4930
|
-
{ int
|
4931
|
-
|
4932
|
-
} if (!yy_IndentedLine()) goto
|
5003
|
+
{ int yypos1197= yypos, yythunkpos1197= yythunkpos; if (!yy_BlankLine()) goto l1197; goto l1196;
|
5004
|
+
l1197:; yypos= yypos1197; yythunkpos= yythunkpos1197;
|
5005
|
+
} if (!yy_IndentedLine()) goto l1196;
|
4933
5006
|
yyprintf((stderr, " ok %s @ %s\n", "NonblankIndentedLine", yybuf+yypos));
|
4934
5007
|
return 1;
|
4935
|
-
|
5008
|
+
l1196:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4936
5009
|
yyprintf((stderr, " fail %s @ %s\n", "NonblankIndentedLine", yybuf+yypos));
|
4937
5010
|
return 0;
|
4938
5011
|
}
|
4939
5012
|
YY_RULE(int) yy_Line()
|
4940
5013
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4941
|
-
yyprintf((stderr, "%s\n", "Line")); if (!yy_RawLine()) goto
|
5014
|
+
yyprintf((stderr, "%s\n", "Line")); if (!yy_RawLine()) goto l1198; yyDo(yy_1_Line, yybegin, yyend);
|
4942
5015
|
yyprintf((stderr, " ok %s @ %s\n", "Line", yybuf+yypos));
|
4943
5016
|
return 1;
|
4944
|
-
|
5017
|
+
l1198:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4945
5018
|
yyprintf((stderr, " fail %s @ %s\n", "Line", yybuf+yypos));
|
4946
5019
|
return 0;
|
4947
5020
|
}
|
4948
5021
|
YY_RULE(int) yy_BlockQuoteRaw()
|
4949
5022
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
|
4950
|
-
yyprintf((stderr, "%s\n", "BlockQuoteRaw")); if (!yy_StartList()) goto
|
4951
|
-
{ int
|
4952
|
-
|
4953
|
-
}
|
4954
|
-
l1191:; if (!yy_Line()) goto l1187; yyDo(yy_1_BlockQuoteRaw, yybegin, yyend);
|
4955
|
-
l1192:;
|
4956
|
-
{ int yypos1193= yypos, yythunkpos1193= yythunkpos;
|
4957
|
-
{ int yypos1194= yypos, yythunkpos1194= yythunkpos; if (!yymatchChar('>')) goto l1194; goto l1193;
|
4958
|
-
l1194:; yypos= yypos1194; yythunkpos= yythunkpos1194;
|
5023
|
+
yyprintf((stderr, "%s\n", "BlockQuoteRaw")); if (!yy_StartList()) goto l1199; yyDo(yySet, -1, 0); if (!yymatchChar('>')) goto l1199;
|
5024
|
+
{ int yypos1202= yypos, yythunkpos1202= yythunkpos; if (!yymatchChar(' ')) goto l1202; goto l1203;
|
5025
|
+
l1202:; yypos= yypos1202; yythunkpos= yythunkpos1202;
|
4959
5026
|
}
|
4960
|
-
|
4961
|
-
|
4962
|
-
|
4963
|
-
|
5027
|
+
l1203:; if (!yy_Line()) goto l1199; yyDo(yy_1_BlockQuoteRaw, yybegin, yyend);
|
5028
|
+
l1204:;
|
5029
|
+
{ int yypos1205= yypos, yythunkpos1205= yythunkpos;
|
5030
|
+
{ int yypos1206= yypos, yythunkpos1206= yythunkpos; if (!yymatchChar('>')) goto l1206; goto l1205;
|
5031
|
+
l1206:; yypos= yypos1206; yythunkpos= yythunkpos1206;
|
4964
5032
|
}
|
4965
|
-
|
4966
|
-
|
4967
|
-
|
5033
|
+
{ int yypos1207= yypos, yythunkpos1207= yythunkpos; if (!yy_BlankLine()) goto l1207; goto l1205;
|
5034
|
+
l1207:; yypos= yypos1207; yythunkpos= yythunkpos1207;
|
5035
|
+
} if (!yy_Line()) goto l1205; yyDo(yy_2_BlockQuoteRaw, yybegin, yyend); goto l1204;
|
5036
|
+
l1205:; yypos= yypos1205; yythunkpos= yythunkpos1205;
|
4968
5037
|
}
|
4969
|
-
|
4970
|
-
{ int
|
4971
|
-
|
4972
|
-
l1198:; yypos= yypos1198; yythunkpos= yythunkpos1198;
|
5038
|
+
l1208:;
|
5039
|
+
{ int yypos1209= yypos, yythunkpos1209= yythunkpos; if (!yy_BlankLine()) goto l1209; yyDo(yy_3_BlockQuoteRaw, yybegin, yyend); goto l1208;
|
5040
|
+
l1209:; yypos= yypos1209; yythunkpos= yythunkpos1209;
|
4973
5041
|
}
|
4974
|
-
l1199:; if (!yy_Line()) goto l1189; yyDo(yy_1_BlockQuoteRaw, yybegin, yyend);
|
4975
5042
|
l1200:;
|
4976
|
-
{ int yypos1201= yypos, yythunkpos1201= yythunkpos;
|
4977
|
-
{ int
|
4978
|
-
|
5043
|
+
{ int yypos1201= yypos, yythunkpos1201= yythunkpos; if (!yymatchChar('>')) goto l1201;
|
5044
|
+
{ int yypos1210= yypos, yythunkpos1210= yythunkpos; if (!yymatchChar(' ')) goto l1210; goto l1211;
|
5045
|
+
l1210:; yypos= yypos1210; yythunkpos= yythunkpos1210;
|
4979
5046
|
}
|
4980
|
-
|
4981
|
-
|
4982
|
-
|
4983
|
-
|
5047
|
+
l1211:; if (!yy_Line()) goto l1201; yyDo(yy_1_BlockQuoteRaw, yybegin, yyend);
|
5048
|
+
l1212:;
|
5049
|
+
{ int yypos1213= yypos, yythunkpos1213= yythunkpos;
|
5050
|
+
{ int yypos1214= yypos, yythunkpos1214= yythunkpos; if (!yymatchChar('>')) goto l1214; goto l1213;
|
5051
|
+
l1214:; yypos= yypos1214; yythunkpos= yythunkpos1214;
|
4984
5052
|
}
|
4985
|
-
|
4986
|
-
|
4987
|
-
|
4988
|
-
|
4989
|
-
|
5053
|
+
{ int yypos1215= yypos, yythunkpos1215= yythunkpos; if (!yy_BlankLine()) goto l1215; goto l1213;
|
5054
|
+
l1215:; yypos= yypos1215; yythunkpos= yythunkpos1215;
|
5055
|
+
} if (!yy_Line()) goto l1213; yyDo(yy_2_BlockQuoteRaw, yybegin, yyend); goto l1212;
|
5056
|
+
l1213:; yypos= yypos1213; yythunkpos= yythunkpos1213;
|
5057
|
+
}
|
5058
|
+
l1216:;
|
5059
|
+
{ int yypos1217= yypos, yythunkpos1217= yythunkpos; if (!yy_BlankLine()) goto l1217; yyDo(yy_3_BlockQuoteRaw, yybegin, yyend); goto l1216;
|
5060
|
+
l1217:; yypos= yypos1217; yythunkpos= yythunkpos1217;
|
5061
|
+
} goto l1200;
|
5062
|
+
l1201:; yypos= yypos1201; yythunkpos= yythunkpos1201;
|
4990
5063
|
} yyDo(yy_4_BlockQuoteRaw, yybegin, yyend);
|
4991
5064
|
yyprintf((stderr, " ok %s @ %s\n", "BlockQuoteRaw", yybuf+yypos)); yyDo(yyPop, 1, 0);
|
4992
5065
|
return 1;
|
4993
|
-
|
5066
|
+
l1199:; yypos= yypos0; yythunkpos= yythunkpos0;
|
4994
5067
|
yyprintf((stderr, " fail %s @ %s\n", "BlockQuoteRaw", yybuf+yypos));
|
4995
5068
|
return 0;
|
4996
5069
|
}
|
4997
5070
|
YY_RULE(int) yy_Endline()
|
4998
5071
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
4999
5072
|
yyprintf((stderr, "%s\n", "Endline"));
|
5000
|
-
{ int
|
5001
|
-
|
5073
|
+
{ int yypos1219= yypos, yythunkpos1219= yythunkpos; if (!yy_TerminalEndline()) goto l1220; goto l1219;
|
5074
|
+
l1220:; yypos= yypos1219; yythunkpos= yythunkpos1219; if (!yy_NormalEndline()) goto l1218;
|
5002
5075
|
}
|
5003
|
-
|
5076
|
+
l1219:;
|
5004
5077
|
yyprintf((stderr, " ok %s @ %s\n", "Endline", yybuf+yypos));
|
5005
5078
|
return 1;
|
5006
|
-
|
5079
|
+
l1218:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5007
5080
|
yyprintf((stderr, " fail %s @ %s\n", "Endline", yybuf+yypos));
|
5008
5081
|
return 0;
|
5009
5082
|
}
|
5010
5083
|
YY_RULE(int) yy_SetextHeading2()
|
5011
5084
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
|
5012
|
-
yyprintf((stderr, "%s\n", "SetextHeading2")); if (!yy_StartList()) goto
|
5013
|
-
{ int
|
5014
|
-
|
5015
|
-
} if (!yy_Inline()) goto
|
5016
|
-
|
5017
|
-
{ int
|
5018
|
-
{ int
|
5019
|
-
|
5020
|
-
} if (!yy_Inline()) goto
|
5021
|
-
|
5022
|
-
} if (!yy_Newline()) goto
|
5023
|
-
|
5024
|
-
{ int
|
5025
|
-
|
5026
|
-
} if (!yy_Newline()) goto
|
5085
|
+
yyprintf((stderr, "%s\n", "SetextHeading2")); if (!yy_StartList()) goto l1221; yyDo(yySet, -1, 0);
|
5086
|
+
{ int yypos1224= yypos, yythunkpos1224= yythunkpos; if (!yy_Endline()) goto l1224; goto l1221;
|
5087
|
+
l1224:; yypos= yypos1224; yythunkpos= yythunkpos1224;
|
5088
|
+
} if (!yy_Inline()) goto l1221; yyDo(yy_1_SetextHeading2, yybegin, yyend);
|
5089
|
+
l1222:;
|
5090
|
+
{ int yypos1223= yypos, yythunkpos1223= yythunkpos;
|
5091
|
+
{ int yypos1225= yypos, yythunkpos1225= yythunkpos; if (!yy_Endline()) goto l1225; goto l1223;
|
5092
|
+
l1225:; yypos= yypos1225; yythunkpos= yythunkpos1225;
|
5093
|
+
} if (!yy_Inline()) goto l1223; yyDo(yy_1_SetextHeading2, yybegin, yyend); goto l1222;
|
5094
|
+
l1223:; yypos= yypos1223; yythunkpos= yythunkpos1223;
|
5095
|
+
} if (!yy_Newline()) goto l1221; if (!yymatchString("---")) goto l1221;
|
5096
|
+
l1226:;
|
5097
|
+
{ int yypos1227= yypos, yythunkpos1227= yythunkpos; if (!yymatchChar('-')) goto l1227; goto l1226;
|
5098
|
+
l1227:; yypos= yypos1227; yythunkpos= yythunkpos1227;
|
5099
|
+
} if (!yy_Newline()) goto l1221; yyDo(yy_2_SetextHeading2, yybegin, yyend);
|
5027
5100
|
yyprintf((stderr, " ok %s @ %s\n", "SetextHeading2", yybuf+yypos)); yyDo(yyPop, 1, 0);
|
5028
5101
|
return 1;
|
5029
|
-
|
5102
|
+
l1221:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5030
5103
|
yyprintf((stderr, " fail %s @ %s\n", "SetextHeading2", yybuf+yypos));
|
5031
5104
|
return 0;
|
5032
5105
|
}
|
5033
5106
|
YY_RULE(int) yy_SetextHeading1()
|
5034
5107
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
|
5035
|
-
yyprintf((stderr, "%s\n", "SetextHeading1")); if (!yy_StartList()) goto
|
5036
|
-
{ int
|
5037
|
-
|
5038
|
-
} if (!yy_Inline()) goto
|
5039
|
-
|
5040
|
-
{ int
|
5041
|
-
{ int
|
5042
|
-
|
5043
|
-
} if (!yy_Inline()) goto
|
5044
|
-
|
5045
|
-
} if (!yy_Newline()) goto
|
5046
|
-
|
5047
|
-
{ int
|
5048
|
-
|
5049
|
-
} if (!yy_Newline()) goto
|
5108
|
+
yyprintf((stderr, "%s\n", "SetextHeading1")); if (!yy_StartList()) goto l1228; yyDo(yySet, -1, 0);
|
5109
|
+
{ int yypos1231= yypos, yythunkpos1231= yythunkpos; if (!yy_Endline()) goto l1231; goto l1228;
|
5110
|
+
l1231:; yypos= yypos1231; yythunkpos= yythunkpos1231;
|
5111
|
+
} if (!yy_Inline()) goto l1228; yyDo(yy_1_SetextHeading1, yybegin, yyend);
|
5112
|
+
l1229:;
|
5113
|
+
{ int yypos1230= yypos, yythunkpos1230= yythunkpos;
|
5114
|
+
{ int yypos1232= yypos, yythunkpos1232= yythunkpos; if (!yy_Endline()) goto l1232; goto l1230;
|
5115
|
+
l1232:; yypos= yypos1232; yythunkpos= yythunkpos1232;
|
5116
|
+
} if (!yy_Inline()) goto l1230; yyDo(yy_1_SetextHeading1, yybegin, yyend); goto l1229;
|
5117
|
+
l1230:; yypos= yypos1230; yythunkpos= yythunkpos1230;
|
5118
|
+
} if (!yy_Newline()) goto l1228; if (!yymatchString("===")) goto l1228;
|
5119
|
+
l1233:;
|
5120
|
+
{ int yypos1234= yypos, yythunkpos1234= yythunkpos; if (!yymatchChar('=')) goto l1234; goto l1233;
|
5121
|
+
l1234:; yypos= yypos1234; yythunkpos= yythunkpos1234;
|
5122
|
+
} if (!yy_Newline()) goto l1228; yyDo(yy_2_SetextHeading1, yybegin, yyend);
|
5050
5123
|
yyprintf((stderr, " ok %s @ %s\n", "SetextHeading1", yybuf+yypos)); yyDo(yyPop, 1, 0);
|
5051
5124
|
return 1;
|
5052
|
-
|
5125
|
+
l1228:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5053
5126
|
yyprintf((stderr, " fail %s @ %s\n", "SetextHeading1", yybuf+yypos));
|
5054
5127
|
return 0;
|
5055
5128
|
}
|
5056
5129
|
YY_RULE(int) yy_SetextHeading()
|
5057
5130
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5058
5131
|
yyprintf((stderr, "%s\n", "SetextHeading"));
|
5059
|
-
{ int
|
5060
|
-
|
5132
|
+
{ int yypos1236= yypos, yythunkpos1236= yythunkpos; if (!yy_SetextHeading1()) goto l1237; goto l1236;
|
5133
|
+
l1237:; yypos= yypos1236; yythunkpos= yythunkpos1236; if (!yy_SetextHeading2()) goto l1235;
|
5061
5134
|
}
|
5062
|
-
|
5135
|
+
l1236:;
|
5063
5136
|
yyprintf((stderr, " ok %s @ %s\n", "SetextHeading", yybuf+yypos));
|
5064
5137
|
return 1;
|
5065
|
-
|
5138
|
+
l1235:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5066
5139
|
yyprintf((stderr, " fail %s @ %s\n", "SetextHeading", yybuf+yypos));
|
5067
5140
|
return 0;
|
5068
5141
|
}
|
5069
5142
|
YY_RULE(int) yy_AtxHeading()
|
5070
5143
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 2, 0);
|
5071
|
-
yyprintf((stderr, "%s\n", "AtxHeading")); if (!yy_AtxStart()) goto
|
5072
|
-
|
5073
|
-
{ int
|
5074
|
-
|
5075
|
-
}
|
5076
|
-
{ int
|
5077
|
-
|
5078
|
-
{ int
|
5079
|
-
|
5080
|
-
} if (!yy_Sp()) goto
|
5081
|
-
|
5082
|
-
}
|
5083
|
-
|
5144
|
+
yyprintf((stderr, "%s\n", "AtxHeading")); if (!yy_AtxStart()) goto l1238; yyDo(yySet, -2, 0); if (!yy_Sp()) goto l1238; if (!yy_StartList()) goto l1238; yyDo(yySet, -1, 0); if (!yy_AtxInline()) goto l1238; yyDo(yy_1_AtxHeading, yybegin, yyend);
|
5145
|
+
l1239:;
|
5146
|
+
{ int yypos1240= yypos, yythunkpos1240= yythunkpos; if (!yy_AtxInline()) goto l1240; yyDo(yy_1_AtxHeading, yybegin, yyend); goto l1239;
|
5147
|
+
l1240:; yypos= yypos1240; yythunkpos= yythunkpos1240;
|
5148
|
+
}
|
5149
|
+
{ int yypos1241= yypos, yythunkpos1241= yythunkpos; if (!yy_Sp()) goto l1241;
|
5150
|
+
l1243:;
|
5151
|
+
{ int yypos1244= yypos, yythunkpos1244= yythunkpos; if (!yymatchChar('#')) goto l1244; goto l1243;
|
5152
|
+
l1244:; yypos= yypos1244; yythunkpos= yythunkpos1244;
|
5153
|
+
} if (!yy_Sp()) goto l1241; goto l1242;
|
5154
|
+
l1241:; yypos= yypos1241; yythunkpos= yythunkpos1241;
|
5155
|
+
}
|
5156
|
+
l1242:; if (!yy_Newline()) goto l1238; yyDo(yy_2_AtxHeading, yybegin, yyend);
|
5084
5157
|
yyprintf((stderr, " ok %s @ %s\n", "AtxHeading", yybuf+yypos)); yyDo(yyPop, 2, 0);
|
5085
5158
|
return 1;
|
5086
|
-
|
5159
|
+
l1238:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5087
5160
|
yyprintf((stderr, " fail %s @ %s\n", "AtxHeading", yybuf+yypos));
|
5088
5161
|
return 0;
|
5089
5162
|
}
|
5090
5163
|
YY_RULE(int) yy_AtxStart()
|
5091
5164
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5092
|
-
yyprintf((stderr, "%s\n", "AtxStart")); yyText(yybegin, yyend); if (!(YY_BEGIN)) goto
|
5093
|
-
{ int
|
5094
|
-
|
5095
|
-
|
5096
|
-
|
5097
|
-
|
5098
|
-
|
5165
|
+
yyprintf((stderr, "%s\n", "AtxStart")); yyText(yybegin, yyend); if (!(YY_BEGIN)) goto l1245;
|
5166
|
+
{ int yypos1246= yypos, yythunkpos1246= yythunkpos; if (!yymatchString("######")) goto l1247; goto l1246;
|
5167
|
+
l1247:; yypos= yypos1246; yythunkpos= yythunkpos1246; if (!yymatchString("#####")) goto l1248; goto l1246;
|
5168
|
+
l1248:; yypos= yypos1246; yythunkpos= yythunkpos1246; if (!yymatchString("####")) goto l1249; goto l1246;
|
5169
|
+
l1249:; yypos= yypos1246; yythunkpos= yythunkpos1246; if (!yymatchString("###")) goto l1250; goto l1246;
|
5170
|
+
l1250:; yypos= yypos1246; yythunkpos= yythunkpos1246; if (!yymatchString("##")) goto l1251; goto l1246;
|
5171
|
+
l1251:; yypos= yypos1246; yythunkpos= yythunkpos1246; if (!yymatchChar('#')) goto l1245;
|
5099
5172
|
}
|
5100
|
-
|
5173
|
+
l1246:; yyText(yybegin, yyend); if (!(YY_END)) goto l1245; yyDo(yy_1_AtxStart, yybegin, yyend);
|
5101
5174
|
yyprintf((stderr, " ok %s @ %s\n", "AtxStart", yybuf+yypos));
|
5102
5175
|
return 1;
|
5103
|
-
|
5176
|
+
l1245:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5104
5177
|
yyprintf((stderr, " fail %s @ %s\n", "AtxStart", yybuf+yypos));
|
5105
5178
|
return 0;
|
5106
5179
|
}
|
5107
5180
|
YY_RULE(int) yy_Inline()
|
5108
5181
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5109
5182
|
yyprintf((stderr, "%s\n", "Inline"));
|
5110
|
-
{ int
|
5111
|
-
|
5112
|
-
|
5113
|
-
|
5114
|
-
|
5115
|
-
|
5116
|
-
|
5117
|
-
|
5118
|
-
|
5119
|
-
|
5120
|
-
|
5121
|
-
|
5122
|
-
|
5123
|
-
|
5124
|
-
|
5125
|
-
|
5126
|
-
|
5127
|
-
}
|
5128
|
-
|
5183
|
+
{ int yypos1253= yypos, yythunkpos1253= yythunkpos; if (!yy_Str()) goto l1254; goto l1253;
|
5184
|
+
l1254:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_LineBreak()) goto l1255; goto l1253;
|
5185
|
+
l1255:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_Endline()) goto l1256; goto l1253;
|
5186
|
+
l1256:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_UlOrStarLine()) goto l1257; goto l1253;
|
5187
|
+
l1257:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_Space()) goto l1258; goto l1253;
|
5188
|
+
l1258:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_Strong()) goto l1259; goto l1253;
|
5189
|
+
l1259:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_Emph()) goto l1260; goto l1253;
|
5190
|
+
l1260:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_Image()) goto l1261; goto l1253;
|
5191
|
+
l1261:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_Link()) goto l1262; goto l1253;
|
5192
|
+
l1262:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_NoteReference()) goto l1263; goto l1253;
|
5193
|
+
l1263:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_InlineNote()) goto l1264; goto l1253;
|
5194
|
+
l1264:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_Code()) goto l1265; goto l1253;
|
5195
|
+
l1265:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_RawHtml()) goto l1266; goto l1253;
|
5196
|
+
l1266:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_Entity()) goto l1267; goto l1253;
|
5197
|
+
l1267:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_EscapedChar()) goto l1268; goto l1253;
|
5198
|
+
l1268:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_Smart()) goto l1269; goto l1253;
|
5199
|
+
l1269:; yypos= yypos1253; yythunkpos= yythunkpos1253; if (!yy_Symbol()) goto l1252;
|
5200
|
+
}
|
5201
|
+
l1253:;
|
5129
5202
|
yyprintf((stderr, " ok %s @ %s\n", "Inline", yybuf+yypos));
|
5130
5203
|
return 1;
|
5131
|
-
|
5204
|
+
l1252:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5132
5205
|
yyprintf((stderr, " fail %s @ %s\n", "Inline", yybuf+yypos));
|
5133
5206
|
return 0;
|
5134
5207
|
}
|
5135
5208
|
YY_RULE(int) yy_Sp()
|
5136
5209
|
{
|
5137
5210
|
yyprintf((stderr, "%s\n", "Sp"));
|
5138
|
-
|
5139
|
-
{ int
|
5140
|
-
|
5211
|
+
l1271:;
|
5212
|
+
{ int yypos1272= yypos, yythunkpos1272= yythunkpos; if (!yy_Spacechar()) goto l1272; goto l1271;
|
5213
|
+
l1272:; yypos= yypos1272; yythunkpos= yythunkpos1272;
|
5141
5214
|
}
|
5142
5215
|
yyprintf((stderr, " ok %s @ %s\n", "Sp", yybuf+yypos));
|
5143
5216
|
return 1;
|
@@ -5145,307 +5218,321 @@ YY_RULE(int) yy_Sp()
|
|
5145
5218
|
YY_RULE(int) yy_Newline()
|
5146
5219
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5147
5220
|
yyprintf((stderr, "%s\n", "Newline"));
|
5148
|
-
{ int
|
5149
|
-
|
5150
|
-
{ int
|
5151
|
-
|
5221
|
+
{ int yypos1274= yypos, yythunkpos1274= yythunkpos; if (!yymatchChar('\n')) goto l1275; goto l1274;
|
5222
|
+
l1275:; yypos= yypos1274; yythunkpos= yythunkpos1274; if (!yymatchChar('\r')) goto l1273;
|
5223
|
+
{ int yypos1276= yypos, yythunkpos1276= yythunkpos; if (!yymatchChar('\n')) goto l1276; goto l1277;
|
5224
|
+
l1276:; yypos= yypos1276; yythunkpos= yythunkpos1276;
|
5152
5225
|
}
|
5153
|
-
|
5226
|
+
l1277:;
|
5154
5227
|
}
|
5155
|
-
|
5228
|
+
l1274:;
|
5156
5229
|
yyprintf((stderr, " ok %s @ %s\n", "Newline", yybuf+yypos));
|
5157
5230
|
return 1;
|
5158
|
-
|
5231
|
+
l1273:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5159
5232
|
yyprintf((stderr, " fail %s @ %s\n", "Newline", yybuf+yypos));
|
5160
5233
|
return 0;
|
5161
5234
|
}
|
5162
5235
|
YY_RULE(int) yy_AtxInline()
|
5163
5236
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5164
5237
|
yyprintf((stderr, "%s\n", "AtxInline"));
|
5165
|
-
{ int
|
5166
|
-
|
5167
|
-
}
|
5168
|
-
{ int
|
5169
|
-
|
5170
|
-
{ int
|
5171
|
-
|
5172
|
-
} if (!yy_Sp()) goto
|
5173
|
-
|
5174
|
-
} if (!yy_Inline()) goto
|
5238
|
+
{ int yypos1279= yypos, yythunkpos1279= yythunkpos; if (!yy_Newline()) goto l1279; goto l1278;
|
5239
|
+
l1279:; yypos= yypos1279; yythunkpos= yythunkpos1279;
|
5240
|
+
}
|
5241
|
+
{ int yypos1280= yypos, yythunkpos1280= yythunkpos; if (!yy_Sp()) goto l1280;
|
5242
|
+
l1281:;
|
5243
|
+
{ int yypos1282= yypos, yythunkpos1282= yythunkpos; if (!yymatchChar('#')) goto l1282; goto l1281;
|
5244
|
+
l1282:; yypos= yypos1282; yythunkpos= yythunkpos1282;
|
5245
|
+
} if (!yy_Sp()) goto l1280; if (!yy_Newline()) goto l1280; goto l1278;
|
5246
|
+
l1280:; yypos= yypos1280; yythunkpos= yythunkpos1280;
|
5247
|
+
} if (!yy_Inline()) goto l1278;
|
5175
5248
|
yyprintf((stderr, " ok %s @ %s\n", "AtxInline", yybuf+yypos));
|
5176
5249
|
return 1;
|
5177
|
-
|
5250
|
+
l1278:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5178
5251
|
yyprintf((stderr, " fail %s @ %s\n", "AtxInline", yybuf+yypos));
|
5179
5252
|
return 0;
|
5180
5253
|
}
|
5181
5254
|
YY_RULE(int) yy_Inlines()
|
5182
5255
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 2, 0);
|
5183
|
-
yyprintf((stderr, "%s\n", "Inlines")); if (!yy_StartList()) goto
|
5184
|
-
{ int
|
5185
|
-
{ int
|
5186
|
-
|
5187
|
-
} if (!yy_Inline()) goto
|
5188
|
-
|
5189
|
-
{ int
|
5256
|
+
yyprintf((stderr, "%s\n", "Inlines")); if (!yy_StartList()) goto l1283; yyDo(yySet, -2, 0);
|
5257
|
+
{ int yypos1286= yypos, yythunkpos1286= yythunkpos;
|
5258
|
+
{ int yypos1288= yypos, yythunkpos1288= yythunkpos; if (!yy_Endline()) goto l1288; goto l1287;
|
5259
|
+
l1288:; yypos= yypos1288; yythunkpos= yythunkpos1288;
|
5260
|
+
} if (!yy_Inline()) goto l1287; yyDo(yy_1_Inlines, yybegin, yyend); goto l1286;
|
5261
|
+
l1287:; yypos= yypos1286; yythunkpos= yythunkpos1286; if (!yy_Endline()) goto l1283; yyDo(yySet, -1, 0);
|
5262
|
+
{ int yypos1289= yypos, yythunkpos1289= yythunkpos; if (!yy_Inline()) goto l1283; yypos= yypos1289; yythunkpos= yythunkpos1289;
|
5190
5263
|
} yyDo(yy_2_Inlines, yybegin, yyend);
|
5191
5264
|
}
|
5192
|
-
|
5193
|
-
|
5194
|
-
{ int
|
5195
|
-
{ int
|
5196
|
-
{ int
|
5197
|
-
|
5198
|
-
} if (!yy_Inline()) goto
|
5199
|
-
|
5200
|
-
{ int
|
5265
|
+
l1286:;
|
5266
|
+
l1284:;
|
5267
|
+
{ int yypos1285= yypos, yythunkpos1285= yythunkpos;
|
5268
|
+
{ int yypos1290= yypos, yythunkpos1290= yythunkpos;
|
5269
|
+
{ int yypos1292= yypos, yythunkpos1292= yythunkpos; if (!yy_Endline()) goto l1292; goto l1291;
|
5270
|
+
l1292:; yypos= yypos1292; yythunkpos= yythunkpos1292;
|
5271
|
+
} if (!yy_Inline()) goto l1291; yyDo(yy_1_Inlines, yybegin, yyend); goto l1290;
|
5272
|
+
l1291:; yypos= yypos1290; yythunkpos= yythunkpos1290; if (!yy_Endline()) goto l1285; yyDo(yySet, -1, 0);
|
5273
|
+
{ int yypos1293= yypos, yythunkpos1293= yythunkpos; if (!yy_Inline()) goto l1285; yypos= yypos1293; yythunkpos= yythunkpos1293;
|
5201
5274
|
} yyDo(yy_2_Inlines, yybegin, yyend);
|
5202
5275
|
}
|
5203
|
-
|
5204
|
-
|
5276
|
+
l1290:; goto l1284;
|
5277
|
+
l1285:; yypos= yypos1285; yythunkpos= yythunkpos1285;
|
5205
5278
|
}
|
5206
|
-
{ int
|
5207
|
-
|
5279
|
+
{ int yypos1294= yypos, yythunkpos1294= yythunkpos; if (!yy_Endline()) goto l1294; goto l1295;
|
5280
|
+
l1294:; yypos= yypos1294; yythunkpos= yythunkpos1294;
|
5208
5281
|
}
|
5209
|
-
|
5282
|
+
l1295:; yyDo(yy_3_Inlines, yybegin, yyend);
|
5210
5283
|
yyprintf((stderr, " ok %s @ %s\n", "Inlines", yybuf+yypos)); yyDo(yyPop, 2, 0);
|
5211
5284
|
return 1;
|
5212
|
-
|
5285
|
+
l1283:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5213
5286
|
yyprintf((stderr, " fail %s @ %s\n", "Inlines", yybuf+yypos));
|
5214
5287
|
return 0;
|
5215
5288
|
}
|
5216
5289
|
YY_RULE(int) yy_NonindentSpace()
|
5217
5290
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5218
5291
|
yyprintf((stderr, "%s\n", "NonindentSpace"));
|
5219
|
-
{ int
|
5220
|
-
|
5221
|
-
|
5222
|
-
|
5292
|
+
{ int yypos1297= yypos, yythunkpos1297= yythunkpos; if (!yymatchString(" ")) goto l1298; goto l1297;
|
5293
|
+
l1298:; yypos= yypos1297; yythunkpos= yythunkpos1297; if (!yymatchString(" ")) goto l1299; goto l1297;
|
5294
|
+
l1299:; yypos= yypos1297; yythunkpos= yythunkpos1297; if (!yymatchChar(' ')) goto l1300; goto l1297;
|
5295
|
+
l1300:; yypos= yypos1297; yythunkpos= yythunkpos1297; if (!yymatchString("")) goto l1296;
|
5223
5296
|
}
|
5224
|
-
|
5297
|
+
l1297:;
|
5225
5298
|
yyprintf((stderr, " ok %s @ %s\n", "NonindentSpace", yybuf+yypos));
|
5226
5299
|
return 1;
|
5227
|
-
|
5300
|
+
l1296:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5228
5301
|
yyprintf((stderr, " fail %s @ %s\n", "NonindentSpace", yybuf+yypos));
|
5229
5302
|
return 0;
|
5230
5303
|
}
|
5231
5304
|
YY_RULE(int) yy_Plain()
|
5232
5305
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
|
5233
|
-
yyprintf((stderr, "%s\n", "Plain")); if (!yy_Inlines()) goto
|
5306
|
+
yyprintf((stderr, "%s\n", "Plain")); if (!yy_Inlines()) goto l1301; yyDo(yySet, -1, 0); yyDo(yy_1_Plain, yybegin, yyend);
|
5234
5307
|
yyprintf((stderr, " ok %s @ %s\n", "Plain", yybuf+yypos)); yyDo(yyPop, 1, 0);
|
5235
5308
|
return 1;
|
5236
|
-
|
5309
|
+
l1301:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5237
5310
|
yyprintf((stderr, " fail %s @ %s\n", "Plain", yybuf+yypos));
|
5238
5311
|
return 0;
|
5239
5312
|
}
|
5240
5313
|
YY_RULE(int) yy_Para()
|
5241
5314
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
|
5242
|
-
yyprintf((stderr, "%s\n", "Para")); if (!yy_NonindentSpace()) goto
|
5243
|
-
|
5244
|
-
{ int
|
5245
|
-
|
5315
|
+
yyprintf((stderr, "%s\n", "Para")); if (!yy_NonindentSpace()) goto l1302; if (!yy_Inlines()) goto l1302; yyDo(yySet, -1, 0); if (!yy_BlankLine()) goto l1302;
|
5316
|
+
l1303:;
|
5317
|
+
{ int yypos1304= yypos, yythunkpos1304= yythunkpos; if (!yy_BlankLine()) goto l1304; goto l1303;
|
5318
|
+
l1304:; yypos= yypos1304; yythunkpos= yythunkpos1304;
|
5246
5319
|
} yyDo(yy_1_Para, yybegin, yyend);
|
5247
5320
|
yyprintf((stderr, " ok %s @ %s\n", "Para", yybuf+yypos)); yyDo(yyPop, 1, 0);
|
5248
5321
|
return 1;
|
5249
|
-
|
5322
|
+
l1302:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5250
5323
|
yyprintf((stderr, " fail %s @ %s\n", "Para", yybuf+yypos));
|
5251
5324
|
return 0;
|
5252
5325
|
}
|
5326
|
+
YY_RULE(int) yy_StyleBlock()
|
5327
|
+
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5328
|
+
yyprintf((stderr, "%s\n", "StyleBlock")); yyText(yybegin, yyend); if (!(YY_BEGIN)) goto l1305; if (!yy_InStyleTags()) goto l1305; yyText(yybegin, yyend); if (!(YY_END)) goto l1305;
|
5329
|
+
l1306:;
|
5330
|
+
{ int yypos1307= yypos, yythunkpos1307= yythunkpos; if (!yy_BlankLine()) goto l1307; goto l1306;
|
5331
|
+
l1307:; yypos= yypos1307; yythunkpos= yythunkpos1307;
|
5332
|
+
} yyDo(yy_1_StyleBlock, yybegin, yyend);
|
5333
|
+
yyprintf((stderr, " ok %s @ %s\n", "StyleBlock", yybuf+yypos));
|
5334
|
+
return 1;
|
5335
|
+
l1305:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5336
|
+
yyprintf((stderr, " fail %s @ %s\n", "StyleBlock", yybuf+yypos));
|
5337
|
+
return 0;
|
5338
|
+
}
|
5253
5339
|
YY_RULE(int) yy_HtmlBlock()
|
5254
5340
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5255
|
-
yyprintf((stderr, "%s\n", "HtmlBlock")); yyText(yybegin, yyend); if (!(YY_BEGIN)) goto
|
5256
|
-
{ int
|
5257
|
-
|
5258
|
-
|
5341
|
+
yyprintf((stderr, "%s\n", "HtmlBlock")); yyText(yybegin, yyend); if (!(YY_BEGIN)) goto l1308;
|
5342
|
+
{ int yypos1309= yypos, yythunkpos1309= yythunkpos; if (!yy_HtmlBlockInTags()) goto l1310; goto l1309;
|
5343
|
+
l1310:; yypos= yypos1309; yythunkpos= yythunkpos1309; if (!yy_HtmlComment()) goto l1311; goto l1309;
|
5344
|
+
l1311:; yypos= yypos1309; yythunkpos= yythunkpos1309; if (!yy_HtmlBlockSelfClosing()) goto l1308;
|
5259
5345
|
}
|
5260
|
-
|
5261
|
-
|
5262
|
-
{ int
|
5263
|
-
|
5346
|
+
l1309:; yyText(yybegin, yyend); if (!(YY_END)) goto l1308; if (!yy_BlankLine()) goto l1308;
|
5347
|
+
l1312:;
|
5348
|
+
{ int yypos1313= yypos, yythunkpos1313= yythunkpos; if (!yy_BlankLine()) goto l1313; goto l1312;
|
5349
|
+
l1313:; yypos= yypos1313; yythunkpos= yythunkpos1313;
|
5264
5350
|
} yyDo(yy_1_HtmlBlock, yybegin, yyend);
|
5265
5351
|
yyprintf((stderr, " ok %s @ %s\n", "HtmlBlock", yybuf+yypos));
|
5266
5352
|
return 1;
|
5267
|
-
|
5353
|
+
l1308:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5268
5354
|
yyprintf((stderr, " fail %s @ %s\n", "HtmlBlock", yybuf+yypos));
|
5269
5355
|
return 0;
|
5270
5356
|
}
|
5271
5357
|
YY_RULE(int) yy_BulletList()
|
5272
5358
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5273
5359
|
yyprintf((stderr, "%s\n", "BulletList"));
|
5274
|
-
{ int
|
5275
|
-
|
5360
|
+
{ int yypos1315= yypos, yythunkpos1315= yythunkpos; if (!yy_BulletListTight()) goto l1316; goto l1315;
|
5361
|
+
l1316:; yypos= yypos1315; yythunkpos= yythunkpos1315; if (!yy_BulletListLoose()) goto l1314;
|
5276
5362
|
}
|
5277
|
-
|
5363
|
+
l1315:;
|
5278
5364
|
yyprintf((stderr, " ok %s @ %s\n", "BulletList", yybuf+yypos));
|
5279
5365
|
return 1;
|
5280
|
-
|
5366
|
+
l1314:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5281
5367
|
yyprintf((stderr, " fail %s @ %s\n", "BulletList", yybuf+yypos));
|
5282
5368
|
return 0;
|
5283
5369
|
}
|
5284
5370
|
YY_RULE(int) yy_OrderedList()
|
5285
5371
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5286
5372
|
yyprintf((stderr, "%s\n", "OrderedList"));
|
5287
|
-
{ int
|
5288
|
-
|
5373
|
+
{ int yypos1318= yypos, yythunkpos1318= yythunkpos; if (!yy_OrderedListTight()) goto l1319; goto l1318;
|
5374
|
+
l1319:; yypos= yypos1318; yythunkpos= yythunkpos1318; if (!yy_OrderedListLoose()) goto l1317;
|
5289
5375
|
}
|
5290
|
-
|
5376
|
+
l1318:;
|
5291
5377
|
yyprintf((stderr, " ok %s @ %s\n", "OrderedList", yybuf+yypos));
|
5292
5378
|
return 1;
|
5293
|
-
|
5379
|
+
l1317:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5294
5380
|
yyprintf((stderr, " fail %s @ %s\n", "OrderedList", yybuf+yypos));
|
5295
5381
|
return 0;
|
5296
5382
|
}
|
5297
5383
|
YY_RULE(int) yy_Heading()
|
5298
5384
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5299
5385
|
yyprintf((stderr, "%s\n", "Heading"));
|
5300
|
-
{ int
|
5301
|
-
|
5386
|
+
{ int yypos1321= yypos, yythunkpos1321= yythunkpos; if (!yy_AtxHeading()) goto l1322; goto l1321;
|
5387
|
+
l1322:; yypos= yypos1321; yythunkpos= yythunkpos1321; if (!yy_SetextHeading()) goto l1320;
|
5302
5388
|
}
|
5303
|
-
|
5389
|
+
l1321:;
|
5304
5390
|
yyprintf((stderr, " ok %s @ %s\n", "Heading", yybuf+yypos));
|
5305
5391
|
return 1;
|
5306
|
-
|
5392
|
+
l1320:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5307
5393
|
yyprintf((stderr, " fail %s @ %s\n", "Heading", yybuf+yypos));
|
5308
5394
|
return 0;
|
5309
5395
|
}
|
5310
5396
|
YY_RULE(int) yy_HorizontalRule()
|
5311
5397
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5312
|
-
yyprintf((stderr, "%s\n", "HorizontalRule")); if (!yy_NonindentSpace()) goto
|
5313
|
-
{ int
|
5314
|
-
|
5315
|
-
{ int
|
5316
|
-
|
5317
|
-
} goto
|
5318
|
-
|
5319
|
-
|
5320
|
-
{ int
|
5321
|
-
|
5322
|
-
} goto
|
5323
|
-
|
5324
|
-
|
5325
|
-
{ int
|
5326
|
-
|
5327
|
-
}
|
5328
|
-
}
|
5329
|
-
|
5330
|
-
|
5331
|
-
{ int
|
5332
|
-
|
5398
|
+
yyprintf((stderr, "%s\n", "HorizontalRule")); if (!yy_NonindentSpace()) goto l1323;
|
5399
|
+
{ int yypos1324= yypos, yythunkpos1324= yythunkpos; if (!yymatchChar('*')) goto l1325; if (!yy_Sp()) goto l1325; if (!yymatchChar('*')) goto l1325; if (!yy_Sp()) goto l1325; if (!yymatchChar('*')) goto l1325;
|
5400
|
+
l1326:;
|
5401
|
+
{ int yypos1327= yypos, yythunkpos1327= yythunkpos; if (!yy_Sp()) goto l1327; if (!yymatchChar('*')) goto l1327; goto l1326;
|
5402
|
+
l1327:; yypos= yypos1327; yythunkpos= yythunkpos1327;
|
5403
|
+
} goto l1324;
|
5404
|
+
l1325:; yypos= yypos1324; yythunkpos= yythunkpos1324; if (!yymatchChar('-')) goto l1328; if (!yy_Sp()) goto l1328; if (!yymatchChar('-')) goto l1328; if (!yy_Sp()) goto l1328; if (!yymatchChar('-')) goto l1328;
|
5405
|
+
l1329:;
|
5406
|
+
{ int yypos1330= yypos, yythunkpos1330= yythunkpos; if (!yy_Sp()) goto l1330; if (!yymatchChar('-')) goto l1330; goto l1329;
|
5407
|
+
l1330:; yypos= yypos1330; yythunkpos= yythunkpos1330;
|
5408
|
+
} goto l1324;
|
5409
|
+
l1328:; yypos= yypos1324; yythunkpos= yythunkpos1324; if (!yymatchChar('_')) goto l1323; if (!yy_Sp()) goto l1323; if (!yymatchChar('_')) goto l1323; if (!yy_Sp()) goto l1323; if (!yymatchChar('_')) goto l1323;
|
5410
|
+
l1331:;
|
5411
|
+
{ int yypos1332= yypos, yythunkpos1332= yythunkpos; if (!yy_Sp()) goto l1332; if (!yymatchChar('_')) goto l1332; goto l1331;
|
5412
|
+
l1332:; yypos= yypos1332; yythunkpos= yythunkpos1332;
|
5413
|
+
}
|
5414
|
+
}
|
5415
|
+
l1324:; if (!yy_Sp()) goto l1323; if (!yy_Newline()) goto l1323; if (!yy_BlankLine()) goto l1323;
|
5416
|
+
l1333:;
|
5417
|
+
{ int yypos1334= yypos, yythunkpos1334= yythunkpos; if (!yy_BlankLine()) goto l1334; goto l1333;
|
5418
|
+
l1334:; yypos= yypos1334; yythunkpos= yythunkpos1334;
|
5333
5419
|
} yyDo(yy_1_HorizontalRule, yybegin, yyend);
|
5334
5420
|
yyprintf((stderr, " ok %s @ %s\n", "HorizontalRule", yybuf+yypos));
|
5335
5421
|
return 1;
|
5336
|
-
|
5422
|
+
l1323:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5337
5423
|
yyprintf((stderr, " fail %s @ %s\n", "HorizontalRule", yybuf+yypos));
|
5338
5424
|
return 0;
|
5339
5425
|
}
|
5340
5426
|
YY_RULE(int) yy_Reference()
|
5341
5427
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 3, 0);
|
5342
|
-
yyprintf((stderr, "%s\n", "Reference")); if (!yy_NonindentSpace()) goto
|
5343
|
-
{ int
|
5344
|
-
|
5345
|
-
} if (!yy_Label()) goto
|
5346
|
-
|
5347
|
-
{ int
|
5348
|
-
|
5428
|
+
yyprintf((stderr, "%s\n", "Reference")); if (!yy_NonindentSpace()) goto l1335;
|
5429
|
+
{ int yypos1336= yypos, yythunkpos1336= yythunkpos; if (!yymatchString("[]")) goto l1336; goto l1335;
|
5430
|
+
l1336:; yypos= yypos1336; yythunkpos= yythunkpos1336;
|
5431
|
+
} if (!yy_Label()) goto l1335; yyDo(yySet, -3, 0); if (!yymatchChar(':')) goto l1335; if (!yy_Spnl()) goto l1335; if (!yy_RefSrc()) goto l1335; yyDo(yySet, -2, 0); if (!yy_Spnl()) goto l1335; if (!yy_RefTitle()) goto l1335; yyDo(yySet, -1, 0);
|
5432
|
+
l1337:;
|
5433
|
+
{ int yypos1338= yypos, yythunkpos1338= yythunkpos; if (!yy_BlankLine()) goto l1338; goto l1337;
|
5434
|
+
l1338:; yypos= yypos1338; yythunkpos= yythunkpos1338;
|
5349
5435
|
} yyDo(yy_1_Reference, yybegin, yyend);
|
5350
5436
|
yyprintf((stderr, " ok %s @ %s\n", "Reference", yybuf+yypos)); yyDo(yyPop, 3, 0);
|
5351
5437
|
return 1;
|
5352
|
-
|
5438
|
+
l1335:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5353
5439
|
yyprintf((stderr, " fail %s @ %s\n", "Reference", yybuf+yypos));
|
5354
5440
|
return 0;
|
5355
5441
|
}
|
5356
5442
|
YY_RULE(int) yy_Note()
|
5357
5443
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 2, 0);
|
5358
|
-
yyprintf((stderr, "%s\n", "Note")); yyText(yybegin, yyend); if (!( extension(EXT_NOTES) )) goto
|
5359
|
-
|
5360
|
-
{ int
|
5361
|
-
{ int
|
5362
|
-
} if (!yy_RawNoteBlock()) goto
|
5363
|
-
|
5444
|
+
yyprintf((stderr, "%s\n", "Note")); yyText(yybegin, yyend); if (!( extension(EXT_NOTES) )) goto l1339; if (!yy_NonindentSpace()) goto l1339; if (!yy_RawNoteReference()) goto l1339; yyDo(yySet, -2, 0); if (!yymatchChar(':')) goto l1339; if (!yy_Sp()) goto l1339; if (!yy_StartList()) goto l1339; yyDo(yySet, -1, 0); if (!yy_RawNoteBlock()) goto l1339; yyDo(yy_1_Note, yybegin, yyend);
|
5445
|
+
l1340:;
|
5446
|
+
{ int yypos1341= yypos, yythunkpos1341= yythunkpos;
|
5447
|
+
{ int yypos1342= yypos, yythunkpos1342= yythunkpos; if (!yy_Indent()) goto l1341; yypos= yypos1342; yythunkpos= yythunkpos1342;
|
5448
|
+
} if (!yy_RawNoteBlock()) goto l1341; yyDo(yy_2_Note, yybegin, yyend); goto l1340;
|
5449
|
+
l1341:; yypos= yypos1341; yythunkpos= yythunkpos1341;
|
5364
5450
|
} yyDo(yy_3_Note, yybegin, yyend);
|
5365
5451
|
yyprintf((stderr, " ok %s @ %s\n", "Note", yybuf+yypos)); yyDo(yyPop, 2, 0);
|
5366
5452
|
return 1;
|
5367
|
-
|
5453
|
+
l1339:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5368
5454
|
yyprintf((stderr, " fail %s @ %s\n", "Note", yybuf+yypos));
|
5369
5455
|
return 0;
|
5370
5456
|
}
|
5371
5457
|
YY_RULE(int) yy_Verbatim()
|
5372
5458
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
|
5373
|
-
yyprintf((stderr, "%s\n", "Verbatim")); if (!yy_StartList()) goto
|
5374
|
-
|
5375
|
-
{ int
|
5376
|
-
|
5459
|
+
yyprintf((stderr, "%s\n", "Verbatim")); if (!yy_StartList()) goto l1343; yyDo(yySet, -1, 0); if (!yy_VerbatimChunk()) goto l1343; yyDo(yy_1_Verbatim, yybegin, yyend);
|
5460
|
+
l1344:;
|
5461
|
+
{ int yypos1345= yypos, yythunkpos1345= yythunkpos; if (!yy_VerbatimChunk()) goto l1345; yyDo(yy_1_Verbatim, yybegin, yyend); goto l1344;
|
5462
|
+
l1345:; yypos= yypos1345; yythunkpos= yythunkpos1345;
|
5377
5463
|
} yyDo(yy_2_Verbatim, yybegin, yyend);
|
5378
5464
|
yyprintf((stderr, " ok %s @ %s\n", "Verbatim", yybuf+yypos)); yyDo(yyPop, 1, 0);
|
5379
5465
|
return 1;
|
5380
|
-
|
5466
|
+
l1343:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5381
5467
|
yyprintf((stderr, " fail %s @ %s\n", "Verbatim", yybuf+yypos));
|
5382
5468
|
return 0;
|
5383
5469
|
}
|
5384
5470
|
YY_RULE(int) yy_BlockQuote()
|
5385
5471
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
|
5386
|
-
yyprintf((stderr, "%s\n", "BlockQuote")); if (!yy_BlockQuoteRaw()) goto
|
5472
|
+
yyprintf((stderr, "%s\n", "BlockQuote")); if (!yy_BlockQuoteRaw()) goto l1346; yyDo(yySet, -1, 0); yyDo(yy_1_BlockQuote, yybegin, yyend);
|
5387
5473
|
yyprintf((stderr, " ok %s @ %s\n", "BlockQuote", yybuf+yypos)); yyDo(yyPop, 1, 0);
|
5388
5474
|
return 1;
|
5389
|
-
|
5475
|
+
l1346:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5390
5476
|
yyprintf((stderr, " fail %s @ %s\n", "BlockQuote", yybuf+yypos));
|
5391
5477
|
return 0;
|
5392
5478
|
}
|
5393
5479
|
YY_RULE(int) yy_BlankLine()
|
5394
5480
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5395
|
-
yyprintf((stderr, "%s\n", "BlankLine")); if (!yy_Sp()) goto
|
5481
|
+
yyprintf((stderr, "%s\n", "BlankLine")); if (!yy_Sp()) goto l1347; if (!yy_Newline()) goto l1347;
|
5396
5482
|
yyprintf((stderr, " ok %s @ %s\n", "BlankLine", yybuf+yypos));
|
5397
5483
|
return 1;
|
5398
|
-
|
5484
|
+
l1347:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5399
5485
|
yyprintf((stderr, " fail %s @ %s\n", "BlankLine", yybuf+yypos));
|
5400
5486
|
return 0;
|
5401
5487
|
}
|
5402
5488
|
YY_RULE(int) yy_Block()
|
5403
5489
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5404
5490
|
yyprintf((stderr, "%s\n", "Block"));
|
5405
|
-
|
5406
|
-
{ int
|
5407
|
-
|
5408
|
-
}
|
5409
|
-
{ int
|
5410
|
-
|
5411
|
-
|
5412
|
-
|
5413
|
-
|
5414
|
-
|
5415
|
-
|
5416
|
-
|
5417
|
-
|
5418
|
-
|
5419
|
-
|
5420
|
-
|
5421
|
-
|
5491
|
+
l1349:;
|
5492
|
+
{ int yypos1350= yypos, yythunkpos1350= yythunkpos; if (!yy_BlankLine()) goto l1350; goto l1349;
|
5493
|
+
l1350:; yypos= yypos1350; yythunkpos= yythunkpos1350;
|
5494
|
+
}
|
5495
|
+
{ int yypos1351= yypos, yythunkpos1351= yythunkpos; if (!yy_BlockQuote()) goto l1352; goto l1351;
|
5496
|
+
l1352:; yypos= yypos1351; yythunkpos= yythunkpos1351; if (!yy_Verbatim()) goto l1353; goto l1351;
|
5497
|
+
l1353:; yypos= yypos1351; yythunkpos= yythunkpos1351; if (!yy_Note()) goto l1354; goto l1351;
|
5498
|
+
l1354:; yypos= yypos1351; yythunkpos= yythunkpos1351; if (!yy_Reference()) goto l1355; goto l1351;
|
5499
|
+
l1355:; yypos= yypos1351; yythunkpos= yythunkpos1351; if (!yy_HorizontalRule()) goto l1356; goto l1351;
|
5500
|
+
l1356:; yypos= yypos1351; yythunkpos= yythunkpos1351; if (!yy_Heading()) goto l1357; goto l1351;
|
5501
|
+
l1357:; yypos= yypos1351; yythunkpos= yythunkpos1351; if (!yy_OrderedList()) goto l1358; goto l1351;
|
5502
|
+
l1358:; yypos= yypos1351; yythunkpos= yythunkpos1351; if (!yy_BulletList()) goto l1359; goto l1351;
|
5503
|
+
l1359:; yypos= yypos1351; yythunkpos= yythunkpos1351; if (!yy_HtmlBlock()) goto l1360; goto l1351;
|
5504
|
+
l1360:; yypos= yypos1351; yythunkpos= yythunkpos1351; if (!yy_StyleBlock()) goto l1361; goto l1351;
|
5505
|
+
l1361:; yypos= yypos1351; yythunkpos= yythunkpos1351; if (!yy_Para()) goto l1362; goto l1351;
|
5506
|
+
l1362:; yypos= yypos1351; yythunkpos= yythunkpos1351; if (!yy_Plain()) goto l1348;
|
5507
|
+
}
|
5508
|
+
l1351:;
|
5422
5509
|
yyprintf((stderr, " ok %s @ %s\n", "Block", yybuf+yypos));
|
5423
5510
|
return 1;
|
5424
|
-
|
5511
|
+
l1348:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5425
5512
|
yyprintf((stderr, " fail %s @ %s\n", "Block", yybuf+yypos));
|
5426
5513
|
return 0;
|
5427
5514
|
}
|
5428
5515
|
YY_RULE(int) yy_StartList()
|
5429
5516
|
{ int yypos0= yypos, yythunkpos0= yythunkpos;
|
5430
5517
|
yyprintf((stderr, "%s\n", "StartList"));
|
5431
|
-
{ int
|
5518
|
+
{ int yypos1364= yypos, yythunkpos1364= yythunkpos; if (!yymatchDot()) goto l1363; yypos= yypos1364; yythunkpos= yythunkpos1364;
|
5432
5519
|
} yyDo(yy_1_StartList, yybegin, yyend);
|
5433
5520
|
yyprintf((stderr, " ok %s @ %s\n", "StartList", yybuf+yypos));
|
5434
5521
|
return 1;
|
5435
|
-
|
5522
|
+
l1363:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5436
5523
|
yyprintf((stderr, " fail %s @ %s\n", "StartList", yybuf+yypos));
|
5437
5524
|
return 0;
|
5438
5525
|
}
|
5439
5526
|
YY_RULE(int) yy_Doc()
|
5440
5527
|
{ int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
|
5441
|
-
yyprintf((stderr, "%s\n", "Doc")); if (!yy_StartList()) goto
|
5442
|
-
|
5443
|
-
{ int
|
5444
|
-
|
5528
|
+
yyprintf((stderr, "%s\n", "Doc")); if (!yy_StartList()) goto l1365; yyDo(yySet, -1, 0);
|
5529
|
+
l1366:;
|
5530
|
+
{ int yypos1367= yypos, yythunkpos1367= yythunkpos; if (!yy_Block()) goto l1367; yyDo(yy_1_Doc, yybegin, yyend); goto l1366;
|
5531
|
+
l1367:; yypos= yypos1367; yythunkpos= yythunkpos1367;
|
5445
5532
|
} yyDo(yy_2_Doc, yybegin, yyend);
|
5446
5533
|
yyprintf((stderr, " ok %s @ %s\n", "Doc", yybuf+yypos)); yyDo(yyPop, 1, 0);
|
5447
5534
|
return 1;
|
5448
|
-
|
5535
|
+
l1365:; yypos= yypos0; yythunkpos= yythunkpos0;
|
5449
5536
|
yyprintf((stderr, " fail %s @ %s\n", "Doc", yybuf+yypos));
|
5450
5537
|
return 0;
|
5451
5538
|
}
|