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.
@@ -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 = '0.2.0'
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 = "Ruby extension library for peg-markdown"
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 = ['README', 'LICENSE']
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/markdown.#{DLEXT}" => FileList['ext/Makefile', 'ext/*.{c,h,rb}'] do |f|
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/markdown.#{DLEXT}" => "ext/markdown.#{DLEXT}" do |f|
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 peg-markdown extension'
91
- task :build => "lib/markdown.#{DLEXT}"
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 'Run conformance tests (MARKDOWN_TEST_VER=1.0)'
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'] || '1.0'
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' => 'test:conformance'
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
@@ -1,8 +1,6 @@
1
1
  require 'mkmf'
2
2
 
3
- dir_config('markdown')
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('markdown')
15
+ create_makefile('peg_markdown')
@@ -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, id_text, 0);
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, id_smart, 0) == Qtrue )
16
+ if ( rb_funcall(self, rb_intern("smart"), 0) == Qtrue )
24
17
  extensions = extensions | EXT_SMART ;
25
- if ( rb_funcall(self, id_notes, 0) == Qtrue )
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 Init_markdown()
32
+ void Init_peg_markdown()
36
33
  {
37
- /* Initialize frequently used Symbols */
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
 
@@ -3,8 +3,10 @@
3
3
  #include <glib.h>
4
4
 
5
5
  enum markdown_extensions {
6
- EXT_SMART = 1,
7
- EXT_NOTES = 2
6
+ EXT_SMART = 0x1,
7
+ EXT_NOTES = 0x2,
8
+ EXT_FILTER_HTML = 0x4,
9
+ EXT_FILTER_STYLES = 0x8
8
10
  };
9
11
 
10
12
  enum markdown_formats {
@@ -3,7 +3,7 @@
3
3
  #include <stdio.h>
4
4
  #include <stdlib.h>
5
5
  #include <string.h>
6
- #define YYRULECOUNT 208
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(); /* 208 */
247
- YY_RULE(int) yy_RawNoteBlock(); /* 207 */
248
- YY_RULE(int) yy_RawNoteReference(); /* 206 */
249
- YY_RULE(int) yy_DoubleQuoteEnd(); /* 205 */
250
- YY_RULE(int) yy_DoubleQuoteStart(); /* 204 */
251
- YY_RULE(int) yy_SingleQuoteEnd(); /* 203 */
252
- YY_RULE(int) yy_SingleQuoteStart(); /* 202 */
253
- YY_RULE(int) yy_EnDash(); /* 201 */
254
- YY_RULE(int) yy_EmDash(); /* 200 */
255
- YY_RULE(int) yy_Apostrophe(); /* 199 */
256
- YY_RULE(int) yy_DoubleQuoted(); /* 198 */
257
- YY_RULE(int) yy_SingleQuoted(); /* 197 */
258
- YY_RULE(int) yy_Dash(); /* 196 */
259
- YY_RULE(int) yy_Ellipsis(); /* 195 */
260
- YY_RULE(int) yy_RawLine(); /* 194 */
261
- YY_RULE(int) yy_Digit(); /* 193 */
262
- YY_RULE(int) yy_ExtendedSpecialChar(); /* 192 */
263
- YY_RULE(int) yy_Quoted(); /* 191 */
264
- YY_RULE(int) yy_HtmlTag(); /* 190 */
265
- YY_RULE(int) yy_Ticks5(); /* 189 */
266
- YY_RULE(int) yy_Ticks4(); /* 188 */
267
- YY_RULE(int) yy_Ticks3(); /* 187 */
268
- YY_RULE(int) yy_Ticks2(); /* 186 */
269
- YY_RULE(int) yy_Ticks1(); /* 185 */
270
- YY_RULE(int) yy_SkipBlock(); /* 184 */
271
- YY_RULE(int) yy_References(); /* 183 */
272
- YY_RULE(int) yy_EmptyTitle(); /* 182 */
273
- YY_RULE(int) yy_RefTitleParens(); /* 181 */
274
- YY_RULE(int) yy_RefTitleDouble(); /* 180 */
275
- YY_RULE(int) yy_RefTitleSingle(); /* 179 */
276
- YY_RULE(int) yy_RefTitle(); /* 178 */
277
- YY_RULE(int) yy_RefSrc(); /* 177 */
278
- YY_RULE(int) yy_AutoLinkEmail(); /* 176 */
279
- YY_RULE(int) yy_AutoLinkUrl(); /* 175 */
280
- YY_RULE(int) yy_TitleDouble(); /* 174 */
281
- YY_RULE(int) yy_TitleSingle(); /* 173 */
282
- YY_RULE(int) yy_Nonspacechar(); /* 172 */
283
- YY_RULE(int) yy_SourceContents(); /* 171 */
284
- YY_RULE(int) yy_Title(); /* 170 */
285
- YY_RULE(int) yy_Source(); /* 169 */
286
- YY_RULE(int) yy_Label(); /* 168 */
287
- YY_RULE(int) yy_ReferenceLinkSingle(); /* 167 */
288
- YY_RULE(int) yy_ReferenceLinkDouble(); /* 166 */
289
- YY_RULE(int) yy_AutoLink(); /* 165 */
290
- YY_RULE(int) yy_ReferenceLink(); /* 164 */
291
- YY_RULE(int) yy_ExplicitLink(); /* 163 */
292
- YY_RULE(int) yy_TwoUlClose(); /* 162 */
293
- YY_RULE(int) yy_TwoUlOpen(); /* 161 */
294
- YY_RULE(int) yy_TwoStarClose(); /* 160 */
295
- YY_RULE(int) yy_TwoStarOpen(); /* 159 */
296
- YY_RULE(int) yy_Alphanumeric(); /* 158 */
297
- YY_RULE(int) yy_StrongUl(); /* 157 */
298
- YY_RULE(int) yy_OneUlClose(); /* 156 */
299
- YY_RULE(int) yy_OneUlOpen(); /* 155 */
300
- YY_RULE(int) yy_StrongStar(); /* 154 */
301
- YY_RULE(int) yy_OneStarClose(); /* 153 */
302
- YY_RULE(int) yy_OneStarOpen(); /* 152 */
303
- YY_RULE(int) yy_EmphUl(); /* 151 */
304
- YY_RULE(int) yy_EmphStar(); /* 150 */
305
- YY_RULE(int) yy_StarLine(); /* 149 */
306
- YY_RULE(int) yy_UlLine(); /* 148 */
307
- YY_RULE(int) yy_SpecialChar(); /* 147 */
308
- YY_RULE(int) yy_Eof(); /* 146 */
309
- YY_RULE(int) yy_NormalEndline(); /* 145 */
310
- YY_RULE(int) yy_TerminalEndline(); /* 144 */
311
- YY_RULE(int) yy_CharEntity(); /* 143 */
312
- YY_RULE(int) yy_DecEntity(); /* 142 */
313
- YY_RULE(int) yy_HexEntity(); /* 141 */
314
- YY_RULE(int) yy_NormalChar(); /* 140 */
315
- YY_RULE(int) yy_Symbol(); /* 139 */
316
- YY_RULE(int) yy_Smart(); /* 138 */
317
- YY_RULE(int) yy_EscapedChar(); /* 137 */
318
- YY_RULE(int) yy_Entity(); /* 136 */
319
- YY_RULE(int) yy_RawHtml(); /* 135 */
320
- YY_RULE(int) yy_Code(); /* 134 */
321
- YY_RULE(int) yy_InlineNote(); /* 133 */
322
- YY_RULE(int) yy_NoteReference(); /* 132 */
323
- YY_RULE(int) yy_Link(); /* 131 */
324
- YY_RULE(int) yy_Image(); /* 130 */
325
- YY_RULE(int) yy_Emph(); /* 129 */
326
- YY_RULE(int) yy_Strong(); /* 128 */
327
- YY_RULE(int) yy_Space(); /* 127 */
328
- YY_RULE(int) yy_UlOrStarLine(); /* 126 */
329
- YY_RULE(int) yy_LineBreak(); /* 125 */
330
- YY_RULE(int) yy_Str(); /* 124 */
331
- YY_RULE(int) yy_HtmlBlockType(); /* 123 */
332
- YY_RULE(int) yy_HtmlBlockSelfClosing(); /* 122 */
333
- YY_RULE(int) yy_HtmlComment(); /* 121 */
334
- YY_RULE(int) yy_HtmlBlockInTags(); /* 120 */
335
- YY_RULE(int) yy_HtmlBlockCloseScript(); /* 119 */
336
- YY_RULE(int) yy_HtmlBlockOpenScript(); /* 118 */
337
- YY_RULE(int) yy_HtmlBlockCloseTr(); /* 117 */
338
- YY_RULE(int) yy_HtmlBlockOpenTr(); /* 116 */
339
- YY_RULE(int) yy_HtmlBlockCloseThead(); /* 115 */
340
- YY_RULE(int) yy_HtmlBlockOpenThead(); /* 114 */
341
- YY_RULE(int) yy_HtmlBlockCloseTh(); /* 113 */
342
- YY_RULE(int) yy_HtmlBlockOpenTh(); /* 112 */
343
- YY_RULE(int) yy_HtmlBlockCloseTfoot(); /* 111 */
344
- YY_RULE(int) yy_HtmlBlockOpenTfoot(); /* 110 */
345
- YY_RULE(int) yy_HtmlBlockCloseTd(); /* 109 */
346
- YY_RULE(int) yy_HtmlBlockOpenTd(); /* 108 */
347
- YY_RULE(int) yy_HtmlBlockCloseTbody(); /* 107 */
348
- YY_RULE(int) yy_HtmlBlockOpenTbody(); /* 106 */
349
- YY_RULE(int) yy_HtmlBlockCloseLi(); /* 105 */
350
- YY_RULE(int) yy_HtmlBlockOpenLi(); /* 104 */
351
- YY_RULE(int) yy_HtmlBlockCloseFrameset(); /* 103 */
352
- YY_RULE(int) yy_HtmlBlockOpenFrameset(); /* 102 */
353
- YY_RULE(int) yy_HtmlBlockCloseDt(); /* 101 */
354
- YY_RULE(int) yy_HtmlBlockOpenDt(); /* 100 */
355
- YY_RULE(int) yy_HtmlBlockCloseDd(); /* 99 */
356
- YY_RULE(int) yy_HtmlBlockOpenDd(); /* 98 */
357
- YY_RULE(int) yy_HtmlBlockCloseUl(); /* 97 */
358
- YY_RULE(int) yy_HtmlBlockOpenUl(); /* 96 */
359
- YY_RULE(int) yy_HtmlBlockCloseTable(); /* 95 */
360
- YY_RULE(int) yy_HtmlBlockOpenTable(); /* 94 */
361
- YY_RULE(int) yy_HtmlBlockClosePre(); /* 93 */
362
- YY_RULE(int) yy_HtmlBlockOpenPre(); /* 92 */
363
- YY_RULE(int) yy_HtmlBlockCloseP(); /* 91 */
364
- YY_RULE(int) yy_HtmlBlockOpenP(); /* 90 */
365
- YY_RULE(int) yy_HtmlBlockCloseOl(); /* 89 */
366
- YY_RULE(int) yy_HtmlBlockOpenOl(); /* 88 */
367
- YY_RULE(int) yy_HtmlBlockCloseNoscript(); /* 87 */
368
- YY_RULE(int) yy_HtmlBlockOpenNoscript(); /* 86 */
369
- YY_RULE(int) yy_HtmlBlockCloseNoframes(); /* 85 */
370
- YY_RULE(int) yy_HtmlBlockOpenNoframes(); /* 84 */
371
- YY_RULE(int) yy_HtmlBlockCloseMenu(); /* 83 */
372
- YY_RULE(int) yy_HtmlBlockOpenMenu(); /* 82 */
373
- YY_RULE(int) yy_HtmlBlockCloseIsindex(); /* 81 */
374
- YY_RULE(int) yy_HtmlBlockOpenIsindex(); /* 80 */
375
- YY_RULE(int) yy_HtmlBlockCloseHr(); /* 79 */
376
- YY_RULE(int) yy_HtmlBlockOpenHr(); /* 78 */
377
- YY_RULE(int) yy_HtmlBlockCloseH6(); /* 77 */
378
- YY_RULE(int) yy_HtmlBlockOpenH6(); /* 76 */
379
- YY_RULE(int) yy_HtmlBlockCloseH5(); /* 75 */
380
- YY_RULE(int) yy_HtmlBlockOpenH5(); /* 74 */
381
- YY_RULE(int) yy_HtmlBlockCloseH4(); /* 73 */
382
- YY_RULE(int) yy_HtmlBlockOpenH4(); /* 72 */
383
- YY_RULE(int) yy_HtmlBlockCloseH3(); /* 71 */
384
- YY_RULE(int) yy_HtmlBlockOpenH3(); /* 70 */
385
- YY_RULE(int) yy_HtmlBlockCloseH2(); /* 69 */
386
- YY_RULE(int) yy_HtmlBlockOpenH2(); /* 68 */
387
- YY_RULE(int) yy_HtmlBlockCloseH1(); /* 67 */
388
- YY_RULE(int) yy_HtmlBlockOpenH1(); /* 66 */
389
- YY_RULE(int) yy_HtmlBlockCloseForm(); /* 65 */
390
- YY_RULE(int) yy_HtmlBlockOpenForm(); /* 64 */
391
- YY_RULE(int) yy_HtmlBlockCloseFieldset(); /* 63 */
392
- YY_RULE(int) yy_HtmlBlockOpenFieldset(); /* 62 */
393
- YY_RULE(int) yy_HtmlBlockCloseDl(); /* 61 */
394
- YY_RULE(int) yy_HtmlBlockOpenDl(); /* 60 */
395
- YY_RULE(int) yy_HtmlBlockCloseDiv(); /* 59 */
396
- YY_RULE(int) yy_HtmlBlockOpenDiv(); /* 58 */
397
- YY_RULE(int) yy_HtmlBlockCloseDir(); /* 57 */
398
- YY_RULE(int) yy_HtmlBlockOpenDir(); /* 56 */
399
- YY_RULE(int) yy_HtmlBlockCloseCenter(); /* 55 */
400
- YY_RULE(int) yy_HtmlBlockOpenCenter(); /* 54 */
401
- YY_RULE(int) yy_HtmlBlockCloseBlockquote(); /* 53 */
402
- YY_RULE(int) yy_HtmlBlockOpenBlockquote(); /* 52 */
403
- YY_RULE(int) yy_HtmlBlockCloseAddress(); /* 51 */
404
- YY_RULE(int) yy_HtmlAttribute(); /* 50 */
405
- YY_RULE(int) yy_Spnl(); /* 49 */
406
- YY_RULE(int) yy_HtmlBlockOpenAddress(); /* 48 */
407
- YY_RULE(int) yy_OptionallyIndentedLine(); /* 47 */
408
- YY_RULE(int) yy_OrderedListItem(); /* 46 */
409
- YY_RULE(int) yy_OrderedListLoose(); /* 45 */
410
- YY_RULE(int) yy_OrderedListTight(); /* 44 */
411
- YY_RULE(int) yy_Indent(); /* 43 */
412
- YY_RULE(int) yy_ListBlockLine(); /* 42 */
413
- YY_RULE(int) yy_ListContinuationBlock(); /* 41 */
414
- YY_RULE(int) yy_ListBlock(); /* 40 */
415
- YY_RULE(int) yy_Enumerator(); /* 39 */
416
- YY_RULE(int) yy_ListItem(); /* 38 */
417
- YY_RULE(int) yy_BulletListItem(); /* 37 */
418
- YY_RULE(int) yy_BulletListLoose(); /* 36 */
419
- YY_RULE(int) yy_BulletListTight(); /* 35 */
420
- YY_RULE(int) yy_Spacechar(); /* 34 */
421
- YY_RULE(int) yy_Bullet(); /* 33 */
422
- YY_RULE(int) yy_VerbatimChunk(); /* 32 */
423
- YY_RULE(int) yy_IndentedLine(); /* 31 */
424
- YY_RULE(int) yy_NonblankIndentedLine(); /* 30 */
425
- YY_RULE(int) yy_Line(); /* 29 */
426
- YY_RULE(int) yy_BlockQuoteRaw(); /* 28 */
427
- YY_RULE(int) yy_Endline(); /* 27 */
428
- YY_RULE(int) yy_SetextHeading2(); /* 26 */
429
- YY_RULE(int) yy_SetextHeading1(); /* 25 */
430
- YY_RULE(int) yy_SetextHeading(); /* 24 */
431
- YY_RULE(int) yy_AtxHeading(); /* 23 */
432
- YY_RULE(int) yy_AtxStart(); /* 22 */
433
- YY_RULE(int) yy_Inline(); /* 21 */
434
- YY_RULE(int) yy_Sp(); /* 20 */
435
- YY_RULE(int) yy_Newline(); /* 19 */
436
- YY_RULE(int) yy_AtxInline(); /* 18 */
437
- YY_RULE(int) yy_Inlines(); /* 17 */
438
- YY_RULE(int) yy_NonindentSpace(); /* 16 */
439
- YY_RULE(int) yy_Plain(); /* 15 */
440
- YY_RULE(int) yy_Para(); /* 14 */
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
- yy = mk_str(yytext); yy->key = HTML; ;
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
- yy = mk_str(yytext); yy->key = HTMLBLOCK; ;
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 yypos522= yypos, yythunkpos522= yythunkpos; if (!yymatchString("address")) goto l523; goto l522;
3014
- l523:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("blockquote")) goto l524; goto l522;
3015
- l524:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("center")) goto l525; goto l522;
3016
- l525:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("dir")) goto l526; goto l522;
3017
- l526:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("div")) goto l527; goto l522;
3018
- l527:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("dl")) goto l528; goto l522;
3019
- l528:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("fieldset")) goto l529; goto l522;
3020
- l529:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("form")) goto l530; goto l522;
3021
- l530:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("h1")) goto l531; goto l522;
3022
- l531:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("h2")) goto l532; goto l522;
3023
- l532:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("h3")) goto l533; goto l522;
3024
- l533:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("h4")) goto l534; goto l522;
3025
- l534:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("h5")) goto l535; goto l522;
3026
- l535:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("h6")) goto l536; goto l522;
3027
- l536:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("hr")) goto l537; goto l522;
3028
- l537:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("isindex")) goto l538; goto l522;
3029
- l538:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("menu")) goto l539; goto l522;
3030
- l539:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("noframes")) goto l540; goto l522;
3031
- l540:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("noscript")) goto l541; goto l522;
3032
- l541:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("ol")) goto l542; goto l522;
3033
- l542:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchChar('p')) goto l543; goto l522;
3034
- l543:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("pre")) goto l544; goto l522;
3035
- l544:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("table")) goto l545; goto l522;
3036
- l545:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("ul")) goto l546; goto l522;
3037
- l546:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("dd")) goto l547; goto l522;
3038
- l547:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("dt")) goto l548; goto l522;
3039
- l548:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("frameset")) goto l549; goto l522;
3040
- l549:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("li")) goto l550; goto l522;
3041
- l550:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("tbody")) goto l551; goto l522;
3042
- l551:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("td")) goto l552; goto l522;
3043
- l552:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("tfoot")) goto l553; goto l522;
3044
- l553:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("th")) goto l554; goto l522;
3045
- l554:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("thead")) goto l555; goto l522;
3046
- l555:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("tr")) goto l556; goto l522;
3047
- l556:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("script")) goto l557; goto l522;
3048
- l557:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("ADDRESS")) goto l558; goto l522;
3049
- l558:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("BLOCKQUOTE")) goto l559; goto l522;
3050
- l559:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("CENTER")) goto l560; goto l522;
3051
- l560:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("DIR")) goto l561; goto l522;
3052
- l561:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("DIV")) goto l562; goto l522;
3053
- l562:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("DL")) goto l563; goto l522;
3054
- l563:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("FIELDSET")) goto l564; goto l522;
3055
- l564:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("FORM")) goto l565; goto l522;
3056
- l565:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("H1")) goto l566; goto l522;
3057
- l566:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("H2")) goto l567; goto l522;
3058
- l567:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("H3")) goto l568; goto l522;
3059
- l568:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("H4")) goto l569; goto l522;
3060
- l569:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("H5")) goto l570; goto l522;
3061
- l570:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("H6")) goto l571; goto l522;
3062
- l571:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("HR")) goto l572; goto l522;
3063
- l572:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("ISINDEX")) goto l573; goto l522;
3064
- l573:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("MENU")) goto l574; goto l522;
3065
- l574:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("NOFRAMES")) goto l575; goto l522;
3066
- l575:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("NOSCRIPT")) goto l576; goto l522;
3067
- l576:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("OL")) goto l577; goto l522;
3068
- l577:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchChar('P')) goto l578; goto l522;
3069
- l578:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("PRE")) goto l579; goto l522;
3070
- l579:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("TABLE")) goto l580; goto l522;
3071
- l580:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("UL")) goto l581; goto l522;
3072
- l581:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("DD")) goto l582; goto l522;
3073
- l582:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("DT")) goto l583; goto l522;
3074
- l583:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("FRAMESET")) goto l584; goto l522;
3075
- l584:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("LI")) goto l585; goto l522;
3076
- l585:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("TBODY")) goto l586; goto l522;
3077
- l586:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("TD")) goto l587; goto l522;
3078
- l587:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("TFOOT")) goto l588; goto l522;
3079
- l588:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("TH")) goto l589; goto l522;
3080
- l589:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("THEAD")) goto l590; goto l522;
3081
- l590:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("TR")) goto l591; goto l522;
3082
- l591:; yypos= yypos522; yythunkpos= yythunkpos522; if (!yymatchString("SCRIPT")) goto l521;
3083
- }
3084
- l522:;
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
- l521:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l592; if (!yy_Spnl()) goto l592; if (!yy_HtmlBlockType()) goto l592; if (!yy_Spnl()) goto l592;
3094
- l593:;
3095
- { int yypos594= yypos, yythunkpos594= yythunkpos; if (!yy_HtmlAttribute()) goto l594; goto l593;
3096
- l594:; yypos= yypos594; yythunkpos= yythunkpos594;
3097
- } if (!yymatchChar('/')) goto l592; if (!yy_Spnl()) goto l592; if (!yymatchChar('>')) goto l592;
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
- l592:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l595;
3107
- l596:;
3108
- { int yypos597= yypos, yythunkpos597= yythunkpos;
3109
- { int yypos598= yypos, yythunkpos598= yythunkpos; if (!yymatchString("-->")) goto l598; goto l597;
3110
- l598:; yypos= yypos598; yythunkpos= yythunkpos598;
3111
- } if (!yymatchDot()) goto l597; goto l596;
3112
- l597:; yypos= yypos597; yythunkpos= yythunkpos597;
3113
- } if (!yymatchString("-->")) goto l595;
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
- l595:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos600= yypos, yythunkpos600= yythunkpos; if (!yy_HtmlBlockOpenAddress()) goto l601;
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 (!yy_HtmlBlockCloseCenter()) goto l618; goto l615;
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 (!yy_HtmlBlockCloseCenter()) goto l613; goto l600;
3159
- l613:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenDir()) goto l619;
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 (!yy_HtmlBlockCloseDir()) goto l624; goto l621;
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 (!yy_HtmlBlockCloseDir()) goto l619; goto l600;
3171
- l619:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenDiv()) goto l625;
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 (!yy_HtmlBlockCloseDiv()) goto l630; goto l627;
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 (!yy_HtmlBlockCloseDiv()) goto l625; goto l600;
3183
- l625:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenDl()) goto l631;
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 (!yy_HtmlBlockCloseDl()) goto l636; goto l633;
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 (!yy_HtmlBlockCloseDl()) goto l631; goto l600;
3195
- l631:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenFieldset()) goto l637;
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 (!yy_HtmlBlockCloseFieldset()) goto l642; goto l639;
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 (!yy_HtmlBlockCloseFieldset()) goto l637; goto l600;
3207
- l637:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenForm()) goto l643;
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 (!yy_HtmlBlockCloseForm()) goto l648; goto l645;
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 (!yy_HtmlBlockCloseForm()) goto l643; goto l600;
3219
- l643:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenH1()) goto l649;
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 (!yy_HtmlBlockCloseH1()) goto l654; goto l651;
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 (!yy_HtmlBlockCloseH1()) goto l649; goto l600;
3231
- l649:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenH2()) goto l655;
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 (!yy_HtmlBlockCloseH2()) goto l660; goto l657;
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 (!yy_HtmlBlockCloseH2()) goto l655; goto l600;
3243
- l655:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenH3()) goto l661;
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 (!yy_HtmlBlockCloseH3()) goto l666; goto l663;
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 (!yy_HtmlBlockCloseH3()) goto l661; goto l600;
3255
- l661:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenH4()) goto l667;
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 (!yy_HtmlBlockCloseH4()) goto l672; goto l669;
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 (!yy_HtmlBlockCloseH4()) goto l667; goto l600;
3267
- l667:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenH5()) goto l673;
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 (!yy_HtmlBlockCloseH5()) goto l678; goto l675;
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 (!yy_HtmlBlockCloseH5()) goto l673; goto l600;
3279
- l673:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenH6()) goto l679;
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 (!yy_HtmlBlockCloseH6()) goto l684; goto l681;
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 (!yy_HtmlBlockCloseH6()) goto l679; goto l600;
3291
- l679:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenHr()) goto l685;
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 (!yy_HtmlBlockCloseHr()) goto l690; goto l687;
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 (!yy_HtmlBlockCloseHr()) goto l685; goto l600;
3303
- l685:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenIsindex()) goto l691;
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 (!yy_HtmlBlockCloseIsindex()) goto l696; goto l693;
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 (!yy_HtmlBlockCloseIsindex()) goto l691; goto l600;
3315
- l691:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenMenu()) goto l697;
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 (!yy_HtmlBlockCloseMenu()) goto l702; goto l699;
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 (!yy_HtmlBlockCloseMenu()) goto l697; goto l600;
3327
- l697:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenNoframes()) goto l703;
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 (!yy_HtmlBlockCloseNoframes()) goto l708; goto l705;
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 (!yy_HtmlBlockCloseNoframes()) goto l703; goto l600;
3339
- l703:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenNoscript()) goto l709;
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 (!yy_HtmlBlockCloseNoscript()) goto l714; goto l711;
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 (!yy_HtmlBlockCloseNoscript()) goto l709; goto l600;
3351
- l709:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenOl()) goto l715;
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 (!yy_HtmlBlockCloseOl()) goto l720; goto l717;
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 (!yy_HtmlBlockCloseOl()) goto l715; goto l600;
3363
- l715:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenP()) goto l721;
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 (!yy_HtmlBlockCloseP()) goto l726; goto l723;
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 (!yy_HtmlBlockCloseP()) goto l721; goto l600;
3375
- l721:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenPre()) goto l727;
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 (!yy_HtmlBlockClosePre()) goto l732; goto l729;
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 (!yy_HtmlBlockClosePre()) goto l727; goto l600;
3387
- l727:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenTable()) goto l733;
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 (!yy_HtmlBlockCloseTable()) goto l738; goto l735;
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 (!yy_HtmlBlockCloseTable()) goto l733; goto l600;
3399
- l733:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenUl()) goto l739;
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 (!yy_HtmlBlockCloseUl()) goto l744; goto l741;
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 (!yy_HtmlBlockCloseUl()) goto l739; goto l600;
3411
- l739:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenDd()) goto l745;
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 (!yy_HtmlBlockCloseDd()) goto l750; goto l747;
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 (!yy_HtmlBlockCloseDd()) goto l745; goto l600;
3423
- l745:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenDt()) goto l751;
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 (!yy_HtmlBlockCloseDt()) goto l756; goto l753;
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 (!yy_HtmlBlockCloseDt()) goto l751; goto l600;
3435
- l751:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenFrameset()) goto l757;
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 (!yy_HtmlBlockCloseFrameset()) goto l762; goto l759;
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 (!yy_HtmlBlockCloseFrameset()) goto l757; goto l600;
3447
- l757:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenLi()) goto l763;
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 (!yy_HtmlBlockCloseLi()) goto l768; goto l765;
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 (!yy_HtmlBlockCloseLi()) goto l763; goto l600;
3459
- l763:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenTbody()) goto l769;
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 (!yy_HtmlBlockCloseTbody()) goto l774; goto l771;
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 (!yy_HtmlBlockCloseTbody()) goto l769; goto l600;
3471
- l769:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenTd()) goto l775;
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 (!yy_HtmlBlockCloseTd()) goto l780; goto l777;
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 (!yy_HtmlBlockCloseTd()) goto l775; goto l600;
3483
- l775:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenTfoot()) goto l781;
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 (!yy_HtmlBlockCloseTfoot()) goto l786; goto l783;
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 (!yy_HtmlBlockCloseTfoot()) goto l781; goto l600;
3495
- l781:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenTh()) goto l787;
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 (!yy_HtmlBlockCloseTh()) goto l792; goto l789;
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 (!yy_HtmlBlockCloseTh()) goto l787; goto l600;
3507
- l787:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenThead()) goto l793;
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 (!yy_HtmlBlockCloseThead()) goto l798; goto l795;
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 (!yy_HtmlBlockCloseThead()) goto l793; goto l600;
3519
- l793:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenTr()) goto l799;
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 (!yy_HtmlBlockCloseTr()) goto l804; goto l801;
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 (!yy_HtmlBlockCloseTr()) goto l799; goto l600;
3531
- l799:; yypos= yypos600; yythunkpos= yythunkpos600; if (!yy_HtmlBlockOpenScript()) goto l599;
3532
- l805:;
3533
- { int yypos806= yypos, yythunkpos806= yythunkpos;
3534
- { int yypos807= yypos, yythunkpos807= yythunkpos; if (!yy_HtmlBlockInTags()) goto l808; goto l807;
3535
- l808:; yypos= yypos807; yythunkpos= yythunkpos807;
3536
- { int yypos809= yypos, yythunkpos809= yythunkpos; if (!yy_HtmlBlockCloseScript()) goto l809; goto l806;
3537
- l809:; yypos= yypos809; yythunkpos= yythunkpos809;
3538
- } if (!yymatchDot()) goto l806;
3539
- }
3540
- l807:; goto l805;
3541
- l806:; yypos= yypos806; yythunkpos= yythunkpos806;
3542
- } if (!yy_HtmlBlockCloseScript()) goto l599;
3543
- }
3544
- l600:;
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
- l599:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l810; if (!yy_Spnl()) goto l810; if (!yymatchChar('/')) goto l810;
3554
- { int yypos811= yypos, yythunkpos811= yythunkpos; if (!yymatchString("script")) goto l812; goto l811;
3555
- l812:; yypos= yypos811; yythunkpos= yythunkpos811; if (!yymatchString("SCRIPT")) goto l810;
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
- l811:; if (!yy_Spnl()) goto l810; if (!yymatchChar('>')) goto l810;
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
- l810:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l813; if (!yy_Spnl()) goto l813;
3567
- { int yypos814= yypos, yythunkpos814= yythunkpos; if (!yymatchString("script")) goto l815; goto l814;
3568
- l815:; yypos= yypos814; yythunkpos= yythunkpos814; if (!yymatchString("SCRIPT")) goto l813;
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
- l814:; if (!yy_Spnl()) goto l813;
3571
- l816:;
3572
- { int yypos817= yypos, yythunkpos817= yythunkpos; if (!yy_HtmlAttribute()) goto l817; goto l816;
3573
- l817:; yypos= yypos817; yythunkpos= yythunkpos817;
3574
- } if (!yymatchChar('>')) goto l813;
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
- l813:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l818; if (!yy_Spnl()) goto l818; if (!yymatchChar('/')) goto l818;
3584
- { int yypos819= yypos, yythunkpos819= yythunkpos; if (!yymatchString("tr")) goto l820; goto l819;
3585
- l820:; yypos= yypos819; yythunkpos= yythunkpos819; if (!yymatchString("TR")) goto l818;
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
- l819:; if (!yy_Spnl()) goto l818; if (!yymatchChar('>')) goto l818;
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
- l818:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l821; if (!yy_Spnl()) goto l821;
3597
- { int yypos822= yypos, yythunkpos822= yythunkpos; if (!yymatchString("tr")) goto l823; goto l822;
3598
- l823:; yypos= yypos822; yythunkpos= yythunkpos822; if (!yymatchString("TR")) goto l821;
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
- l822:; if (!yy_Spnl()) goto l821;
3601
- l824:;
3602
- { int yypos825= yypos, yythunkpos825= yythunkpos; if (!yy_HtmlAttribute()) goto l825; goto l824;
3603
- l825:; yypos= yypos825; yythunkpos= yythunkpos825;
3604
- } if (!yymatchChar('>')) goto l821;
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
- l821:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l826; if (!yy_Spnl()) goto l826; if (!yymatchChar('/')) goto l826;
3614
- { int yypos827= yypos, yythunkpos827= yythunkpos; if (!yymatchString("thead")) goto l828; goto l827;
3615
- l828:; yypos= yypos827; yythunkpos= yythunkpos827; if (!yymatchString("THEAD")) goto l826;
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
- l827:; if (!yy_Spnl()) goto l826; if (!yymatchChar('>')) goto l826;
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
- l826:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l829; if (!yy_Spnl()) goto l829;
3627
- { int yypos830= yypos, yythunkpos830= yythunkpos; if (!yymatchString("thead")) goto l831; goto l830;
3628
- l831:; yypos= yypos830; yythunkpos= yythunkpos830; if (!yymatchString("THEAD")) goto l829;
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
- l830:; if (!yy_Spnl()) goto l829;
3631
- l832:;
3632
- { int yypos833= yypos, yythunkpos833= yythunkpos; if (!yy_HtmlAttribute()) goto l833; goto l832;
3633
- l833:; yypos= yypos833; yythunkpos= yythunkpos833;
3634
- } if (!yymatchChar('>')) goto l829;
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
- l829:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l834; if (!yy_Spnl()) goto l834; if (!yymatchChar('/')) goto l834;
3644
- { int yypos835= yypos, yythunkpos835= yythunkpos; if (!yymatchString("th")) goto l836; goto l835;
3645
- l836:; yypos= yypos835; yythunkpos= yythunkpos835; if (!yymatchString("TH")) goto l834;
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
- l835:; if (!yy_Spnl()) goto l834; if (!yymatchChar('>')) goto l834;
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
- l834:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l837; if (!yy_Spnl()) goto l837;
3657
- { int yypos838= yypos, yythunkpos838= yythunkpos; if (!yymatchString("th")) goto l839; goto l838;
3658
- l839:; yypos= yypos838; yythunkpos= yythunkpos838; if (!yymatchString("TH")) goto l837;
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
- l838:; if (!yy_Spnl()) goto l837;
3661
- l840:;
3662
- { int yypos841= yypos, yythunkpos841= yythunkpos; if (!yy_HtmlAttribute()) goto l841; goto l840;
3663
- l841:; yypos= yypos841; yythunkpos= yythunkpos841;
3664
- } if (!yymatchChar('>')) goto l837;
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
- l837:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l842; if (!yy_Spnl()) goto l842; if (!yymatchChar('/')) goto l842;
3674
- { int yypos843= yypos, yythunkpos843= yythunkpos; if (!yymatchString("tfoot")) goto l844; goto l843;
3675
- l844:; yypos= yypos843; yythunkpos= yythunkpos843; if (!yymatchString("TFOOT")) goto l842;
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
- l843:; if (!yy_Spnl()) goto l842; if (!yymatchChar('>')) goto l842;
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
- l842:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l845; if (!yy_Spnl()) goto l845;
3687
- { int yypos846= yypos, yythunkpos846= yythunkpos; if (!yymatchString("tfoot")) goto l847; goto l846;
3688
- l847:; yypos= yypos846; yythunkpos= yythunkpos846; if (!yymatchString("TFOOT")) goto l845;
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
- l846:; if (!yy_Spnl()) goto l845;
3691
- l848:;
3692
- { int yypos849= yypos, yythunkpos849= yythunkpos; if (!yy_HtmlAttribute()) goto l849; goto l848;
3693
- l849:; yypos= yypos849; yythunkpos= yythunkpos849;
3694
- } if (!yymatchChar('>')) goto l845;
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
- l845:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l850; if (!yy_Spnl()) goto l850; if (!yymatchChar('/')) goto l850;
3704
- { int yypos851= yypos, yythunkpos851= yythunkpos; if (!yymatchString("td")) goto l852; goto l851;
3705
- l852:; yypos= yypos851; yythunkpos= yythunkpos851; if (!yymatchString("TD")) goto l850;
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
- l851:; if (!yy_Spnl()) goto l850; if (!yymatchChar('>')) goto l850;
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
- l850:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l853; if (!yy_Spnl()) goto l853;
3717
- { int yypos854= yypos, yythunkpos854= yythunkpos; if (!yymatchString("td")) goto l855; goto l854;
3718
- l855:; yypos= yypos854; yythunkpos= yythunkpos854; if (!yymatchString("TD")) goto l853;
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
- l854:; if (!yy_Spnl()) goto l853;
3721
- l856:;
3722
- { int yypos857= yypos, yythunkpos857= yythunkpos; if (!yy_HtmlAttribute()) goto l857; goto l856;
3723
- l857:; yypos= yypos857; yythunkpos= yythunkpos857;
3724
- } if (!yymatchChar('>')) goto l853;
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
- l853:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l858; if (!yy_Spnl()) goto l858; if (!yymatchChar('/')) goto l858;
3734
- { int yypos859= yypos, yythunkpos859= yythunkpos; if (!yymatchString("tbody")) goto l860; goto l859;
3735
- l860:; yypos= yypos859; yythunkpos= yythunkpos859; if (!yymatchString("TBODY")) goto l858;
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
- l859:; if (!yy_Spnl()) goto l858; if (!yymatchChar('>')) goto l858;
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
- l858:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l861; if (!yy_Spnl()) goto l861;
3747
- { int yypos862= yypos, yythunkpos862= yythunkpos; if (!yymatchString("tbody")) goto l863; goto l862;
3748
- l863:; yypos= yypos862; yythunkpos= yythunkpos862; if (!yymatchString("TBODY")) goto l861;
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
- l862:; if (!yy_Spnl()) goto l861;
3751
- l864:;
3752
- { int yypos865= yypos, yythunkpos865= yythunkpos; if (!yy_HtmlAttribute()) goto l865; goto l864;
3753
- l865:; yypos= yypos865; yythunkpos= yythunkpos865;
3754
- } if (!yymatchChar('>')) goto l861;
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
- l861:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l866; if (!yy_Spnl()) goto l866; if (!yymatchChar('/')) goto l866;
3764
- { int yypos867= yypos, yythunkpos867= yythunkpos; if (!yymatchString("li")) goto l868; goto l867;
3765
- l868:; yypos= yypos867; yythunkpos= yythunkpos867; if (!yymatchString("LI")) goto l866;
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
- l867:; if (!yy_Spnl()) goto l866; if (!yymatchChar('>')) goto l866;
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
- l866:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l869; if (!yy_Spnl()) goto l869;
3777
- { int yypos870= yypos, yythunkpos870= yythunkpos; if (!yymatchString("li")) goto l871; goto l870;
3778
- l871:; yypos= yypos870; yythunkpos= yythunkpos870; if (!yymatchString("LI")) goto l869;
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
- l870:; if (!yy_Spnl()) goto l869;
3781
- l872:;
3782
- { int yypos873= yypos, yythunkpos873= yythunkpos; if (!yy_HtmlAttribute()) goto l873; goto l872;
3783
- l873:; yypos= yypos873; yythunkpos= yythunkpos873;
3784
- } if (!yymatchChar('>')) goto l869;
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
- l869:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l874; if (!yy_Spnl()) goto l874; if (!yymatchChar('/')) goto l874;
3794
- { int yypos875= yypos, yythunkpos875= yythunkpos; if (!yymatchString("frameset")) goto l876; goto l875;
3795
- l876:; yypos= yypos875; yythunkpos= yythunkpos875; if (!yymatchString("FRAMESET")) goto l874;
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
- l875:; if (!yy_Spnl()) goto l874; if (!yymatchChar('>')) goto l874;
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
- l874:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l877; if (!yy_Spnl()) goto l877;
3807
- { int yypos878= yypos, yythunkpos878= yythunkpos; if (!yymatchString("frameset")) goto l879; goto l878;
3808
- l879:; yypos= yypos878; yythunkpos= yythunkpos878; if (!yymatchString("FRAMESET")) goto l877;
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
- l878:; if (!yy_Spnl()) goto l877;
3811
- l880:;
3812
- { int yypos881= yypos, yythunkpos881= yythunkpos; if (!yy_HtmlAttribute()) goto l881; goto l880;
3813
- l881:; yypos= yypos881; yythunkpos= yythunkpos881;
3814
- } if (!yymatchChar('>')) goto l877;
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
- l877:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l882; if (!yy_Spnl()) goto l882; if (!yymatchChar('/')) goto l882;
3824
- { int yypos883= yypos, yythunkpos883= yythunkpos; if (!yymatchString("dt")) goto l884; goto l883;
3825
- l884:; yypos= yypos883; yythunkpos= yythunkpos883; if (!yymatchString("DT")) goto l882;
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
- l883:; if (!yy_Spnl()) goto l882; if (!yymatchChar('>')) goto l882;
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
- l882:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l885; if (!yy_Spnl()) goto l885;
3837
- { int yypos886= yypos, yythunkpos886= yythunkpos; if (!yymatchString("dt")) goto l887; goto l886;
3838
- l887:; yypos= yypos886; yythunkpos= yythunkpos886; if (!yymatchString("DT")) goto l885;
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
- l886:; if (!yy_Spnl()) goto l885;
3841
- l888:;
3842
- { int yypos889= yypos, yythunkpos889= yythunkpos; if (!yy_HtmlAttribute()) goto l889; goto l888;
3843
- l889:; yypos= yypos889; yythunkpos= yythunkpos889;
3844
- } if (!yymatchChar('>')) goto l885;
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
- l885:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l890; if (!yy_Spnl()) goto l890; if (!yymatchChar('/')) goto l890;
3854
- { int yypos891= yypos, yythunkpos891= yythunkpos; if (!yymatchString("dd")) goto l892; goto l891;
3855
- l892:; yypos= yypos891; yythunkpos= yythunkpos891; if (!yymatchString("DD")) goto l890;
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
- l891:; if (!yy_Spnl()) goto l890; if (!yymatchChar('>')) goto l890;
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
- l890:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l893; if (!yy_Spnl()) goto l893;
3867
- { int yypos894= yypos, yythunkpos894= yythunkpos; if (!yymatchString("dd")) goto l895; goto l894;
3868
- l895:; yypos= yypos894; yythunkpos= yythunkpos894; if (!yymatchString("DD")) goto l893;
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
- l894:; if (!yy_Spnl()) goto l893;
3871
- l896:;
3872
- { int yypos897= yypos, yythunkpos897= yythunkpos; if (!yy_HtmlAttribute()) goto l897; goto l896;
3873
- l897:; yypos= yypos897; yythunkpos= yythunkpos897;
3874
- } if (!yymatchChar('>')) goto l893;
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
- l893:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l898; if (!yy_Spnl()) goto l898; if (!yymatchChar('/')) goto l898;
3884
- { int yypos899= yypos, yythunkpos899= yythunkpos; if (!yymatchString("ul")) goto l900; goto l899;
3885
- l900:; yypos= yypos899; yythunkpos= yythunkpos899; if (!yymatchString("UL")) goto l898;
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
- l899:; if (!yy_Spnl()) goto l898; if (!yymatchChar('>')) goto l898;
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
- l898:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l901; if (!yy_Spnl()) goto l901;
3897
- { int yypos902= yypos, yythunkpos902= yythunkpos; if (!yymatchString("ul")) goto l903; goto l902;
3898
- l903:; yypos= yypos902; yythunkpos= yythunkpos902; if (!yymatchString("UL")) goto l901;
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
- l902:; if (!yy_Spnl()) goto l901;
3901
- l904:;
3902
- { int yypos905= yypos, yythunkpos905= yythunkpos; if (!yy_HtmlAttribute()) goto l905; goto l904;
3903
- l905:; yypos= yypos905; yythunkpos= yythunkpos905;
3904
- } if (!yymatchChar('>')) goto l901;
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
- l901:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l906; if (!yy_Spnl()) goto l906; if (!yymatchChar('/')) goto l906;
3914
- { int yypos907= yypos, yythunkpos907= yythunkpos; if (!yymatchString("table")) goto l908; goto l907;
3915
- l908:; yypos= yypos907; yythunkpos= yythunkpos907; if (!yymatchString("TABLE")) goto l906;
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
- l907:; if (!yy_Spnl()) goto l906; if (!yymatchChar('>')) goto l906;
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
- l906:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l909; if (!yy_Spnl()) goto l909;
3927
- { int yypos910= yypos, yythunkpos910= yythunkpos; if (!yymatchString("table")) goto l911; goto l910;
3928
- l911:; yypos= yypos910; yythunkpos= yythunkpos910; if (!yymatchString("TABLE")) goto l909;
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
- l910:; if (!yy_Spnl()) goto l909;
3931
- l912:;
3932
- { int yypos913= yypos, yythunkpos913= yythunkpos; if (!yy_HtmlAttribute()) goto l913; goto l912;
3933
- l913:; yypos= yypos913; yythunkpos= yythunkpos913;
3934
- } if (!yymatchChar('>')) goto l909;
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
- l909:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l914; if (!yy_Spnl()) goto l914; if (!yymatchChar('/')) goto l914;
3944
- { int yypos915= yypos, yythunkpos915= yythunkpos; if (!yymatchString("pre")) goto l916; goto l915;
3945
- l916:; yypos= yypos915; yythunkpos= yythunkpos915; if (!yymatchString("PRE")) goto l914;
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
- l915:; if (!yy_Spnl()) goto l914; if (!yymatchChar('>')) goto l914;
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
- l914:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l917; if (!yy_Spnl()) goto l917;
3957
- { int yypos918= yypos, yythunkpos918= yythunkpos; if (!yymatchString("pre")) goto l919; goto l918;
3958
- l919:; yypos= yypos918; yythunkpos= yythunkpos918; if (!yymatchString("PRE")) goto l917;
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
- l918:; if (!yy_Spnl()) goto l917;
3961
- l920:;
3962
- { int yypos921= yypos, yythunkpos921= yythunkpos; if (!yy_HtmlAttribute()) goto l921; goto l920;
3963
- l921:; yypos= yypos921; yythunkpos= yythunkpos921;
3964
- } if (!yymatchChar('>')) goto l917;
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
- l917:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l922; if (!yy_Spnl()) goto l922; if (!yymatchChar('/')) goto l922;
3974
- { int yypos923= yypos, yythunkpos923= yythunkpos; if (!yymatchChar('p')) goto l924; goto l923;
3975
- l924:; yypos= yypos923; yythunkpos= yythunkpos923; if (!yymatchChar('P')) goto l922;
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
- l923:; if (!yy_Spnl()) goto l922; if (!yymatchChar('>')) goto l922;
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
- l922:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l925; if (!yy_Spnl()) goto l925;
3987
- { int yypos926= yypos, yythunkpos926= yythunkpos; if (!yymatchChar('p')) goto l927; goto l926;
3988
- l927:; yypos= yypos926; yythunkpos= yythunkpos926; if (!yymatchChar('P')) goto l925;
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
- l926:; if (!yy_Spnl()) goto l925;
3991
- l928:;
3992
- { int yypos929= yypos, yythunkpos929= yythunkpos; if (!yy_HtmlAttribute()) goto l929; goto l928;
3993
- l929:; yypos= yypos929; yythunkpos= yythunkpos929;
3994
- } if (!yymatchChar('>')) goto l925;
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
- l925:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l930; if (!yy_Spnl()) goto l930; if (!yymatchChar('/')) goto l930;
4004
- { int yypos931= yypos, yythunkpos931= yythunkpos; if (!yymatchString("ol")) goto l932; goto l931;
4005
- l932:; yypos= yypos931; yythunkpos= yythunkpos931; if (!yymatchString("OL")) goto l930;
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
- l931:; if (!yy_Spnl()) goto l930; if (!yymatchChar('>')) goto l930;
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
- l930:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l933; if (!yy_Spnl()) goto l933;
4017
- { int yypos934= yypos, yythunkpos934= yythunkpos; if (!yymatchString("ol")) goto l935; goto l934;
4018
- l935:; yypos= yypos934; yythunkpos= yythunkpos934; if (!yymatchString("OL")) goto l933;
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
- l934:; if (!yy_Spnl()) goto l933;
4021
- l936:;
4022
- { int yypos937= yypos, yythunkpos937= yythunkpos; if (!yy_HtmlAttribute()) goto l937; goto l936;
4023
- l937:; yypos= yypos937; yythunkpos= yythunkpos937;
4024
- } if (!yymatchChar('>')) goto l933;
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
- l933:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l938; if (!yy_Spnl()) goto l938; if (!yymatchChar('/')) goto l938;
4034
- { int yypos939= yypos, yythunkpos939= yythunkpos; if (!yymatchString("noscript")) goto l940; goto l939;
4035
- l940:; yypos= yypos939; yythunkpos= yythunkpos939; if (!yymatchString("NOSCRIPT")) goto l938;
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
- l939:; if (!yy_Spnl()) goto l938; if (!yymatchChar('>')) goto l938;
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
- l938:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l941; if (!yy_Spnl()) goto l941;
4047
- { int yypos942= yypos, yythunkpos942= yythunkpos; if (!yymatchString("noscript")) goto l943; goto l942;
4048
- l943:; yypos= yypos942; yythunkpos= yythunkpos942; if (!yymatchString("NOSCRIPT")) goto l941;
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
- l942:; if (!yy_Spnl()) goto l941;
4051
- l944:;
4052
- { int yypos945= yypos, yythunkpos945= yythunkpos; if (!yy_HtmlAttribute()) goto l945; goto l944;
4053
- l945:; yypos= yypos945; yythunkpos= yythunkpos945;
4054
- } if (!yymatchChar('>')) goto l941;
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
- l941:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l946; if (!yy_Spnl()) goto l946; if (!yymatchChar('/')) goto l946;
4064
- { int yypos947= yypos, yythunkpos947= yythunkpos; if (!yymatchString("noframes")) goto l948; goto l947;
4065
- l948:; yypos= yypos947; yythunkpos= yythunkpos947; if (!yymatchString("NOFRAMES")) goto l946;
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
- l947:; if (!yy_Spnl()) goto l946; if (!yymatchChar('>')) goto l946;
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
- l946:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l949; if (!yy_Spnl()) goto l949;
4077
- { int yypos950= yypos, yythunkpos950= yythunkpos; if (!yymatchString("noframes")) goto l951; goto l950;
4078
- l951:; yypos= yypos950; yythunkpos= yythunkpos950; if (!yymatchString("NOFRAMES")) goto l949;
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
- l950:; if (!yy_Spnl()) goto l949;
4081
- l952:;
4082
- { int yypos953= yypos, yythunkpos953= yythunkpos; if (!yy_HtmlAttribute()) goto l953; goto l952;
4083
- l953:; yypos= yypos953; yythunkpos= yythunkpos953;
4084
- } if (!yymatchChar('>')) goto l949;
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
- l949:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l954; if (!yy_Spnl()) goto l954; if (!yymatchChar('/')) goto l954;
4094
- { int yypos955= yypos, yythunkpos955= yythunkpos; if (!yymatchString("menu")) goto l956; goto l955;
4095
- l956:; yypos= yypos955; yythunkpos= yythunkpos955; if (!yymatchString("MENU")) goto l954;
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
- l955:; if (!yy_Spnl()) goto l954; if (!yymatchChar('>')) goto l954;
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
- l954:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l957; if (!yy_Spnl()) goto l957;
4107
- { int yypos958= yypos, yythunkpos958= yythunkpos; if (!yymatchString("menu")) goto l959; goto l958;
4108
- l959:; yypos= yypos958; yythunkpos= yythunkpos958; if (!yymatchString("MENU")) goto l957;
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
- l958:; if (!yy_Spnl()) goto l957;
4111
- l960:;
4112
- { int yypos961= yypos, yythunkpos961= yythunkpos; if (!yy_HtmlAttribute()) goto l961; goto l960;
4113
- l961:; yypos= yypos961; yythunkpos= yythunkpos961;
4114
- } if (!yymatchChar('>')) goto l957;
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
- l957:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l962; if (!yy_Spnl()) goto l962; if (!yymatchChar('/')) goto l962;
4124
- { int yypos963= yypos, yythunkpos963= yythunkpos; if (!yymatchString("isindex")) goto l964; goto l963;
4125
- l964:; yypos= yypos963; yythunkpos= yythunkpos963; if (!yymatchString("ISINDEX")) goto l962;
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
- l963:; if (!yy_Spnl()) goto l962; if (!yymatchChar('>')) goto l962;
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
- l962:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l965; if (!yy_Spnl()) goto l965;
4137
- { int yypos966= yypos, yythunkpos966= yythunkpos; if (!yymatchString("isindex")) goto l967; goto l966;
4138
- l967:; yypos= yypos966; yythunkpos= yythunkpos966; if (!yymatchString("ISINDEX")) goto l965;
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
- l966:; if (!yy_Spnl()) goto l965;
4141
- l968:;
4142
- { int yypos969= yypos, yythunkpos969= yythunkpos; if (!yy_HtmlAttribute()) goto l969; goto l968;
4143
- l969:; yypos= yypos969; yythunkpos= yythunkpos969;
4144
- } if (!yymatchChar('>')) goto l965;
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
- l965:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l970; if (!yy_Spnl()) goto l970; if (!yymatchChar('/')) goto l970;
4154
- { int yypos971= yypos, yythunkpos971= yythunkpos; if (!yymatchString("hr")) goto l972; goto l971;
4155
- l972:; yypos= yypos971; yythunkpos= yythunkpos971; if (!yymatchString("HR")) goto l970;
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
- l971:; if (!yy_Spnl()) goto l970; if (!yymatchChar('>')) goto l970;
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
- l970:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l973; if (!yy_Spnl()) goto l973;
4167
- { int yypos974= yypos, yythunkpos974= yythunkpos; if (!yymatchString("hr")) goto l975; goto l974;
4168
- l975:; yypos= yypos974; yythunkpos= yythunkpos974; if (!yymatchString("HR")) goto l973;
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
- l974:; if (!yy_Spnl()) goto l973;
4171
- l976:;
4172
- { int yypos977= yypos, yythunkpos977= yythunkpos; if (!yy_HtmlAttribute()) goto l977; goto l976;
4173
- l977:; yypos= yypos977; yythunkpos= yythunkpos977;
4174
- } if (!yymatchChar('>')) goto l973;
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
- l973:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l978; if (!yy_Spnl()) goto l978; if (!yymatchChar('/')) goto l978;
4184
- { int yypos979= yypos, yythunkpos979= yythunkpos; if (!yymatchString("h6")) goto l980; goto l979;
4185
- l980:; yypos= yypos979; yythunkpos= yythunkpos979; if (!yymatchString("H6")) goto l978;
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
- l979:; if (!yy_Spnl()) goto l978; if (!yymatchChar('>')) goto l978;
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
- l978:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l981; if (!yy_Spnl()) goto l981;
4197
- { int yypos982= yypos, yythunkpos982= yythunkpos; if (!yymatchString("h6")) goto l983; goto l982;
4198
- l983:; yypos= yypos982; yythunkpos= yythunkpos982; if (!yymatchString("H6")) goto l981;
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
- l982:; if (!yy_Spnl()) goto l981;
4201
- l984:;
4202
- { int yypos985= yypos, yythunkpos985= yythunkpos; if (!yy_HtmlAttribute()) goto l985; goto l984;
4203
- l985:; yypos= yypos985; yythunkpos= yythunkpos985;
4204
- } if (!yymatchChar('>')) goto l981;
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
- l981:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l986; if (!yy_Spnl()) goto l986; if (!yymatchChar('/')) goto l986;
4214
- { int yypos987= yypos, yythunkpos987= yythunkpos; if (!yymatchString("h5")) goto l988; goto l987;
4215
- l988:; yypos= yypos987; yythunkpos= yythunkpos987; if (!yymatchString("H5")) goto l986;
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
- l987:; if (!yy_Spnl()) goto l986; if (!yymatchChar('>')) goto l986;
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
- l986:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l989; if (!yy_Spnl()) goto l989;
4227
- { int yypos990= yypos, yythunkpos990= yythunkpos; if (!yymatchString("h5")) goto l991; goto l990;
4228
- l991:; yypos= yypos990; yythunkpos= yythunkpos990; if (!yymatchString("H5")) goto l989;
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
- l990:; if (!yy_Spnl()) goto l989;
4231
- l992:;
4232
- { int yypos993= yypos, yythunkpos993= yythunkpos; if (!yy_HtmlAttribute()) goto l993; goto l992;
4233
- l993:; yypos= yypos993; yythunkpos= yythunkpos993;
4234
- } if (!yymatchChar('>')) goto l989;
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
- l989:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l994; if (!yy_Spnl()) goto l994; if (!yymatchChar('/')) goto l994;
4244
- { int yypos995= yypos, yythunkpos995= yythunkpos; if (!yymatchString("h4")) goto l996; goto l995;
4245
- l996:; yypos= yypos995; yythunkpos= yythunkpos995; if (!yymatchString("H4")) goto l994;
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
- l995:; if (!yy_Spnl()) goto l994; if (!yymatchChar('>')) goto l994;
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
- l994:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l997; if (!yy_Spnl()) goto l997;
4257
- { int yypos998= yypos, yythunkpos998= yythunkpos; if (!yymatchString("h4")) goto l999; goto l998;
4258
- l999:; yypos= yypos998; yythunkpos= yythunkpos998; if (!yymatchString("H4")) goto l997;
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
- l998:; if (!yy_Spnl()) goto l997;
4261
- l1000:;
4262
- { int yypos1001= yypos, yythunkpos1001= yythunkpos; if (!yy_HtmlAttribute()) goto l1001; goto l1000;
4263
- l1001:; yypos= yypos1001; yythunkpos= yythunkpos1001;
4264
- } if (!yymatchChar('>')) goto l997;
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
- l997:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1002; if (!yy_Spnl()) goto l1002; if (!yymatchChar('/')) goto l1002;
4274
- { int yypos1003= yypos, yythunkpos1003= yythunkpos; if (!yymatchString("h3")) goto l1004; goto l1003;
4275
- l1004:; yypos= yypos1003; yythunkpos= yythunkpos1003; if (!yymatchString("H3")) goto l1002;
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
- l1003:; if (!yy_Spnl()) goto l1002; if (!yymatchChar('>')) goto l1002;
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
- l1002:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1005; if (!yy_Spnl()) goto l1005;
4287
- { int yypos1006= yypos, yythunkpos1006= yythunkpos; if (!yymatchString("h3")) goto l1007; goto l1006;
4288
- l1007:; yypos= yypos1006; yythunkpos= yythunkpos1006; if (!yymatchString("H3")) goto l1005;
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
- l1006:; if (!yy_Spnl()) goto l1005;
4291
- l1008:;
4292
- { int yypos1009= yypos, yythunkpos1009= yythunkpos; if (!yy_HtmlAttribute()) goto l1009; goto l1008;
4293
- l1009:; yypos= yypos1009; yythunkpos= yythunkpos1009;
4294
- } if (!yymatchChar('>')) goto l1005;
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
- l1005:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1010; if (!yy_Spnl()) goto l1010; if (!yymatchChar('/')) goto l1010;
4304
- { int yypos1011= yypos, yythunkpos1011= yythunkpos; if (!yymatchString("h2")) goto l1012; goto l1011;
4305
- l1012:; yypos= yypos1011; yythunkpos= yythunkpos1011; if (!yymatchString("H2")) goto l1010;
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
- l1011:; if (!yy_Spnl()) goto l1010; if (!yymatchChar('>')) goto l1010;
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
- l1010:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1013; if (!yy_Spnl()) goto l1013;
4317
- { int yypos1014= yypos, yythunkpos1014= yythunkpos; if (!yymatchString("h2")) goto l1015; goto l1014;
4318
- l1015:; yypos= yypos1014; yythunkpos= yythunkpos1014; if (!yymatchString("H2")) goto l1013;
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
- l1014:; if (!yy_Spnl()) goto l1013;
4321
- l1016:;
4322
- { int yypos1017= yypos, yythunkpos1017= yythunkpos; if (!yy_HtmlAttribute()) goto l1017; goto l1016;
4323
- l1017:; yypos= yypos1017; yythunkpos= yythunkpos1017;
4324
- } if (!yymatchChar('>')) goto l1013;
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
- l1013:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1018; if (!yy_Spnl()) goto l1018; if (!yymatchChar('/')) goto l1018;
4334
- { int yypos1019= yypos, yythunkpos1019= yythunkpos; if (!yymatchString("h1")) goto l1020; goto l1019;
4335
- l1020:; yypos= yypos1019; yythunkpos= yythunkpos1019; if (!yymatchString("H1")) goto l1018;
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
- l1019:; if (!yy_Spnl()) goto l1018; if (!yymatchChar('>')) goto l1018;
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
- l1018:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1021; if (!yy_Spnl()) goto l1021;
4347
- { int yypos1022= yypos, yythunkpos1022= yythunkpos; if (!yymatchString("h1")) goto l1023; goto l1022;
4348
- l1023:; yypos= yypos1022; yythunkpos= yythunkpos1022; if (!yymatchString("H1")) goto l1021;
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
- l1022:; if (!yy_Spnl()) goto l1021;
4351
- l1024:;
4352
- { int yypos1025= yypos, yythunkpos1025= yythunkpos; if (!yy_HtmlAttribute()) goto l1025; goto l1024;
4353
- l1025:; yypos= yypos1025; yythunkpos= yythunkpos1025;
4354
- } if (!yymatchChar('>')) goto l1021;
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
- l1021:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1026; if (!yy_Spnl()) goto l1026; if (!yymatchChar('/')) goto l1026;
4364
- { int yypos1027= yypos, yythunkpos1027= yythunkpos; if (!yymatchString("form")) goto l1028; goto l1027;
4365
- l1028:; yypos= yypos1027; yythunkpos= yythunkpos1027; if (!yymatchString("FORM")) goto l1026;
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
- l1027:; if (!yy_Spnl()) goto l1026; if (!yymatchChar('>')) goto l1026;
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
- l1026:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1029; if (!yy_Spnl()) goto l1029;
4377
- { int yypos1030= yypos, yythunkpos1030= yythunkpos; if (!yymatchString("form")) goto l1031; goto l1030;
4378
- l1031:; yypos= yypos1030; yythunkpos= yythunkpos1030; if (!yymatchString("FORM")) goto l1029;
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
- l1030:; if (!yy_Spnl()) goto l1029;
4381
- l1032:;
4382
- { int yypos1033= yypos, yythunkpos1033= yythunkpos; if (!yy_HtmlAttribute()) goto l1033; goto l1032;
4383
- l1033:; yypos= yypos1033; yythunkpos= yythunkpos1033;
4384
- } if (!yymatchChar('>')) goto l1029;
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
- l1029:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1034; if (!yy_Spnl()) goto l1034; if (!yymatchChar('/')) goto l1034;
4394
- { int yypos1035= yypos, yythunkpos1035= yythunkpos; if (!yymatchString("fieldset")) goto l1036; goto l1035;
4395
- l1036:; yypos= yypos1035; yythunkpos= yythunkpos1035; if (!yymatchString("FIELDSET")) goto l1034;
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
- l1035:; if (!yy_Spnl()) goto l1034; if (!yymatchChar('>')) goto l1034;
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
- l1034:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1037; if (!yy_Spnl()) goto l1037;
4407
- { int yypos1038= yypos, yythunkpos1038= yythunkpos; if (!yymatchString("fieldset")) goto l1039; goto l1038;
4408
- l1039:; yypos= yypos1038; yythunkpos= yythunkpos1038; if (!yymatchString("FIELDSET")) goto l1037;
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
- l1038:; if (!yy_Spnl()) goto l1037;
4411
- l1040:;
4412
- { int yypos1041= yypos, yythunkpos1041= yythunkpos; if (!yy_HtmlAttribute()) goto l1041; goto l1040;
4413
- l1041:; yypos= yypos1041; yythunkpos= yythunkpos1041;
4414
- } if (!yymatchChar('>')) goto l1037;
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
- l1037:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1042; if (!yy_Spnl()) goto l1042; if (!yymatchChar('/')) goto l1042;
4424
- { int yypos1043= yypos, yythunkpos1043= yythunkpos; if (!yymatchString("dl")) goto l1044; goto l1043;
4425
- l1044:; yypos= yypos1043; yythunkpos= yythunkpos1043; if (!yymatchString("DL")) goto l1042;
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
- l1043:; if (!yy_Spnl()) goto l1042; if (!yymatchChar('>')) goto l1042;
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
- l1042:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1045; if (!yy_Spnl()) goto l1045;
4437
- { int yypos1046= yypos, yythunkpos1046= yythunkpos; if (!yymatchString("dl")) goto l1047; goto l1046;
4438
- l1047:; yypos= yypos1046; yythunkpos= yythunkpos1046; if (!yymatchString("DL")) goto l1045;
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
- l1046:; if (!yy_Spnl()) goto l1045;
4441
- l1048:;
4442
- { int yypos1049= yypos, yythunkpos1049= yythunkpos; if (!yy_HtmlAttribute()) goto l1049; goto l1048;
4443
- l1049:; yypos= yypos1049; yythunkpos= yythunkpos1049;
4444
- } if (!yymatchChar('>')) goto l1045;
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
- l1045:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1050; if (!yy_Spnl()) goto l1050; if (!yymatchChar('/')) goto l1050;
4454
- { int yypos1051= yypos, yythunkpos1051= yythunkpos; if (!yymatchString("div")) goto l1052; goto l1051;
4455
- l1052:; yypos= yypos1051; yythunkpos= yythunkpos1051; if (!yymatchString("DIV")) goto l1050;
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
- l1051:; if (!yy_Spnl()) goto l1050; if (!yymatchChar('>')) goto l1050;
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
- l1050:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1053; if (!yy_Spnl()) goto l1053;
4467
- { int yypos1054= yypos, yythunkpos1054= yythunkpos; if (!yymatchString("div")) goto l1055; goto l1054;
4468
- l1055:; yypos= yypos1054; yythunkpos= yythunkpos1054; if (!yymatchString("DIV")) goto l1053;
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
- l1054:; if (!yy_Spnl()) goto l1053;
4471
- l1056:;
4472
- { int yypos1057= yypos, yythunkpos1057= yythunkpos; if (!yy_HtmlAttribute()) goto l1057; goto l1056;
4473
- l1057:; yypos= yypos1057; yythunkpos= yythunkpos1057;
4474
- } if (!yymatchChar('>')) goto l1053;
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
- l1053:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1058; if (!yy_Spnl()) goto l1058; if (!yymatchChar('/')) goto l1058;
4484
- { int yypos1059= yypos, yythunkpos1059= yythunkpos; if (!yymatchString("dir")) goto l1060; goto l1059;
4485
- l1060:; yypos= yypos1059; yythunkpos= yythunkpos1059; if (!yymatchString("DIR")) goto l1058;
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
- l1059:; if (!yy_Spnl()) goto l1058; if (!yymatchChar('>')) goto l1058;
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
- l1058:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1061; if (!yy_Spnl()) goto l1061;
4497
- { int yypos1062= yypos, yythunkpos1062= yythunkpos; if (!yymatchString("dir")) goto l1063; goto l1062;
4498
- l1063:; yypos= yypos1062; yythunkpos= yythunkpos1062; if (!yymatchString("DIR")) goto l1061;
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
- l1062:; if (!yy_Spnl()) goto l1061;
4501
- l1064:;
4502
- { int yypos1065= yypos, yythunkpos1065= yythunkpos; if (!yy_HtmlAttribute()) goto l1065; goto l1064;
4503
- l1065:; yypos= yypos1065; yythunkpos= yythunkpos1065;
4504
- } if (!yymatchChar('>')) goto l1061;
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
- l1061:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1066; if (!yy_Spnl()) goto l1066; if (!yymatchChar('/')) goto l1066;
4514
- { int yypos1067= yypos, yythunkpos1067= yythunkpos; if (!yymatchString("center")) goto l1068; goto l1067;
4515
- l1068:; yypos= yypos1067; yythunkpos= yythunkpos1067; if (!yymatchString("CENTER")) goto l1066;
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
- l1067:; if (!yy_Spnl()) goto l1066; if (!yymatchChar('>')) goto l1066;
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
- l1066:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1069; if (!yy_Spnl()) goto l1069;
4527
- { int yypos1070= yypos, yythunkpos1070= yythunkpos; if (!yymatchString("center")) goto l1071; goto l1070;
4528
- l1071:; yypos= yypos1070; yythunkpos= yythunkpos1070; if (!yymatchString("CENTER")) goto l1069;
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
- l1070:; if (!yy_Spnl()) goto l1069;
4531
- l1072:;
4532
- { int yypos1073= yypos, yythunkpos1073= yythunkpos; if (!yy_HtmlAttribute()) goto l1073; goto l1072;
4533
- l1073:; yypos= yypos1073; yythunkpos= yythunkpos1073;
4534
- } if (!yymatchChar('>')) goto l1069;
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
- l1069:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1074; if (!yy_Spnl()) goto l1074; if (!yymatchChar('/')) goto l1074;
4544
- { int yypos1075= yypos, yythunkpos1075= yythunkpos; if (!yymatchString("blockquote")) goto l1076; goto l1075;
4545
- l1076:; yypos= yypos1075; yythunkpos= yythunkpos1075; if (!yymatchString("BLOCKQUOTE")) goto l1074;
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
- l1075:; if (!yy_Spnl()) goto l1074; if (!yymatchChar('>')) goto l1074;
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
- l1074:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1077; if (!yy_Spnl()) goto l1077;
4557
- { int yypos1078= yypos, yythunkpos1078= yythunkpos; if (!yymatchString("blockquote")) goto l1079; goto l1078;
4558
- l1079:; yypos= yypos1078; yythunkpos= yythunkpos1078; if (!yymatchString("BLOCKQUOTE")) goto l1077;
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
- l1078:; if (!yy_Spnl()) goto l1077;
4561
- l1080:;
4562
- { int yypos1081= yypos, yythunkpos1081= yythunkpos; if (!yy_HtmlAttribute()) goto l1081; goto l1080;
4563
- l1081:; yypos= yypos1081; yythunkpos= yythunkpos1081;
4564
- } if (!yymatchChar('>')) goto l1077;
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
- l1077:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1082; if (!yy_Spnl()) goto l1082; if (!yymatchChar('/')) goto l1082;
4574
- { int yypos1083= yypos, yythunkpos1083= yythunkpos; if (!yymatchString("address")) goto l1084; goto l1083;
4575
- l1084:; yypos= yypos1083; yythunkpos= yythunkpos1083; if (!yymatchString("ADDRESS")) goto l1082;
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
- l1083:; if (!yy_Spnl()) goto l1082; if (!yymatchChar('>')) goto l1082;
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
- l1082:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1088= yypos, yythunkpos1088= yythunkpos; if (!yy_Alphanumeric()) goto l1089; goto l1088;
4588
- l1089:; yypos= yypos1088; yythunkpos= yythunkpos1088; if (!yymatchChar('-')) goto l1085;
4589
- }
4590
- l1088:;
4591
- l1086:;
4592
- { int yypos1087= yypos, yythunkpos1087= yythunkpos;
4593
- { int yypos1090= yypos, yythunkpos1090= yythunkpos; if (!yy_Alphanumeric()) goto l1091; goto l1090;
4594
- l1091:; yypos= yypos1090; yythunkpos= yythunkpos1090; if (!yymatchChar('-')) goto l1087;
4595
- }
4596
- l1090:; goto l1086;
4597
- l1087:; yypos= yypos1087; yythunkpos= yythunkpos1087;
4598
- } if (!yy_Spnl()) goto l1085;
4599
- { int yypos1092= yypos, yythunkpos1092= yythunkpos; if (!yymatchChar('=')) goto l1092; if (!yy_Spnl()) goto l1092;
4600
- { int yypos1094= yypos, yythunkpos1094= yythunkpos; if (!yy_Quoted()) goto l1095; goto l1094;
4601
- l1095:; yypos= yypos1094; yythunkpos= yythunkpos1094; if (!yy_Nonspacechar()) goto l1092;
4602
- l1096:;
4603
- { int yypos1097= yypos, yythunkpos1097= yythunkpos; if (!yy_Nonspacechar()) goto l1097; goto l1096;
4604
- l1097:; yypos= yypos1097; yythunkpos= yythunkpos1097;
4605
- }
4606
- }
4607
- l1094:; goto l1093;
4608
- l1092:; yypos= yypos1092; yythunkpos= yythunkpos1092;
4609
- }
4610
- l1093:; if (!yy_Spnl()) goto l1085;
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
- l1085:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1098;
4620
- { int yypos1099= yypos, yythunkpos1099= yythunkpos; if (!yy_Newline()) goto l1099; if (!yy_Sp()) goto l1099; goto l1100;
4621
- l1099:; yypos= yypos1099; yythunkpos= yythunkpos1099;
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
- l1100:;
4696
+ l1112:;
4624
4697
  yyprintf((stderr, " ok %s @ %s\n", "Spnl", yybuf+yypos));
4625
4698
  return 1;
4626
- l1098:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1101; if (!yy_Spnl()) goto l1101;
4633
- { int yypos1102= yypos, yythunkpos1102= yythunkpos; if (!yymatchString("address")) goto l1103; goto l1102;
4634
- l1103:; yypos= yypos1102; yythunkpos= yythunkpos1102; if (!yymatchString("ADDRESS")) goto l1101;
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
- l1102:; if (!yy_Spnl()) goto l1101;
4637
- l1104:;
4638
- { int yypos1105= yypos, yythunkpos1105= yythunkpos; if (!yy_HtmlAttribute()) goto l1105; goto l1104;
4639
- l1105:; yypos= yypos1105; yythunkpos= yythunkpos1105;
4640
- } if (!yymatchChar('>')) goto l1101;
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
- l1101:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1107= yypos, yythunkpos1107= yythunkpos; if (!yy_Indent()) goto l1107; goto l1108;
4651
- l1107:; yypos= yypos1107; yythunkpos= yythunkpos1107;
4723
+ { int yypos1119= yypos, yythunkpos1119= yythunkpos; if (!yy_Indent()) goto l1119; goto l1120;
4724
+ l1119:; yypos= yypos1119; yythunkpos= yythunkpos1119;
4652
4725
  }
4653
- l1108:; if (!yy_Line()) goto l1106;
4726
+ l1120:; if (!yy_Line()) goto l1118;
4654
4727
  yyprintf((stderr, " ok %s @ %s\n", "OptionallyIndentedLine", yybuf+yypos));
4655
4728
  return 1;
4656
- l1106:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1110= yypos, yythunkpos1110= yythunkpos; if (!yy_HorizontalRule()) goto l1110; goto l1109;
4664
- l1110:; yypos= yypos1110; yythunkpos= yythunkpos1110;
4736
+ { int yypos1122= yypos, yythunkpos1122= yythunkpos; if (!yy_HorizontalRule()) goto l1122; goto l1121;
4737
+ l1122:; yypos= yypos1122; yythunkpos= yythunkpos1122;
4665
4738
  }
4666
- { int yypos1111= yypos, yythunkpos1111= yythunkpos; if (!yy_Enumerator()) goto l1109; yypos= yypos1111; yythunkpos= yythunkpos1111;
4667
- } if (!yy_ListItem()) goto l1109;
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
- l1109:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1112; yyDo(yySet, -2, 0); if (!yy_OrderedListItem()) goto l1112; yyDo(yySet, -1, 0);
4677
- l1115:;
4678
- { int yypos1116= yypos, yythunkpos1116= yythunkpos; if (!yy_BlankLine()) goto l1116; goto l1115;
4679
- l1116:; yypos= yypos1116; yythunkpos= yythunkpos1116;
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
- l1113:;
4682
- { int yypos1114= yypos, yythunkpos1114= yythunkpos; if (!yy_OrderedListItem()) goto l1114; yyDo(yySet, -1, 0);
4683
- l1117:;
4684
- { int yypos1118= yypos, yythunkpos1118= yythunkpos; if (!yy_BlankLine()) goto l1118; goto l1117;
4685
- l1118:; yypos= yypos1118; yythunkpos= yythunkpos1118;
4686
- } yyDo(yy_1_OrderedListLoose, yybegin, yyend); goto l1113;
4687
- l1114:; yypos= yypos1114; yythunkpos= yythunkpos1114;
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
- l1112:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1119; yyDo(yySet, -1, 0); if (!yy_OrderedListItem()) goto l1119; yyDo(yy_1_OrderedListTight, yybegin, yyend);
4698
- l1120:;
4699
- { int yypos1121= yypos, yythunkpos1121= yythunkpos; if (!yy_OrderedListItem()) goto l1121; yyDo(yy_1_OrderedListTight, yybegin, yyend); goto l1120;
4700
- l1121:; yypos= yypos1121; yythunkpos= yythunkpos1121;
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
- l1122:;
4703
- { int yypos1123= yypos, yythunkpos1123= yythunkpos; if (!yy_BlankLine()) goto l1123; goto l1122;
4704
- l1123:; yypos= yypos1123; yythunkpos= yythunkpos1123;
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 yypos1124= yypos, yythunkpos1124= yythunkpos; if (!yy_OrderedListLoose()) goto l1124; goto l1119;
4707
- l1124:; yypos= yypos1124; yythunkpos= yythunkpos1124;
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
- l1119:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1126= yypos, yythunkpos1126= yythunkpos; if (!yymatchChar('\t')) goto l1127; goto l1126;
4719
- l1127:; yypos= yypos1126; yythunkpos= yythunkpos1126; if (!yymatchString(" ")) goto l1125;
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
- l1126:;
4794
+ l1138:;
4722
4795
  yyprintf((stderr, " ok %s @ %s\n", "Indent", yybuf+yypos));
4723
4796
  return 1;
4724
- l1125:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1129= yypos, yythunkpos1129= yythunkpos;
4732
- { int yypos1130= yypos, yythunkpos1130= yythunkpos; if (!yy_Indent()) goto l1130; goto l1131;
4733
- l1130:; yypos= yypos1130; yythunkpos= yythunkpos1130;
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
- l1131:;
4736
- { int yypos1132= yypos, yythunkpos1132= yythunkpos; if (!yy_BulletListItem()) goto l1133; goto l1132;
4737
- l1133:; yypos= yypos1132; yythunkpos= yythunkpos1132; if (!yy_OrderedListItem()) goto l1129;
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
- l1132:; goto l1128;
4740
- l1129:; yypos= yypos1129; yythunkpos= yythunkpos1129;
4812
+ l1144:; goto l1140;
4813
+ l1141:; yypos= yypos1141; yythunkpos= yythunkpos1141;
4741
4814
  }
4742
- { int yypos1134= yypos, yythunkpos1134= yythunkpos; if (!yy_BlankLine()) goto l1134; goto l1128;
4743
- l1134:; yypos= yypos1134; yythunkpos= yythunkpos1134;
4744
- } if (!yy_OptionallyIndentedLine()) goto l1128;
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
- l1128:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1135; yyDo(yySet, -1, 0); yyText(yybegin, yyend); if (!(YY_BEGIN)) goto l1135;
4754
- l1136:;
4755
- { int yypos1137= yypos, yythunkpos1137= yythunkpos; if (!yy_BlankLine()) goto l1137; goto l1136;
4756
- l1137:; yypos= yypos1137; yythunkpos= yythunkpos1137;
4757
- } yyText(yybegin, yyend); if (!(YY_END)) goto l1135; yyDo(yy_1_ListContinuationBlock, yybegin, yyend); if (!yy_Indent()) goto l1135; if (!yy_ListBlock()) goto l1135; yyDo(yy_2_ListContinuationBlock, yybegin, yyend);
4758
- l1138:;
4759
- { int yypos1139= yypos, yythunkpos1139= yythunkpos; if (!yy_Indent()) goto l1139; if (!yy_ListBlock()) goto l1139; yyDo(yy_2_ListContinuationBlock, yybegin, yyend); goto l1138;
4760
- l1139:; yypos= yypos1139; yythunkpos= yythunkpos1139;
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
- l1135:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1140; yyDo(yySet, -1, 0); if (!yy_Line()) goto l1140; yyDo(yy_1_ListBlock, yybegin, yyend);
4771
- l1141:;
4772
- { int yypos1142= yypos, yythunkpos1142= yythunkpos; if (!yy_ListBlockLine()) goto l1142; yyDo(yy_2_ListBlock, yybegin, yyend); goto l1141;
4773
- l1142:; yypos= yypos1142; yythunkpos= yythunkpos1142;
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
- l1140:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1143; 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 l1143;
4784
- l1144:;
4785
- { int yypos1145= yypos, yythunkpos1145= 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 l1145; goto l1144;
4786
- l1145:; yypos= yypos1145; yythunkpos= yythunkpos1145;
4787
- } if (!yymatchChar('.')) goto l1143; if (!yy_Spacechar()) goto l1143;
4788
- l1146:;
4789
- { int yypos1147= yypos, yythunkpos1147= yythunkpos; if (!yy_Spacechar()) goto l1147; goto l1146;
4790
- l1147:; yypos= yypos1147; yythunkpos= yythunkpos1147;
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
- l1143:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1149= yypos, yythunkpos1149= yythunkpos; if (!yy_Bullet()) goto l1150; goto l1149;
4802
- l1150:; yypos= yypos1149; yythunkpos= yythunkpos1149; if (!yy_Enumerator()) goto l1148;
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
- l1149:; if (!yy_StartList()) goto l1148; yyDo(yySet, -1, 0); if (!yy_ListBlock()) goto l1148; yyDo(yy_1_ListItem, yybegin, yyend);
4805
- l1151:;
4806
- { int yypos1152= yypos, yythunkpos1152= yythunkpos; if (!yy_ListContinuationBlock()) goto l1152; yyDo(yy_2_ListItem, yybegin, yyend); goto l1151;
4807
- l1152:; yypos= yypos1152; yythunkpos= yythunkpos1152;
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
- l1148:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1154= yypos, yythunkpos1154= yythunkpos; if (!yy_HorizontalRule()) goto l1154; goto l1153;
4819
- l1154:; yypos= yypos1154; yythunkpos= yythunkpos1154;
4891
+ { int yypos1166= yypos, yythunkpos1166= yythunkpos; if (!yy_HorizontalRule()) goto l1166; goto l1165;
4892
+ l1166:; yypos= yypos1166; yythunkpos= yythunkpos1166;
4820
4893
  }
4821
- { int yypos1155= yypos, yythunkpos1155= yythunkpos; if (!yy_Bullet()) goto l1153; yypos= yypos1155; yythunkpos= yythunkpos1155;
4822
- } if (!yy_ListItem()) goto l1153;
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
- l1153:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1156; yyDo(yySet, -2, 0); if (!yy_BulletListItem()) goto l1156; yyDo(yySet, -1, 0);
4832
- l1159:;
4833
- { int yypos1160= yypos, yythunkpos1160= yythunkpos; if (!yy_BlankLine()) goto l1160; goto l1159;
4834
- l1160:; yypos= yypos1160; yythunkpos= yythunkpos1160;
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
- l1157:;
4837
- { int yypos1158= yypos, yythunkpos1158= yythunkpos; if (!yy_BulletListItem()) goto l1158; yyDo(yySet, -1, 0);
4838
- l1161:;
4839
- { int yypos1162= yypos, yythunkpos1162= yythunkpos; if (!yy_BlankLine()) goto l1162; goto l1161;
4840
- l1162:; yypos= yypos1162; yythunkpos= yythunkpos1162;
4841
- } yyDo(yy_1_BulletListLoose, yybegin, yyend); goto l1157;
4842
- l1158:; yypos= yypos1158; yythunkpos= yythunkpos1158;
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
- l1156:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1163; yyDo(yySet, -1, 0); if (!yy_BulletListItem()) goto l1163; yyDo(yy_1_BulletListTight, yybegin, yyend);
4853
- l1164:;
4854
- { int yypos1165= yypos, yythunkpos1165= yythunkpos; if (!yy_BulletListItem()) goto l1165; yyDo(yy_1_BulletListTight, yybegin, yyend); goto l1164;
4855
- l1165:; yypos= yypos1165; yythunkpos= yythunkpos1165;
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
- l1166:;
4858
- { int yypos1167= yypos, yythunkpos1167= yythunkpos; if (!yy_BlankLine()) goto l1167; goto l1166;
4859
- l1167:; yypos= yypos1167; yythunkpos= yythunkpos1167;
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 yypos1168= yypos, yythunkpos1168= yythunkpos; if (!yy_BulletListLoose()) goto l1168; goto l1163;
4862
- l1168:; yypos= yypos1168; yythunkpos= yythunkpos1168;
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
- l1163:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1170= yypos, yythunkpos1170= yythunkpos; if (!yymatchChar(' ')) goto l1171; goto l1170;
4874
- l1171:; yypos= yypos1170; yythunkpos= yythunkpos1170; if (!yymatchChar('\t')) goto l1169;
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
- l1170:;
4949
+ l1182:;
4877
4950
  yyprintf((stderr, " ok %s @ %s\n", "Spacechar", yybuf+yypos));
4878
4951
  return 1;
4879
- l1169:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1172;
4886
- { int yypos1173= yypos, yythunkpos1173= yythunkpos; if (!yymatchChar('+')) goto l1174; goto l1173;
4887
- l1174:; yypos= yypos1173; yythunkpos= yythunkpos1173; if (!yymatchChar('*')) goto l1175; goto l1173;
4888
- l1175:; yypos= yypos1173; yythunkpos= yythunkpos1173; if (!yymatchChar('-')) goto l1172;
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
- l1173:; if (!yy_Spacechar()) goto l1172;
4891
- l1176:;
4892
- { int yypos1177= yypos, yythunkpos1177= yythunkpos; if (!yy_Spacechar()) goto l1177; goto l1176;
4893
- l1177:; yypos= yypos1177; yythunkpos= yythunkpos1177;
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
- l1172:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1178; yyDo(yySet, -1, 0);
4904
- l1179:;
4905
- { int yypos1180= yypos, yythunkpos1180= yythunkpos; if (!yy_BlankLine()) goto l1180; yyDo(yy_1_VerbatimChunk, yybegin, yyend); goto l1179;
4906
- l1180:; yypos= yypos1180; yythunkpos= yythunkpos1180;
4907
- } if (!yy_NonblankIndentedLine()) goto l1178; yyDo(yy_2_VerbatimChunk, yybegin, yyend);
4908
- l1181:;
4909
- { int yypos1182= yypos, yythunkpos1182= yythunkpos; if (!yy_NonblankIndentedLine()) goto l1182; yyDo(yy_2_VerbatimChunk, yybegin, yyend); goto l1181;
4910
- l1182:; yypos= yypos1182; yythunkpos= yythunkpos1182;
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
- l1178:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1183; if (!yy_Line()) goto l1183;
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
- l1183:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1185= yypos, yythunkpos1185= yythunkpos; if (!yy_BlankLine()) goto l1185; goto l1184;
4931
- l1185:; yypos= yypos1185; yythunkpos= yythunkpos1185;
4932
- } if (!yy_IndentedLine()) goto l1184;
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
- l1184:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1186; yyDo(yy_1_Line, yybegin, yyend);
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
- l1186:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1187; yyDo(yySet, -1, 0); if (!yymatchChar('>')) goto l1187;
4951
- { int yypos1190= yypos, yythunkpos1190= yythunkpos; if (!yymatchChar(' ')) goto l1190; goto l1191;
4952
- l1190:; yypos= yypos1190; yythunkpos= yythunkpos1190;
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
- { int yypos1195= yypos, yythunkpos1195= yythunkpos; if (!yy_BlankLine()) goto l1195; goto l1193;
4961
- l1195:; yypos= yypos1195; yythunkpos= yythunkpos1195;
4962
- } if (!yy_Line()) goto l1193; yyDo(yy_2_BlockQuoteRaw, yybegin, yyend); goto l1192;
4963
- l1193:; yypos= yypos1193; yythunkpos= yythunkpos1193;
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
- l1196:;
4966
- { int yypos1197= yypos, yythunkpos1197= yythunkpos; if (!yy_BlankLine()) goto l1197; yyDo(yy_3_BlockQuoteRaw, yybegin, yyend); goto l1196;
4967
- l1197:; yypos= yypos1197; yythunkpos= yythunkpos1197;
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
- l1188:;
4970
- { int yypos1189= yypos, yythunkpos1189= yythunkpos; if (!yymatchChar('>')) goto l1189;
4971
- { int yypos1198= yypos, yythunkpos1198= yythunkpos; if (!yymatchChar(' ')) goto l1198; goto l1199;
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 yypos1202= yypos, yythunkpos1202= yythunkpos; if (!yymatchChar('>')) goto l1202; goto l1201;
4978
- l1202:; yypos= yypos1202; yythunkpos= yythunkpos1202;
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
- { int yypos1203= yypos, yythunkpos1203= yythunkpos; if (!yy_BlankLine()) goto l1203; goto l1201;
4981
- l1203:; yypos= yypos1203; yythunkpos= yythunkpos1203;
4982
- } if (!yy_Line()) goto l1201; yyDo(yy_2_BlockQuoteRaw, yybegin, yyend); goto l1200;
4983
- l1201:; yypos= yypos1201; yythunkpos= yythunkpos1201;
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
- l1204:;
4986
- { int yypos1205= yypos, yythunkpos1205= yythunkpos; if (!yy_BlankLine()) goto l1205; yyDo(yy_3_BlockQuoteRaw, yybegin, yyend); goto l1204;
4987
- l1205:; yypos= yypos1205; yythunkpos= yythunkpos1205;
4988
- } goto l1188;
4989
- l1189:; yypos= yypos1189; yythunkpos= yythunkpos1189;
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
- l1187:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1207= yypos, yythunkpos1207= yythunkpos; if (!yy_TerminalEndline()) goto l1208; goto l1207;
5001
- l1208:; yypos= yypos1207; yythunkpos= yythunkpos1207; if (!yy_NormalEndline()) goto l1206;
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
- l1207:;
5076
+ l1219:;
5004
5077
  yyprintf((stderr, " ok %s @ %s\n", "Endline", yybuf+yypos));
5005
5078
  return 1;
5006
- l1206:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1209; yyDo(yySet, -1, 0);
5013
- { int yypos1212= yypos, yythunkpos1212= yythunkpos; if (!yy_Endline()) goto l1212; goto l1209;
5014
- l1212:; yypos= yypos1212; yythunkpos= yythunkpos1212;
5015
- } if (!yy_Inline()) goto l1209; yyDo(yy_1_SetextHeading2, yybegin, yyend);
5016
- l1210:;
5017
- { int yypos1211= yypos, yythunkpos1211= yythunkpos;
5018
- { int yypos1213= yypos, yythunkpos1213= yythunkpos; if (!yy_Endline()) goto l1213; goto l1211;
5019
- l1213:; yypos= yypos1213; yythunkpos= yythunkpos1213;
5020
- } if (!yy_Inline()) goto l1211; yyDo(yy_1_SetextHeading2, yybegin, yyend); goto l1210;
5021
- l1211:; yypos= yypos1211; yythunkpos= yythunkpos1211;
5022
- } if (!yy_Newline()) goto l1209; if (!yymatchString("---")) goto l1209;
5023
- l1214:;
5024
- { int yypos1215= yypos, yythunkpos1215= yythunkpos; if (!yymatchChar('-')) goto l1215; goto l1214;
5025
- l1215:; yypos= yypos1215; yythunkpos= yythunkpos1215;
5026
- } if (!yy_Newline()) goto l1209; yyDo(yy_2_SetextHeading2, yybegin, yyend);
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
- l1209:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1216; yyDo(yySet, -1, 0);
5036
- { int yypos1219= yypos, yythunkpos1219= yythunkpos; if (!yy_Endline()) goto l1219; goto l1216;
5037
- l1219:; yypos= yypos1219; yythunkpos= yythunkpos1219;
5038
- } if (!yy_Inline()) goto l1216; yyDo(yy_1_SetextHeading1, yybegin, yyend);
5039
- l1217:;
5040
- { int yypos1218= yypos, yythunkpos1218= yythunkpos;
5041
- { int yypos1220= yypos, yythunkpos1220= yythunkpos; if (!yy_Endline()) goto l1220; goto l1218;
5042
- l1220:; yypos= yypos1220; yythunkpos= yythunkpos1220;
5043
- } if (!yy_Inline()) goto l1218; yyDo(yy_1_SetextHeading1, yybegin, yyend); goto l1217;
5044
- l1218:; yypos= yypos1218; yythunkpos= yythunkpos1218;
5045
- } if (!yy_Newline()) goto l1216; if (!yymatchString("===")) goto l1216;
5046
- l1221:;
5047
- { int yypos1222= yypos, yythunkpos1222= yythunkpos; if (!yymatchChar('=')) goto l1222; goto l1221;
5048
- l1222:; yypos= yypos1222; yythunkpos= yythunkpos1222;
5049
- } if (!yy_Newline()) goto l1216; yyDo(yy_2_SetextHeading1, yybegin, yyend);
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
- l1216:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1224= yypos, yythunkpos1224= yythunkpos; if (!yy_SetextHeading1()) goto l1225; goto l1224;
5060
- l1225:; yypos= yypos1224; yythunkpos= yythunkpos1224; if (!yy_SetextHeading2()) goto l1223;
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
- l1224:;
5135
+ l1236:;
5063
5136
  yyprintf((stderr, " ok %s @ %s\n", "SetextHeading", yybuf+yypos));
5064
5137
  return 1;
5065
- l1223:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1226; yyDo(yySet, -2, 0); if (!yy_Sp()) goto l1226; if (!yy_StartList()) goto l1226; yyDo(yySet, -1, 0); if (!yy_AtxInline()) goto l1226; yyDo(yy_1_AtxHeading, yybegin, yyend);
5072
- l1227:;
5073
- { int yypos1228= yypos, yythunkpos1228= yythunkpos; if (!yy_AtxInline()) goto l1228; yyDo(yy_1_AtxHeading, yybegin, yyend); goto l1227;
5074
- l1228:; yypos= yypos1228; yythunkpos= yythunkpos1228;
5075
- }
5076
- { int yypos1229= yypos, yythunkpos1229= yythunkpos; if (!yy_Sp()) goto l1229;
5077
- l1231:;
5078
- { int yypos1232= yypos, yythunkpos1232= yythunkpos; if (!yymatchChar('#')) goto l1232; goto l1231;
5079
- l1232:; yypos= yypos1232; yythunkpos= yythunkpos1232;
5080
- } if (!yy_Sp()) goto l1229; goto l1230;
5081
- l1229:; yypos= yypos1229; yythunkpos= yythunkpos1229;
5082
- }
5083
- l1230:; if (!yy_Newline()) goto l1226; yyDo(yy_2_AtxHeading, yybegin, yyend);
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
- l1226:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1233;
5093
- { int yypos1234= yypos, yythunkpos1234= yythunkpos; if (!yymatchString("######")) goto l1235; goto l1234;
5094
- l1235:; yypos= yypos1234; yythunkpos= yythunkpos1234; if (!yymatchString("#####")) goto l1236; goto l1234;
5095
- l1236:; yypos= yypos1234; yythunkpos= yythunkpos1234; if (!yymatchString("####")) goto l1237; goto l1234;
5096
- l1237:; yypos= yypos1234; yythunkpos= yythunkpos1234; if (!yymatchString("###")) goto l1238; goto l1234;
5097
- l1238:; yypos= yypos1234; yythunkpos= yythunkpos1234; if (!yymatchString("##")) goto l1239; goto l1234;
5098
- l1239:; yypos= yypos1234; yythunkpos= yythunkpos1234; if (!yymatchChar('#')) goto l1233;
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
- l1234:; yyText(yybegin, yyend); if (!(YY_END)) goto l1233; yyDo(yy_1_AtxStart, yybegin, yyend);
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
- l1233:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1241= yypos, yythunkpos1241= yythunkpos; if (!yy_Str()) goto l1242; goto l1241;
5111
- l1242:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_LineBreak()) goto l1243; goto l1241;
5112
- l1243:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_Endline()) goto l1244; goto l1241;
5113
- l1244:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_UlOrStarLine()) goto l1245; goto l1241;
5114
- l1245:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_Space()) goto l1246; goto l1241;
5115
- l1246:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_Strong()) goto l1247; goto l1241;
5116
- l1247:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_Emph()) goto l1248; goto l1241;
5117
- l1248:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_Image()) goto l1249; goto l1241;
5118
- l1249:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_Link()) goto l1250; goto l1241;
5119
- l1250:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_NoteReference()) goto l1251; goto l1241;
5120
- l1251:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_InlineNote()) goto l1252; goto l1241;
5121
- l1252:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_Code()) goto l1253; goto l1241;
5122
- l1253:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_RawHtml()) goto l1254; goto l1241;
5123
- l1254:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_Entity()) goto l1255; goto l1241;
5124
- l1255:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_EscapedChar()) goto l1256; goto l1241;
5125
- l1256:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_Smart()) goto l1257; goto l1241;
5126
- l1257:; yypos= yypos1241; yythunkpos= yythunkpos1241; if (!yy_Symbol()) goto l1240;
5127
- }
5128
- l1241:;
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
- l1240:; yypos= yypos0; yythunkpos= yythunkpos0;
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
- l1259:;
5139
- { int yypos1260= yypos, yythunkpos1260= yythunkpos; if (!yy_Spacechar()) goto l1260; goto l1259;
5140
- l1260:; yypos= yypos1260; yythunkpos= yythunkpos1260;
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 yypos1262= yypos, yythunkpos1262= yythunkpos; if (!yymatchChar('\n')) goto l1263; goto l1262;
5149
- l1263:; yypos= yypos1262; yythunkpos= yythunkpos1262; if (!yymatchChar('\r')) goto l1261;
5150
- { int yypos1264= yypos, yythunkpos1264= yythunkpos; if (!yymatchChar('\n')) goto l1264; goto l1265;
5151
- l1264:; yypos= yypos1264; yythunkpos= yythunkpos1264;
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
- l1265:;
5226
+ l1277:;
5154
5227
  }
5155
- l1262:;
5228
+ l1274:;
5156
5229
  yyprintf((stderr, " ok %s @ %s\n", "Newline", yybuf+yypos));
5157
5230
  return 1;
5158
- l1261:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1267= yypos, yythunkpos1267= yythunkpos; if (!yy_Newline()) goto l1267; goto l1266;
5166
- l1267:; yypos= yypos1267; yythunkpos= yythunkpos1267;
5167
- }
5168
- { int yypos1268= yypos, yythunkpos1268= yythunkpos; if (!yy_Sp()) goto l1268;
5169
- l1269:;
5170
- { int yypos1270= yypos, yythunkpos1270= yythunkpos; if (!yymatchChar('#')) goto l1270; goto l1269;
5171
- l1270:; yypos= yypos1270; yythunkpos= yythunkpos1270;
5172
- } if (!yy_Sp()) goto l1268; if (!yy_Newline()) goto l1268; goto l1266;
5173
- l1268:; yypos= yypos1268; yythunkpos= yythunkpos1268;
5174
- } if (!yy_Inline()) goto l1266;
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
- l1266:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1271; yyDo(yySet, -2, 0);
5184
- { int yypos1274= yypos, yythunkpos1274= yythunkpos;
5185
- { int yypos1276= yypos, yythunkpos1276= yythunkpos; if (!yy_Endline()) goto l1276; goto l1275;
5186
- l1276:; yypos= yypos1276; yythunkpos= yythunkpos1276;
5187
- } if (!yy_Inline()) goto l1275; yyDo(yy_1_Inlines, yybegin, yyend); goto l1274;
5188
- l1275:; yypos= yypos1274; yythunkpos= yythunkpos1274; if (!yy_Endline()) goto l1271; yyDo(yySet, -1, 0);
5189
- { int yypos1277= yypos, yythunkpos1277= yythunkpos; if (!yy_Inline()) goto l1271; yypos= yypos1277; yythunkpos= yythunkpos1277;
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
- l1274:;
5193
- l1272:;
5194
- { int yypos1273= yypos, yythunkpos1273= yythunkpos;
5195
- { int yypos1278= yypos, yythunkpos1278= yythunkpos;
5196
- { int yypos1280= yypos, yythunkpos1280= yythunkpos; if (!yy_Endline()) goto l1280; goto l1279;
5197
- l1280:; yypos= yypos1280; yythunkpos= yythunkpos1280;
5198
- } if (!yy_Inline()) goto l1279; yyDo(yy_1_Inlines, yybegin, yyend); goto l1278;
5199
- l1279:; yypos= yypos1278; yythunkpos= yythunkpos1278; if (!yy_Endline()) goto l1273; yyDo(yySet, -1, 0);
5200
- { int yypos1281= yypos, yythunkpos1281= yythunkpos; if (!yy_Inline()) goto l1273; yypos= yypos1281; yythunkpos= yythunkpos1281;
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
- l1278:; goto l1272;
5204
- l1273:; yypos= yypos1273; yythunkpos= yythunkpos1273;
5276
+ l1290:; goto l1284;
5277
+ l1285:; yypos= yypos1285; yythunkpos= yythunkpos1285;
5205
5278
  }
5206
- { int yypos1282= yypos, yythunkpos1282= yythunkpos; if (!yy_Endline()) goto l1282; goto l1283;
5207
- l1282:; yypos= yypos1282; yythunkpos= yythunkpos1282;
5279
+ { int yypos1294= yypos, yythunkpos1294= yythunkpos; if (!yy_Endline()) goto l1294; goto l1295;
5280
+ l1294:; yypos= yypos1294; yythunkpos= yythunkpos1294;
5208
5281
  }
5209
- l1283:; yyDo(yy_3_Inlines, yybegin, yyend);
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
- l1271:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1285= yypos, yythunkpos1285= yythunkpos; if (!yymatchString(" ")) goto l1286; goto l1285;
5220
- l1286:; yypos= yypos1285; yythunkpos= yythunkpos1285; if (!yymatchString(" ")) goto l1287; goto l1285;
5221
- l1287:; yypos= yypos1285; yythunkpos= yythunkpos1285; if (!yymatchChar(' ')) goto l1288; goto l1285;
5222
- l1288:; yypos= yypos1285; yythunkpos= yythunkpos1285; if (!yymatchString("")) goto l1284;
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
- l1285:;
5297
+ l1297:;
5225
5298
  yyprintf((stderr, " ok %s @ %s\n", "NonindentSpace", yybuf+yypos));
5226
5299
  return 1;
5227
- l1284:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1289; yyDo(yySet, -1, 0); yyDo(yy_1_Plain, yybegin, yyend);
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
- l1289:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1290; if (!yy_Inlines()) goto l1290; yyDo(yySet, -1, 0); if (!yy_BlankLine()) goto l1290;
5243
- l1291:;
5244
- { int yypos1292= yypos, yythunkpos1292= yythunkpos; if (!yy_BlankLine()) goto l1292; goto l1291;
5245
- l1292:; yypos= yypos1292; yythunkpos= yythunkpos1292;
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
- l1290:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1293;
5256
- { int yypos1294= yypos, yythunkpos1294= yythunkpos; if (!yy_HtmlBlockInTags()) goto l1295; goto l1294;
5257
- l1295:; yypos= yypos1294; yythunkpos= yythunkpos1294; if (!yy_HtmlComment()) goto l1296; goto l1294;
5258
- l1296:; yypos= yypos1294; yythunkpos= yythunkpos1294; if (!yy_HtmlBlockSelfClosing()) goto l1293;
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
- l1294:; yyText(yybegin, yyend); if (!(YY_END)) goto l1293; if (!yy_BlankLine()) goto l1293;
5261
- l1297:;
5262
- { int yypos1298= yypos, yythunkpos1298= yythunkpos; if (!yy_BlankLine()) goto l1298; goto l1297;
5263
- l1298:; yypos= yypos1298; yythunkpos= yythunkpos1298;
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
- l1293:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1300= yypos, yythunkpos1300= yythunkpos; if (!yy_BulletListTight()) goto l1301; goto l1300;
5275
- l1301:; yypos= yypos1300; yythunkpos= yythunkpos1300; if (!yy_BulletListLoose()) goto l1299;
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
- l1300:;
5363
+ l1315:;
5278
5364
  yyprintf((stderr, " ok %s @ %s\n", "BulletList", yybuf+yypos));
5279
5365
  return 1;
5280
- l1299:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1303= yypos, yythunkpos1303= yythunkpos; if (!yy_OrderedListTight()) goto l1304; goto l1303;
5288
- l1304:; yypos= yypos1303; yythunkpos= yythunkpos1303; if (!yy_OrderedListLoose()) goto l1302;
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
- l1303:;
5376
+ l1318:;
5291
5377
  yyprintf((stderr, " ok %s @ %s\n", "OrderedList", yybuf+yypos));
5292
5378
  return 1;
5293
- l1302:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1306= yypos, yythunkpos1306= yythunkpos; if (!yy_AtxHeading()) goto l1307; goto l1306;
5301
- l1307:; yypos= yypos1306; yythunkpos= yythunkpos1306; if (!yy_SetextHeading()) goto l1305;
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
- l1306:;
5389
+ l1321:;
5304
5390
  yyprintf((stderr, " ok %s @ %s\n", "Heading", yybuf+yypos));
5305
5391
  return 1;
5306
- l1305:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1308;
5313
- { int yypos1309= yypos, yythunkpos1309= yythunkpos; if (!yymatchChar('*')) goto l1310; if (!yy_Sp()) goto l1310; if (!yymatchChar('*')) goto l1310; if (!yy_Sp()) goto l1310; if (!yymatchChar('*')) goto l1310;
5314
- l1311:;
5315
- { int yypos1312= yypos, yythunkpos1312= yythunkpos; if (!yy_Sp()) goto l1312; if (!yymatchChar('*')) goto l1312; goto l1311;
5316
- l1312:; yypos= yypos1312; yythunkpos= yythunkpos1312;
5317
- } goto l1309;
5318
- l1310:; yypos= yypos1309; yythunkpos= yythunkpos1309; if (!yymatchChar('-')) goto l1313; if (!yy_Sp()) goto l1313; if (!yymatchChar('-')) goto l1313; if (!yy_Sp()) goto l1313; if (!yymatchChar('-')) goto l1313;
5319
- l1314:;
5320
- { int yypos1315= yypos, yythunkpos1315= yythunkpos; if (!yy_Sp()) goto l1315; if (!yymatchChar('-')) goto l1315; goto l1314;
5321
- l1315:; yypos= yypos1315; yythunkpos= yythunkpos1315;
5322
- } goto l1309;
5323
- l1313:; yypos= yypos1309; yythunkpos= yythunkpos1309; if (!yymatchChar('_')) goto l1308; if (!yy_Sp()) goto l1308; if (!yymatchChar('_')) goto l1308; if (!yy_Sp()) goto l1308; if (!yymatchChar('_')) goto l1308;
5324
- l1316:;
5325
- { int yypos1317= yypos, yythunkpos1317= yythunkpos; if (!yy_Sp()) goto l1317; if (!yymatchChar('_')) goto l1317; goto l1316;
5326
- l1317:; yypos= yypos1317; yythunkpos= yythunkpos1317;
5327
- }
5328
- }
5329
- l1309:; if (!yy_Sp()) goto l1308; if (!yy_Newline()) goto l1308; if (!yy_BlankLine()) goto l1308;
5330
- l1318:;
5331
- { int yypos1319= yypos, yythunkpos1319= yythunkpos; if (!yy_BlankLine()) goto l1319; goto l1318;
5332
- l1319:; yypos= yypos1319; yythunkpos= yythunkpos1319;
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
- l1308:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1320;
5343
- { int yypos1321= yypos, yythunkpos1321= yythunkpos; if (!yymatchString("[]")) goto l1321; goto l1320;
5344
- l1321:; yypos= yypos1321; yythunkpos= yythunkpos1321;
5345
- } if (!yy_Label()) goto l1320; yyDo(yySet, -3, 0); if (!yymatchChar(':')) goto l1320; if (!yy_Spnl()) goto l1320; if (!yy_RefSrc()) goto l1320; yyDo(yySet, -2, 0); if (!yy_Spnl()) goto l1320; if (!yy_RefTitle()) goto l1320; yyDo(yySet, -1, 0);
5346
- l1322:;
5347
- { int yypos1323= yypos, yythunkpos1323= yythunkpos; if (!yy_BlankLine()) goto l1323; goto l1322;
5348
- l1323:; yypos= yypos1323; yythunkpos= yythunkpos1323;
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
- l1320:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1324; if (!yy_NonindentSpace()) goto l1324; if (!yy_RawNoteReference()) goto l1324; yyDo(yySet, -2, 0); if (!yymatchChar(':')) goto l1324; if (!yy_Sp()) goto l1324; if (!yy_StartList()) goto l1324; yyDo(yySet, -1, 0); if (!yy_RawNoteBlock()) goto l1324; yyDo(yy_1_Note, yybegin, yyend);
5359
- l1325:;
5360
- { int yypos1326= yypos, yythunkpos1326= yythunkpos;
5361
- { int yypos1327= yypos, yythunkpos1327= yythunkpos; if (!yy_Indent()) goto l1326; yypos= yypos1327; yythunkpos= yythunkpos1327;
5362
- } if (!yy_RawNoteBlock()) goto l1326; yyDo(yy_2_Note, yybegin, yyend); goto l1325;
5363
- l1326:; yypos= yypos1326; yythunkpos= yythunkpos1326;
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
- l1324:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1328; yyDo(yySet, -1, 0); if (!yy_VerbatimChunk()) goto l1328; yyDo(yy_1_Verbatim, yybegin, yyend);
5374
- l1329:;
5375
- { int yypos1330= yypos, yythunkpos1330= yythunkpos; if (!yy_VerbatimChunk()) goto l1330; yyDo(yy_1_Verbatim, yybegin, yyend); goto l1329;
5376
- l1330:; yypos= yypos1330; yythunkpos= yythunkpos1330;
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
- l1328:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1331; yyDo(yySet, -1, 0); yyDo(yy_1_BlockQuote, yybegin, yyend);
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
- l1331:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1332; if (!yy_Newline()) goto l1332;
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
- l1332:; yypos= yypos0; yythunkpos= yythunkpos0;
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
- l1334:;
5406
- { int yypos1335= yypos, yythunkpos1335= yythunkpos; if (!yy_BlankLine()) goto l1335; goto l1334;
5407
- l1335:; yypos= yypos1335; yythunkpos= yythunkpos1335;
5408
- }
5409
- { int yypos1336= yypos, yythunkpos1336= yythunkpos; if (!yy_BlockQuote()) goto l1337; goto l1336;
5410
- l1337:; yypos= yypos1336; yythunkpos= yythunkpos1336; if (!yy_Verbatim()) goto l1338; goto l1336;
5411
- l1338:; yypos= yypos1336; yythunkpos= yythunkpos1336; if (!yy_Note()) goto l1339; goto l1336;
5412
- l1339:; yypos= yypos1336; yythunkpos= yythunkpos1336; if (!yy_Reference()) goto l1340; goto l1336;
5413
- l1340:; yypos= yypos1336; yythunkpos= yythunkpos1336; if (!yy_HorizontalRule()) goto l1341; goto l1336;
5414
- l1341:; yypos= yypos1336; yythunkpos= yythunkpos1336; if (!yy_Heading()) goto l1342; goto l1336;
5415
- l1342:; yypos= yypos1336; yythunkpos= yythunkpos1336; if (!yy_OrderedList()) goto l1343; goto l1336;
5416
- l1343:; yypos= yypos1336; yythunkpos= yythunkpos1336; if (!yy_BulletList()) goto l1344; goto l1336;
5417
- l1344:; yypos= yypos1336; yythunkpos= yythunkpos1336; if (!yy_HtmlBlock()) goto l1345; goto l1336;
5418
- l1345:; yypos= yypos1336; yythunkpos= yythunkpos1336; if (!yy_Para()) goto l1346; goto l1336;
5419
- l1346:; yypos= yypos1336; yythunkpos= yythunkpos1336; if (!yy_Plain()) goto l1333;
5420
- }
5421
- l1336:;
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
- l1333:; yypos= yypos0; yythunkpos= yythunkpos0;
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 yypos1348= yypos, yythunkpos1348= yythunkpos; if (!yymatchDot()) goto l1347; yypos= yypos1348; yythunkpos= yythunkpos1348;
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
- l1347:; yypos= yypos0; yythunkpos= yythunkpos0;
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 l1349; yyDo(yySet, -1, 0);
5442
- l1350:;
5443
- { int yypos1351= yypos, yythunkpos1351= yythunkpos; if (!yy_Block()) goto l1351; yyDo(yy_1_Doc, yybegin, yyend); goto l1350;
5444
- l1351:; yypos= yypos1351; yythunkpos= yythunkpos1351;
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
- l1349:; yypos= yypos0; yythunkpos= yythunkpos0;
5535
+ l1365:; yypos= yypos0; yythunkpos= yythunkpos0;
5449
5536
  yyprintf((stderr, " fail %s @ %s\n", "Doc", yybuf+yypos));
5450
5537
  return 0;
5451
5538
  }