rpeg-markdown 1.1 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/Rakefile +1 -1
  2. data/ext/markdown_parser.c +1094 -1182
  3. metadata +2 -2
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ require 'rake/gempackagetask'
5
5
  task :default => :test
6
6
 
7
7
  DLEXT = Config::CONFIG['DLEXT']
8
- VERS = '1.1'
8
+ VERS = '1.1.1'
9
9
 
10
10
  spec =
11
11
  Gem::Specification.new do |s|
@@ -3,7 +3,7 @@
3
3
  #include <stdio.h>
4
4
  #include <stdlib.h>
5
5
  #include <string.h>
6
- #define YYRULECOUNT 212
6
+ #define YYRULECOUNT 208
7
7
 
8
8
  /**********************************************************************
9
9
 
@@ -243,140 +243,136 @@ 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(); /* 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 */
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_InStyleTags(); /* 123 */
332
+ YY_RULE(int) yy_StyleClose(); /* 122 */
333
+ YY_RULE(int) yy_StyleOpen(); /* 121 */
334
+ YY_RULE(int) yy_HtmlBlockType(); /* 120 */
335
+ YY_RULE(int) yy_HtmlBlockSelfClosing(); /* 119 */
336
+ YY_RULE(int) yy_HtmlComment(); /* 118 */
337
+ YY_RULE(int) yy_HtmlBlockInTags(); /* 117 */
338
+ YY_RULE(int) yy_HtmlBlockCloseScript(); /* 116 */
339
+ YY_RULE(int) yy_HtmlBlockOpenScript(); /* 115 */
340
+ YY_RULE(int) yy_HtmlBlockCloseTr(); /* 114 */
341
+ YY_RULE(int) yy_HtmlBlockOpenTr(); /* 113 */
342
+ YY_RULE(int) yy_HtmlBlockCloseThead(); /* 112 */
343
+ YY_RULE(int) yy_HtmlBlockOpenThead(); /* 111 */
344
+ YY_RULE(int) yy_HtmlBlockCloseTh(); /* 110 */
345
+ YY_RULE(int) yy_HtmlBlockOpenTh(); /* 109 */
346
+ YY_RULE(int) yy_HtmlBlockCloseTfoot(); /* 108 */
347
+ YY_RULE(int) yy_HtmlBlockOpenTfoot(); /* 107 */
348
+ YY_RULE(int) yy_HtmlBlockCloseTd(); /* 106 */
349
+ YY_RULE(int) yy_HtmlBlockOpenTd(); /* 105 */
350
+ YY_RULE(int) yy_HtmlBlockCloseTbody(); /* 104 */
351
+ YY_RULE(int) yy_HtmlBlockOpenTbody(); /* 103 */
352
+ YY_RULE(int) yy_HtmlBlockCloseLi(); /* 102 */
353
+ YY_RULE(int) yy_HtmlBlockOpenLi(); /* 101 */
354
+ YY_RULE(int) yy_HtmlBlockCloseFrameset(); /* 100 */
355
+ YY_RULE(int) yy_HtmlBlockOpenFrameset(); /* 99 */
356
+ YY_RULE(int) yy_HtmlBlockCloseDt(); /* 98 */
357
+ YY_RULE(int) yy_HtmlBlockOpenDt(); /* 97 */
358
+ YY_RULE(int) yy_HtmlBlockCloseDd(); /* 96 */
359
+ YY_RULE(int) yy_HtmlBlockOpenDd(); /* 95 */
360
+ YY_RULE(int) yy_HtmlBlockCloseUl(); /* 94 */
361
+ YY_RULE(int) yy_HtmlBlockOpenUl(); /* 93 */
362
+ YY_RULE(int) yy_HtmlBlockCloseTable(); /* 92 */
363
+ YY_RULE(int) yy_HtmlBlockOpenTable(); /* 91 */
364
+ YY_RULE(int) yy_HtmlBlockClosePre(); /* 90 */
365
+ YY_RULE(int) yy_HtmlBlockOpenPre(); /* 89 */
366
+ YY_RULE(int) yy_HtmlBlockCloseP(); /* 88 */
367
+ YY_RULE(int) yy_HtmlBlockOpenP(); /* 87 */
368
+ YY_RULE(int) yy_HtmlBlockCloseOl(); /* 86 */
369
+ YY_RULE(int) yy_HtmlBlockOpenOl(); /* 85 */
370
+ YY_RULE(int) yy_HtmlBlockCloseNoscript(); /* 84 */
371
+ YY_RULE(int) yy_HtmlBlockOpenNoscript(); /* 83 */
372
+ YY_RULE(int) yy_HtmlBlockCloseNoframes(); /* 82 */
373
+ YY_RULE(int) yy_HtmlBlockOpenNoframes(); /* 81 */
374
+ YY_RULE(int) yy_HtmlBlockCloseMenu(); /* 80 */
375
+ YY_RULE(int) yy_HtmlBlockOpenMenu(); /* 79 */
380
376
  YY_RULE(int) yy_HtmlBlockCloseH6(); /* 78 */
381
377
  YY_RULE(int) yy_HtmlBlockOpenH6(); /* 77 */
382
378
  YY_RULE(int) yy_HtmlBlockCloseH5(); /* 76 */
@@ -3361,257 +3357,233 @@ YY_RULE(int) yy_HtmlBlockInTags()
3361
3357
  l694:; goto l692;
3362
3358
  l693:; yypos= yypos693; yythunkpos= yythunkpos693;
3363
3359
  } if (!yy_HtmlBlockCloseH6()) goto l691; goto l612;
3364
- l691:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenHr()) goto l697;
3360
+ l691:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenMenu()) goto l697;
3365
3361
  l698:;
3366
3362
  { int yypos699= yypos, yythunkpos699= yythunkpos;
3367
3363
  { int yypos700= yypos, yythunkpos700= yythunkpos; if (!yy_HtmlBlockInTags()) goto l701; goto l700;
3368
3364
  l701:; yypos= yypos700; yythunkpos= yythunkpos700;
3369
- { int yypos702= yypos, yythunkpos702= yythunkpos; if (!yy_HtmlBlockCloseHr()) goto l702; goto l699;
3365
+ { int yypos702= yypos, yythunkpos702= yythunkpos; if (!yy_HtmlBlockCloseMenu()) goto l702; goto l699;
3370
3366
  l702:; yypos= yypos702; yythunkpos= yythunkpos702;
3371
3367
  } if (!yymatchDot()) goto l699;
3372
3368
  }
3373
3369
  l700:; goto l698;
3374
3370
  l699:; yypos= yypos699; yythunkpos= yythunkpos699;
3375
- } if (!yy_HtmlBlockCloseHr()) goto l697; goto l612;
3376
- l697:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenIsindex()) goto l703;
3371
+ } if (!yy_HtmlBlockCloseMenu()) goto l697; goto l612;
3372
+ l697:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenNoframes()) goto l703;
3377
3373
  l704:;
3378
3374
  { int yypos705= yypos, yythunkpos705= yythunkpos;
3379
3375
  { int yypos706= yypos, yythunkpos706= yythunkpos; if (!yy_HtmlBlockInTags()) goto l707; goto l706;
3380
3376
  l707:; yypos= yypos706; yythunkpos= yythunkpos706;
3381
- { int yypos708= yypos, yythunkpos708= yythunkpos; if (!yy_HtmlBlockCloseIsindex()) goto l708; goto l705;
3377
+ { int yypos708= yypos, yythunkpos708= yythunkpos; if (!yy_HtmlBlockCloseNoframes()) goto l708; goto l705;
3382
3378
  l708:; yypos= yypos708; yythunkpos= yythunkpos708;
3383
3379
  } if (!yymatchDot()) goto l705;
3384
3380
  }
3385
3381
  l706:; goto l704;
3386
3382
  l705:; yypos= yypos705; yythunkpos= yythunkpos705;
3387
- } if (!yy_HtmlBlockCloseIsindex()) goto l703; goto l612;
3388
- l703:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenMenu()) goto l709;
3383
+ } if (!yy_HtmlBlockCloseNoframes()) goto l703; goto l612;
3384
+ l703:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenNoscript()) goto l709;
3389
3385
  l710:;
3390
3386
  { int yypos711= yypos, yythunkpos711= yythunkpos;
3391
3387
  { int yypos712= yypos, yythunkpos712= yythunkpos; if (!yy_HtmlBlockInTags()) goto l713; goto l712;
3392
3388
  l713:; yypos= yypos712; yythunkpos= yythunkpos712;
3393
- { int yypos714= yypos, yythunkpos714= yythunkpos; if (!yy_HtmlBlockCloseMenu()) goto l714; goto l711;
3389
+ { int yypos714= yypos, yythunkpos714= yythunkpos; if (!yy_HtmlBlockCloseNoscript()) goto l714; goto l711;
3394
3390
  l714:; yypos= yypos714; yythunkpos= yythunkpos714;
3395
3391
  } if (!yymatchDot()) goto l711;
3396
3392
  }
3397
3393
  l712:; goto l710;
3398
3394
  l711:; yypos= yypos711; yythunkpos= yythunkpos711;
3399
- } if (!yy_HtmlBlockCloseMenu()) goto l709; goto l612;
3400
- l709:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenNoframes()) goto l715;
3395
+ } if (!yy_HtmlBlockCloseNoscript()) goto l709; goto l612;
3396
+ l709:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenOl()) goto l715;
3401
3397
  l716:;
3402
3398
  { int yypos717= yypos, yythunkpos717= yythunkpos;
3403
3399
  { int yypos718= yypos, yythunkpos718= yythunkpos; if (!yy_HtmlBlockInTags()) goto l719; goto l718;
3404
3400
  l719:; yypos= yypos718; yythunkpos= yythunkpos718;
3405
- { int yypos720= yypos, yythunkpos720= yythunkpos; if (!yy_HtmlBlockCloseNoframes()) goto l720; goto l717;
3401
+ { int yypos720= yypos, yythunkpos720= yythunkpos; if (!yy_HtmlBlockCloseOl()) goto l720; goto l717;
3406
3402
  l720:; yypos= yypos720; yythunkpos= yythunkpos720;
3407
3403
  } if (!yymatchDot()) goto l717;
3408
3404
  }
3409
3405
  l718:; goto l716;
3410
3406
  l717:; yypos= yypos717; yythunkpos= yythunkpos717;
3411
- } if (!yy_HtmlBlockCloseNoframes()) goto l715; goto l612;
3412
- l715:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenNoscript()) goto l721;
3407
+ } if (!yy_HtmlBlockCloseOl()) goto l715; goto l612;
3408
+ l715:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenP()) goto l721;
3413
3409
  l722:;
3414
3410
  { int yypos723= yypos, yythunkpos723= yythunkpos;
3415
3411
  { int yypos724= yypos, yythunkpos724= yythunkpos; if (!yy_HtmlBlockInTags()) goto l725; goto l724;
3416
3412
  l725:; yypos= yypos724; yythunkpos= yythunkpos724;
3417
- { int yypos726= yypos, yythunkpos726= yythunkpos; if (!yy_HtmlBlockCloseNoscript()) goto l726; goto l723;
3413
+ { int yypos726= yypos, yythunkpos726= yythunkpos; if (!yy_HtmlBlockCloseP()) goto l726; goto l723;
3418
3414
  l726:; yypos= yypos726; yythunkpos= yythunkpos726;
3419
3415
  } if (!yymatchDot()) goto l723;
3420
3416
  }
3421
3417
  l724:; goto l722;
3422
3418
  l723:; yypos= yypos723; yythunkpos= yythunkpos723;
3423
- } if (!yy_HtmlBlockCloseNoscript()) goto l721; goto l612;
3424
- l721:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenOl()) goto l727;
3419
+ } if (!yy_HtmlBlockCloseP()) goto l721; goto l612;
3420
+ l721:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenPre()) goto l727;
3425
3421
  l728:;
3426
3422
  { int yypos729= yypos, yythunkpos729= yythunkpos;
3427
3423
  { int yypos730= yypos, yythunkpos730= yythunkpos; if (!yy_HtmlBlockInTags()) goto l731; goto l730;
3428
3424
  l731:; yypos= yypos730; yythunkpos= yythunkpos730;
3429
- { int yypos732= yypos, yythunkpos732= yythunkpos; if (!yy_HtmlBlockCloseOl()) goto l732; goto l729;
3425
+ { int yypos732= yypos, yythunkpos732= yythunkpos; if (!yy_HtmlBlockClosePre()) goto l732; goto l729;
3430
3426
  l732:; yypos= yypos732; yythunkpos= yythunkpos732;
3431
3427
  } if (!yymatchDot()) goto l729;
3432
3428
  }
3433
3429
  l730:; goto l728;
3434
3430
  l729:; yypos= yypos729; yythunkpos= yythunkpos729;
3435
- } if (!yy_HtmlBlockCloseOl()) goto l727; goto l612;
3436
- l727:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenP()) goto l733;
3431
+ } if (!yy_HtmlBlockClosePre()) goto l727; goto l612;
3432
+ l727:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTable()) goto l733;
3437
3433
  l734:;
3438
3434
  { int yypos735= yypos, yythunkpos735= yythunkpos;
3439
3435
  { int yypos736= yypos, yythunkpos736= yythunkpos; if (!yy_HtmlBlockInTags()) goto l737; goto l736;
3440
3436
  l737:; yypos= yypos736; yythunkpos= yythunkpos736;
3441
- { int yypos738= yypos, yythunkpos738= yythunkpos; if (!yy_HtmlBlockCloseP()) goto l738; goto l735;
3437
+ { int yypos738= yypos, yythunkpos738= yythunkpos; if (!yy_HtmlBlockCloseTable()) goto l738; goto l735;
3442
3438
  l738:; yypos= yypos738; yythunkpos= yythunkpos738;
3443
3439
  } if (!yymatchDot()) goto l735;
3444
3440
  }
3445
3441
  l736:; goto l734;
3446
3442
  l735:; yypos= yypos735; yythunkpos= yythunkpos735;
3447
- } if (!yy_HtmlBlockCloseP()) goto l733; goto l612;
3448
- l733:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenPre()) goto l739;
3443
+ } if (!yy_HtmlBlockCloseTable()) goto l733; goto l612;
3444
+ l733:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenUl()) goto l739;
3449
3445
  l740:;
3450
3446
  { int yypos741= yypos, yythunkpos741= yythunkpos;
3451
3447
  { int yypos742= yypos, yythunkpos742= yythunkpos; if (!yy_HtmlBlockInTags()) goto l743; goto l742;
3452
3448
  l743:; yypos= yypos742; yythunkpos= yythunkpos742;
3453
- { int yypos744= yypos, yythunkpos744= yythunkpos; if (!yy_HtmlBlockClosePre()) goto l744; goto l741;
3449
+ { int yypos744= yypos, yythunkpos744= yythunkpos; if (!yy_HtmlBlockCloseUl()) goto l744; goto l741;
3454
3450
  l744:; yypos= yypos744; yythunkpos= yythunkpos744;
3455
3451
  } if (!yymatchDot()) goto l741;
3456
3452
  }
3457
3453
  l742:; goto l740;
3458
3454
  l741:; yypos= yypos741; yythunkpos= yythunkpos741;
3459
- } if (!yy_HtmlBlockClosePre()) goto l739; goto l612;
3460
- l739:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTable()) goto l745;
3455
+ } if (!yy_HtmlBlockCloseUl()) goto l739; goto l612;
3456
+ l739:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenDd()) goto l745;
3461
3457
  l746:;
3462
3458
  { int yypos747= yypos, yythunkpos747= yythunkpos;
3463
3459
  { int yypos748= yypos, yythunkpos748= yythunkpos; if (!yy_HtmlBlockInTags()) goto l749; goto l748;
3464
3460
  l749:; yypos= yypos748; yythunkpos= yythunkpos748;
3465
- { int yypos750= yypos, yythunkpos750= yythunkpos; if (!yy_HtmlBlockCloseTable()) goto l750; goto l747;
3461
+ { int yypos750= yypos, yythunkpos750= yythunkpos; if (!yy_HtmlBlockCloseDd()) goto l750; goto l747;
3466
3462
  l750:; yypos= yypos750; yythunkpos= yythunkpos750;
3467
3463
  } if (!yymatchDot()) goto l747;
3468
3464
  }
3469
3465
  l748:; goto l746;
3470
3466
  l747:; yypos= yypos747; yythunkpos= yythunkpos747;
3471
- } if (!yy_HtmlBlockCloseTable()) goto l745; goto l612;
3472
- l745:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenUl()) goto l751;
3467
+ } if (!yy_HtmlBlockCloseDd()) goto l745; goto l612;
3468
+ l745:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenDt()) goto l751;
3473
3469
  l752:;
3474
3470
  { int yypos753= yypos, yythunkpos753= yythunkpos;
3475
3471
  { int yypos754= yypos, yythunkpos754= yythunkpos; if (!yy_HtmlBlockInTags()) goto l755; goto l754;
3476
3472
  l755:; yypos= yypos754; yythunkpos= yythunkpos754;
3477
- { int yypos756= yypos, yythunkpos756= yythunkpos; if (!yy_HtmlBlockCloseUl()) goto l756; goto l753;
3473
+ { int yypos756= yypos, yythunkpos756= yythunkpos; if (!yy_HtmlBlockCloseDt()) goto l756; goto l753;
3478
3474
  l756:; yypos= yypos756; yythunkpos= yythunkpos756;
3479
3475
  } if (!yymatchDot()) goto l753;
3480
3476
  }
3481
3477
  l754:; goto l752;
3482
3478
  l753:; yypos= yypos753; yythunkpos= yythunkpos753;
3483
- } if (!yy_HtmlBlockCloseUl()) goto l751; goto l612;
3484
- l751:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenDd()) goto l757;
3479
+ } if (!yy_HtmlBlockCloseDt()) goto l751; goto l612;
3480
+ l751:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenFrameset()) goto l757;
3485
3481
  l758:;
3486
3482
  { int yypos759= yypos, yythunkpos759= yythunkpos;
3487
3483
  { int yypos760= yypos, yythunkpos760= yythunkpos; if (!yy_HtmlBlockInTags()) goto l761; goto l760;
3488
3484
  l761:; yypos= yypos760; yythunkpos= yythunkpos760;
3489
- { int yypos762= yypos, yythunkpos762= yythunkpos; if (!yy_HtmlBlockCloseDd()) goto l762; goto l759;
3485
+ { int yypos762= yypos, yythunkpos762= yythunkpos; if (!yy_HtmlBlockCloseFrameset()) goto l762; goto l759;
3490
3486
  l762:; yypos= yypos762; yythunkpos= yythunkpos762;
3491
3487
  } if (!yymatchDot()) goto l759;
3492
3488
  }
3493
3489
  l760:; goto l758;
3494
3490
  l759:; yypos= yypos759; yythunkpos= yythunkpos759;
3495
- } if (!yy_HtmlBlockCloseDd()) goto l757; goto l612;
3496
- l757:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenDt()) goto l763;
3491
+ } if (!yy_HtmlBlockCloseFrameset()) goto l757; goto l612;
3492
+ l757:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenLi()) goto l763;
3497
3493
  l764:;
3498
3494
  { int yypos765= yypos, yythunkpos765= yythunkpos;
3499
3495
  { int yypos766= yypos, yythunkpos766= yythunkpos; if (!yy_HtmlBlockInTags()) goto l767; goto l766;
3500
3496
  l767:; yypos= yypos766; yythunkpos= yythunkpos766;
3501
- { int yypos768= yypos, yythunkpos768= yythunkpos; if (!yy_HtmlBlockCloseDt()) goto l768; goto l765;
3497
+ { int yypos768= yypos, yythunkpos768= yythunkpos; if (!yy_HtmlBlockCloseLi()) goto l768; goto l765;
3502
3498
  l768:; yypos= yypos768; yythunkpos= yythunkpos768;
3503
3499
  } if (!yymatchDot()) goto l765;
3504
3500
  }
3505
3501
  l766:; goto l764;
3506
3502
  l765:; yypos= yypos765; yythunkpos= yythunkpos765;
3507
- } if (!yy_HtmlBlockCloseDt()) goto l763; goto l612;
3508
- l763:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenFrameset()) goto l769;
3503
+ } if (!yy_HtmlBlockCloseLi()) goto l763; goto l612;
3504
+ l763:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTbody()) goto l769;
3509
3505
  l770:;
3510
3506
  { int yypos771= yypos, yythunkpos771= yythunkpos;
3511
3507
  { int yypos772= yypos, yythunkpos772= yythunkpos; if (!yy_HtmlBlockInTags()) goto l773; goto l772;
3512
3508
  l773:; yypos= yypos772; yythunkpos= yythunkpos772;
3513
- { int yypos774= yypos, yythunkpos774= yythunkpos; if (!yy_HtmlBlockCloseFrameset()) goto l774; goto l771;
3509
+ { int yypos774= yypos, yythunkpos774= yythunkpos; if (!yy_HtmlBlockCloseTbody()) goto l774; goto l771;
3514
3510
  l774:; yypos= yypos774; yythunkpos= yythunkpos774;
3515
3511
  } if (!yymatchDot()) goto l771;
3516
3512
  }
3517
3513
  l772:; goto l770;
3518
3514
  l771:; yypos= yypos771; yythunkpos= yythunkpos771;
3519
- } if (!yy_HtmlBlockCloseFrameset()) goto l769; goto l612;
3520
- l769:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenLi()) goto l775;
3515
+ } if (!yy_HtmlBlockCloseTbody()) goto l769; goto l612;
3516
+ l769:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTd()) goto l775;
3521
3517
  l776:;
3522
3518
  { int yypos777= yypos, yythunkpos777= yythunkpos;
3523
3519
  { int yypos778= yypos, yythunkpos778= yythunkpos; if (!yy_HtmlBlockInTags()) goto l779; goto l778;
3524
3520
  l779:; yypos= yypos778; yythunkpos= yythunkpos778;
3525
- { int yypos780= yypos, yythunkpos780= yythunkpos; if (!yy_HtmlBlockCloseLi()) goto l780; goto l777;
3521
+ { int yypos780= yypos, yythunkpos780= yythunkpos; if (!yy_HtmlBlockCloseTd()) goto l780; goto l777;
3526
3522
  l780:; yypos= yypos780; yythunkpos= yythunkpos780;
3527
3523
  } if (!yymatchDot()) goto l777;
3528
3524
  }
3529
3525
  l778:; goto l776;
3530
3526
  l777:; yypos= yypos777; yythunkpos= yythunkpos777;
3531
- } if (!yy_HtmlBlockCloseLi()) goto l775; goto l612;
3532
- l775:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTbody()) goto l781;
3527
+ } if (!yy_HtmlBlockCloseTd()) goto l775; goto l612;
3528
+ l775:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTfoot()) goto l781;
3533
3529
  l782:;
3534
3530
  { int yypos783= yypos, yythunkpos783= yythunkpos;
3535
3531
  { int yypos784= yypos, yythunkpos784= yythunkpos; if (!yy_HtmlBlockInTags()) goto l785; goto l784;
3536
3532
  l785:; yypos= yypos784; yythunkpos= yythunkpos784;
3537
- { int yypos786= yypos, yythunkpos786= yythunkpos; if (!yy_HtmlBlockCloseTbody()) goto l786; goto l783;
3533
+ { int yypos786= yypos, yythunkpos786= yythunkpos; if (!yy_HtmlBlockCloseTfoot()) goto l786; goto l783;
3538
3534
  l786:; yypos= yypos786; yythunkpos= yythunkpos786;
3539
3535
  } if (!yymatchDot()) goto l783;
3540
3536
  }
3541
3537
  l784:; goto l782;
3542
3538
  l783:; yypos= yypos783; yythunkpos= yythunkpos783;
3543
- } if (!yy_HtmlBlockCloseTbody()) goto l781; goto l612;
3544
- l781:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTd()) goto l787;
3539
+ } if (!yy_HtmlBlockCloseTfoot()) goto l781; goto l612;
3540
+ l781:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTh()) goto l787;
3545
3541
  l788:;
3546
3542
  { int yypos789= yypos, yythunkpos789= yythunkpos;
3547
3543
  { int yypos790= yypos, yythunkpos790= yythunkpos; if (!yy_HtmlBlockInTags()) goto l791; goto l790;
3548
3544
  l791:; yypos= yypos790; yythunkpos= yythunkpos790;
3549
- { int yypos792= yypos, yythunkpos792= yythunkpos; if (!yy_HtmlBlockCloseTd()) goto l792; goto l789;
3545
+ { int yypos792= yypos, yythunkpos792= yythunkpos; if (!yy_HtmlBlockCloseTh()) goto l792; goto l789;
3550
3546
  l792:; yypos= yypos792; yythunkpos= yythunkpos792;
3551
3547
  } if (!yymatchDot()) goto l789;
3552
3548
  }
3553
3549
  l790:; goto l788;
3554
3550
  l789:; yypos= yypos789; yythunkpos= yythunkpos789;
3555
- } if (!yy_HtmlBlockCloseTd()) goto l787; goto l612;
3556
- l787:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTfoot()) goto l793;
3551
+ } if (!yy_HtmlBlockCloseTh()) goto l787; goto l612;
3552
+ l787:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenThead()) goto l793;
3557
3553
  l794:;
3558
3554
  { int yypos795= yypos, yythunkpos795= yythunkpos;
3559
3555
  { int yypos796= yypos, yythunkpos796= yythunkpos; if (!yy_HtmlBlockInTags()) goto l797; goto l796;
3560
3556
  l797:; yypos= yypos796; yythunkpos= yythunkpos796;
3561
- { int yypos798= yypos, yythunkpos798= yythunkpos; if (!yy_HtmlBlockCloseTfoot()) goto l798; goto l795;
3557
+ { int yypos798= yypos, yythunkpos798= yythunkpos; if (!yy_HtmlBlockCloseThead()) goto l798; goto l795;
3562
3558
  l798:; yypos= yypos798; yythunkpos= yythunkpos798;
3563
3559
  } if (!yymatchDot()) goto l795;
3564
3560
  }
3565
3561
  l796:; goto l794;
3566
3562
  l795:; yypos= yypos795; yythunkpos= yythunkpos795;
3567
- } if (!yy_HtmlBlockCloseTfoot()) goto l793; goto l612;
3568
- l793:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTh()) goto l799;
3563
+ } if (!yy_HtmlBlockCloseThead()) goto l793; goto l612;
3564
+ l793:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenTr()) goto l799;
3569
3565
  l800:;
3570
3566
  { int yypos801= yypos, yythunkpos801= yythunkpos;
3571
3567
  { int yypos802= yypos, yythunkpos802= yythunkpos; if (!yy_HtmlBlockInTags()) goto l803; goto l802;
3572
3568
  l803:; yypos= yypos802; yythunkpos= yythunkpos802;
3573
- { int yypos804= yypos, yythunkpos804= yythunkpos; if (!yy_HtmlBlockCloseTh()) goto l804; goto l801;
3569
+ { int yypos804= yypos, yythunkpos804= yythunkpos; if (!yy_HtmlBlockCloseTr()) goto l804; goto l801;
3574
3570
  l804:; yypos= yypos804; yythunkpos= yythunkpos804;
3575
3571
  } if (!yymatchDot()) goto l801;
3576
3572
  }
3577
3573
  l802:; goto l800;
3578
3574
  l801:; yypos= yypos801; yythunkpos= yythunkpos801;
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;
3575
+ } if (!yy_HtmlBlockCloseTr()) goto l799; goto l612;
3576
+ l799:; yypos= yypos612; yythunkpos= yythunkpos612; if (!yy_HtmlBlockOpenScript()) goto l611;
3577
+ l805:;
3578
+ { int yypos806= yypos, yythunkpos806= yythunkpos;
3579
+ { int yypos807= yypos, yythunkpos807= yythunkpos; if (!yy_HtmlBlockInTags()) goto l808; goto l807;
3580
+ l808:; yypos= yypos807; yythunkpos= yythunkpos807;
3581
+ { int yypos809= yypos, yythunkpos809= yythunkpos; if (!yy_HtmlBlockCloseScript()) goto l809; goto l806;
3582
+ l809:; yypos= yypos809; yythunkpos= yythunkpos809;
3583
+ } if (!yymatchDot()) goto l806;
3584
+ }
3585
+ l807:; goto l805;
3586
+ l806:; yypos= yypos806; yythunkpos= yythunkpos806;
3615
3587
  } if (!yy_HtmlBlockCloseScript()) goto l611;
3616
3588
  }
3617
3589
  l612:;
@@ -3623,1594 +3595,1534 @@ YY_RULE(int) yy_HtmlBlockInTags()
3623
3595
  }
3624
3596
  YY_RULE(int) yy_HtmlBlockCloseScript()
3625
3597
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3598
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseScript")); if (!yymatchChar('<')) goto l810; if (!yy_Spnl()) goto l810; if (!yymatchChar('/')) goto l810;
3599
+ { int yypos811= yypos, yythunkpos811= yythunkpos; if (!yymatchString("script")) goto l812; goto l811;
3600
+ l812:; yypos= yypos811; yythunkpos= yythunkpos811; if (!yymatchString("SCRIPT")) goto l810;
3629
3601
  }
3630
- l823:; if (!yy_Spnl()) goto l822; if (!yymatchChar('>')) goto l822;
3602
+ l811:; if (!yy_Spnl()) goto l810; if (!yymatchChar('>')) goto l810;
3631
3603
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseScript", yybuf+yypos));
3632
3604
  return 1;
3633
- l822:; yypos= yypos0; yythunkpos= yythunkpos0;
3605
+ l810:; yypos= yypos0; yythunkpos= yythunkpos0;
3634
3606
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseScript", yybuf+yypos));
3635
3607
  return 0;
3636
3608
  }
3637
3609
  YY_RULE(int) yy_HtmlBlockOpenScript()
3638
3610
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3611
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenScript")); if (!yymatchChar('<')) goto l813; if (!yy_Spnl()) goto l813;
3612
+ { int yypos814= yypos, yythunkpos814= yythunkpos; if (!yymatchString("script")) goto l815; goto l814;
3613
+ l815:; yypos= yypos814; yythunkpos= yythunkpos814; if (!yymatchString("SCRIPT")) goto l813;
3642
3614
  }
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;
3615
+ l814:; if (!yy_Spnl()) goto l813;
3616
+ l816:;
3617
+ { int yypos817= yypos, yythunkpos817= yythunkpos; if (!yy_HtmlAttribute()) goto l817; goto l816;
3618
+ l817:; yypos= yypos817; yythunkpos= yythunkpos817;
3619
+ } if (!yymatchChar('>')) goto l813;
3648
3620
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenScript", yybuf+yypos));
3649
3621
  return 1;
3650
- l825:; yypos= yypos0; yythunkpos= yythunkpos0;
3622
+ l813:; yypos= yypos0; yythunkpos= yythunkpos0;
3651
3623
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenScript", yybuf+yypos));
3652
3624
  return 0;
3653
3625
  }
3654
3626
  YY_RULE(int) yy_HtmlBlockCloseTr()
3655
3627
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3628
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseTr")); if (!yymatchChar('<')) goto l818; if (!yy_Spnl()) goto l818; if (!yymatchChar('/')) goto l818;
3629
+ { int yypos819= yypos, yythunkpos819= yythunkpos; if (!yymatchString("tr")) goto l820; goto l819;
3630
+ l820:; yypos= yypos819; yythunkpos= yythunkpos819; if (!yymatchString("TR")) goto l818;
3659
3631
  }
3660
- l831:; if (!yy_Spnl()) goto l830; if (!yymatchChar('>')) goto l830;
3632
+ l819:; if (!yy_Spnl()) goto l818; if (!yymatchChar('>')) goto l818;
3661
3633
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTr", yybuf+yypos));
3662
3634
  return 1;
3663
- l830:; yypos= yypos0; yythunkpos= yythunkpos0;
3635
+ l818:; yypos= yypos0; yythunkpos= yythunkpos0;
3664
3636
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTr", yybuf+yypos));
3665
3637
  return 0;
3666
3638
  }
3667
3639
  YY_RULE(int) yy_HtmlBlockOpenTr()
3668
3640
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3641
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenTr")); if (!yymatchChar('<')) goto l821; if (!yy_Spnl()) goto l821;
3642
+ { int yypos822= yypos, yythunkpos822= yythunkpos; if (!yymatchString("tr")) goto l823; goto l822;
3643
+ l823:; yypos= yypos822; yythunkpos= yythunkpos822; if (!yymatchString("TR")) goto l821;
3672
3644
  }
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;
3645
+ l822:; if (!yy_Spnl()) goto l821;
3646
+ l824:;
3647
+ { int yypos825= yypos, yythunkpos825= yythunkpos; if (!yy_HtmlAttribute()) goto l825; goto l824;
3648
+ l825:; yypos= yypos825; yythunkpos= yythunkpos825;
3649
+ } if (!yymatchChar('>')) goto l821;
3678
3650
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTr", yybuf+yypos));
3679
3651
  return 1;
3680
- l833:; yypos= yypos0; yythunkpos= yythunkpos0;
3652
+ l821:; yypos= yypos0; yythunkpos= yythunkpos0;
3681
3653
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTr", yybuf+yypos));
3682
3654
  return 0;
3683
3655
  }
3684
3656
  YY_RULE(int) yy_HtmlBlockCloseThead()
3685
3657
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3658
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseThead")); if (!yymatchChar('<')) goto l826; if (!yy_Spnl()) goto l826; if (!yymatchChar('/')) goto l826;
3659
+ { int yypos827= yypos, yythunkpos827= yythunkpos; if (!yymatchString("thead")) goto l828; goto l827;
3660
+ l828:; yypos= yypos827; yythunkpos= yythunkpos827; if (!yymatchString("THEAD")) goto l826;
3689
3661
  }
3690
- l839:; if (!yy_Spnl()) goto l838; if (!yymatchChar('>')) goto l838;
3662
+ l827:; if (!yy_Spnl()) goto l826; if (!yymatchChar('>')) goto l826;
3691
3663
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseThead", yybuf+yypos));
3692
3664
  return 1;
3693
- l838:; yypos= yypos0; yythunkpos= yythunkpos0;
3665
+ l826:; yypos= yypos0; yythunkpos= yythunkpos0;
3694
3666
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseThead", yybuf+yypos));
3695
3667
  return 0;
3696
3668
  }
3697
3669
  YY_RULE(int) yy_HtmlBlockOpenThead()
3698
3670
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3671
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenThead")); if (!yymatchChar('<')) goto l829; if (!yy_Spnl()) goto l829;
3672
+ { int yypos830= yypos, yythunkpos830= yythunkpos; if (!yymatchString("thead")) goto l831; goto l830;
3673
+ l831:; yypos= yypos830; yythunkpos= yythunkpos830; if (!yymatchString("THEAD")) goto l829;
3702
3674
  }
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;
3675
+ l830:; if (!yy_Spnl()) goto l829;
3676
+ l832:;
3677
+ { int yypos833= yypos, yythunkpos833= yythunkpos; if (!yy_HtmlAttribute()) goto l833; goto l832;
3678
+ l833:; yypos= yypos833; yythunkpos= yythunkpos833;
3679
+ } if (!yymatchChar('>')) goto l829;
3708
3680
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenThead", yybuf+yypos));
3709
3681
  return 1;
3710
- l841:; yypos= yypos0; yythunkpos= yythunkpos0;
3682
+ l829:; yypos= yypos0; yythunkpos= yythunkpos0;
3711
3683
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenThead", yybuf+yypos));
3712
3684
  return 0;
3713
3685
  }
3714
3686
  YY_RULE(int) yy_HtmlBlockCloseTh()
3715
3687
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3688
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseTh")); if (!yymatchChar('<')) goto l834; if (!yy_Spnl()) goto l834; if (!yymatchChar('/')) goto l834;
3689
+ { int yypos835= yypos, yythunkpos835= yythunkpos; if (!yymatchString("th")) goto l836; goto l835;
3690
+ l836:; yypos= yypos835; yythunkpos= yythunkpos835; if (!yymatchString("TH")) goto l834;
3719
3691
  }
3720
- l847:; if (!yy_Spnl()) goto l846; if (!yymatchChar('>')) goto l846;
3692
+ l835:; if (!yy_Spnl()) goto l834; if (!yymatchChar('>')) goto l834;
3721
3693
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTh", yybuf+yypos));
3722
3694
  return 1;
3723
- l846:; yypos= yypos0; yythunkpos= yythunkpos0;
3695
+ l834:; yypos= yypos0; yythunkpos= yythunkpos0;
3724
3696
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTh", yybuf+yypos));
3725
3697
  return 0;
3726
3698
  }
3727
3699
  YY_RULE(int) yy_HtmlBlockOpenTh()
3728
3700
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3701
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenTh")); if (!yymatchChar('<')) goto l837; if (!yy_Spnl()) goto l837;
3702
+ { int yypos838= yypos, yythunkpos838= yythunkpos; if (!yymatchString("th")) goto l839; goto l838;
3703
+ l839:; yypos= yypos838; yythunkpos= yythunkpos838; if (!yymatchString("TH")) goto l837;
3732
3704
  }
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;
3705
+ l838:; if (!yy_Spnl()) goto l837;
3706
+ l840:;
3707
+ { int yypos841= yypos, yythunkpos841= yythunkpos; if (!yy_HtmlAttribute()) goto l841; goto l840;
3708
+ l841:; yypos= yypos841; yythunkpos= yythunkpos841;
3709
+ } if (!yymatchChar('>')) goto l837;
3738
3710
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTh", yybuf+yypos));
3739
3711
  return 1;
3740
- l849:; yypos= yypos0; yythunkpos= yythunkpos0;
3712
+ l837:; yypos= yypos0; yythunkpos= yythunkpos0;
3741
3713
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTh", yybuf+yypos));
3742
3714
  return 0;
3743
3715
  }
3744
3716
  YY_RULE(int) yy_HtmlBlockCloseTfoot()
3745
3717
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3718
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseTfoot")); if (!yymatchChar('<')) goto l842; if (!yy_Spnl()) goto l842; if (!yymatchChar('/')) goto l842;
3719
+ { int yypos843= yypos, yythunkpos843= yythunkpos; if (!yymatchString("tfoot")) goto l844; goto l843;
3720
+ l844:; yypos= yypos843; yythunkpos= yythunkpos843; if (!yymatchString("TFOOT")) goto l842;
3749
3721
  }
3750
- l855:; if (!yy_Spnl()) goto l854; if (!yymatchChar('>')) goto l854;
3722
+ l843:; if (!yy_Spnl()) goto l842; if (!yymatchChar('>')) goto l842;
3751
3723
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTfoot", yybuf+yypos));
3752
3724
  return 1;
3753
- l854:; yypos= yypos0; yythunkpos= yythunkpos0;
3725
+ l842:; yypos= yypos0; yythunkpos= yythunkpos0;
3754
3726
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTfoot", yybuf+yypos));
3755
3727
  return 0;
3756
3728
  }
3757
3729
  YY_RULE(int) yy_HtmlBlockOpenTfoot()
3758
3730
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3731
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenTfoot")); if (!yymatchChar('<')) goto l845; if (!yy_Spnl()) goto l845;
3732
+ { int yypos846= yypos, yythunkpos846= yythunkpos; if (!yymatchString("tfoot")) goto l847; goto l846;
3733
+ l847:; yypos= yypos846; yythunkpos= yythunkpos846; if (!yymatchString("TFOOT")) goto l845;
3762
3734
  }
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;
3735
+ l846:; if (!yy_Spnl()) goto l845;
3736
+ l848:;
3737
+ { int yypos849= yypos, yythunkpos849= yythunkpos; if (!yy_HtmlAttribute()) goto l849; goto l848;
3738
+ l849:; yypos= yypos849; yythunkpos= yythunkpos849;
3739
+ } if (!yymatchChar('>')) goto l845;
3768
3740
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTfoot", yybuf+yypos));
3769
3741
  return 1;
3770
- l857:; yypos= yypos0; yythunkpos= yythunkpos0;
3742
+ l845:; yypos= yypos0; yythunkpos= yythunkpos0;
3771
3743
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTfoot", yybuf+yypos));
3772
3744
  return 0;
3773
3745
  }
3774
3746
  YY_RULE(int) yy_HtmlBlockCloseTd()
3775
3747
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3748
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseTd")); if (!yymatchChar('<')) goto l850; if (!yy_Spnl()) goto l850; if (!yymatchChar('/')) goto l850;
3749
+ { int yypos851= yypos, yythunkpos851= yythunkpos; if (!yymatchString("td")) goto l852; goto l851;
3750
+ l852:; yypos= yypos851; yythunkpos= yythunkpos851; if (!yymatchString("TD")) goto l850;
3779
3751
  }
3780
- l863:; if (!yy_Spnl()) goto l862; if (!yymatchChar('>')) goto l862;
3752
+ l851:; if (!yy_Spnl()) goto l850; if (!yymatchChar('>')) goto l850;
3781
3753
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTd", yybuf+yypos));
3782
3754
  return 1;
3783
- l862:; yypos= yypos0; yythunkpos= yythunkpos0;
3755
+ l850:; yypos= yypos0; yythunkpos= yythunkpos0;
3784
3756
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTd", yybuf+yypos));
3785
3757
  return 0;
3786
3758
  }
3787
3759
  YY_RULE(int) yy_HtmlBlockOpenTd()
3788
3760
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3761
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenTd")); if (!yymatchChar('<')) goto l853; if (!yy_Spnl()) goto l853;
3762
+ { int yypos854= yypos, yythunkpos854= yythunkpos; if (!yymatchString("td")) goto l855; goto l854;
3763
+ l855:; yypos= yypos854; yythunkpos= yythunkpos854; if (!yymatchString("TD")) goto l853;
3792
3764
  }
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;
3765
+ l854:; if (!yy_Spnl()) goto l853;
3766
+ l856:;
3767
+ { int yypos857= yypos, yythunkpos857= yythunkpos; if (!yy_HtmlAttribute()) goto l857; goto l856;
3768
+ l857:; yypos= yypos857; yythunkpos= yythunkpos857;
3769
+ } if (!yymatchChar('>')) goto l853;
3798
3770
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTd", yybuf+yypos));
3799
3771
  return 1;
3800
- l865:; yypos= yypos0; yythunkpos= yythunkpos0;
3772
+ l853:; yypos= yypos0; yythunkpos= yythunkpos0;
3801
3773
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTd", yybuf+yypos));
3802
3774
  return 0;
3803
3775
  }
3804
3776
  YY_RULE(int) yy_HtmlBlockCloseTbody()
3805
3777
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3778
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseTbody")); if (!yymatchChar('<')) goto l858; if (!yy_Spnl()) goto l858; if (!yymatchChar('/')) goto l858;
3779
+ { int yypos859= yypos, yythunkpos859= yythunkpos; if (!yymatchString("tbody")) goto l860; goto l859;
3780
+ l860:; yypos= yypos859; yythunkpos= yythunkpos859; if (!yymatchString("TBODY")) goto l858;
3809
3781
  }
3810
- l871:; if (!yy_Spnl()) goto l870; if (!yymatchChar('>')) goto l870;
3782
+ l859:; if (!yy_Spnl()) goto l858; if (!yymatchChar('>')) goto l858;
3811
3783
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTbody", yybuf+yypos));
3812
3784
  return 1;
3813
- l870:; yypos= yypos0; yythunkpos= yythunkpos0;
3785
+ l858:; yypos= yypos0; yythunkpos= yythunkpos0;
3814
3786
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTbody", yybuf+yypos));
3815
3787
  return 0;
3816
3788
  }
3817
3789
  YY_RULE(int) yy_HtmlBlockOpenTbody()
3818
3790
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3791
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenTbody")); if (!yymatchChar('<')) goto l861; if (!yy_Spnl()) goto l861;
3792
+ { int yypos862= yypos, yythunkpos862= yythunkpos; if (!yymatchString("tbody")) goto l863; goto l862;
3793
+ l863:; yypos= yypos862; yythunkpos= yythunkpos862; if (!yymatchString("TBODY")) goto l861;
3822
3794
  }
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;
3795
+ l862:; if (!yy_Spnl()) goto l861;
3796
+ l864:;
3797
+ { int yypos865= yypos, yythunkpos865= yythunkpos; if (!yy_HtmlAttribute()) goto l865; goto l864;
3798
+ l865:; yypos= yypos865; yythunkpos= yythunkpos865;
3799
+ } if (!yymatchChar('>')) goto l861;
3828
3800
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTbody", yybuf+yypos));
3829
3801
  return 1;
3830
- l873:; yypos= yypos0; yythunkpos= yythunkpos0;
3802
+ l861:; yypos= yypos0; yythunkpos= yythunkpos0;
3831
3803
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTbody", yybuf+yypos));
3832
3804
  return 0;
3833
3805
  }
3834
3806
  YY_RULE(int) yy_HtmlBlockCloseLi()
3835
3807
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3808
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseLi")); if (!yymatchChar('<')) goto l866; if (!yy_Spnl()) goto l866; if (!yymatchChar('/')) goto l866;
3809
+ { int yypos867= yypos, yythunkpos867= yythunkpos; if (!yymatchString("li")) goto l868; goto l867;
3810
+ l868:; yypos= yypos867; yythunkpos= yythunkpos867; if (!yymatchString("LI")) goto l866;
3839
3811
  }
3840
- l879:; if (!yy_Spnl()) goto l878; if (!yymatchChar('>')) goto l878;
3812
+ l867:; if (!yy_Spnl()) goto l866; if (!yymatchChar('>')) goto l866;
3841
3813
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseLi", yybuf+yypos));
3842
3814
  return 1;
3843
- l878:; yypos= yypos0; yythunkpos= yythunkpos0;
3815
+ l866:; yypos= yypos0; yythunkpos= yythunkpos0;
3844
3816
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseLi", yybuf+yypos));
3845
3817
  return 0;
3846
3818
  }
3847
3819
  YY_RULE(int) yy_HtmlBlockOpenLi()
3848
3820
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3821
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenLi")); if (!yymatchChar('<')) goto l869; if (!yy_Spnl()) goto l869;
3822
+ { int yypos870= yypos, yythunkpos870= yythunkpos; if (!yymatchString("li")) goto l871; goto l870;
3823
+ l871:; yypos= yypos870; yythunkpos= yythunkpos870; if (!yymatchString("LI")) goto l869;
3852
3824
  }
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;
3825
+ l870:; if (!yy_Spnl()) goto l869;
3826
+ l872:;
3827
+ { int yypos873= yypos, yythunkpos873= yythunkpos; if (!yy_HtmlAttribute()) goto l873; goto l872;
3828
+ l873:; yypos= yypos873; yythunkpos= yythunkpos873;
3829
+ } if (!yymatchChar('>')) goto l869;
3858
3830
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenLi", yybuf+yypos));
3859
3831
  return 1;
3860
- l881:; yypos= yypos0; yythunkpos= yythunkpos0;
3832
+ l869:; yypos= yypos0; yythunkpos= yythunkpos0;
3861
3833
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenLi", yybuf+yypos));
3862
3834
  return 0;
3863
3835
  }
3864
3836
  YY_RULE(int) yy_HtmlBlockCloseFrameset()
3865
3837
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3838
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseFrameset")); if (!yymatchChar('<')) goto l874; if (!yy_Spnl()) goto l874; if (!yymatchChar('/')) goto l874;
3839
+ { int yypos875= yypos, yythunkpos875= yythunkpos; if (!yymatchString("frameset")) goto l876; goto l875;
3840
+ l876:; yypos= yypos875; yythunkpos= yythunkpos875; if (!yymatchString("FRAMESET")) goto l874;
3869
3841
  }
3870
- l887:; if (!yy_Spnl()) goto l886; if (!yymatchChar('>')) goto l886;
3842
+ l875:; if (!yy_Spnl()) goto l874; if (!yymatchChar('>')) goto l874;
3871
3843
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseFrameset", yybuf+yypos));
3872
3844
  return 1;
3873
- l886:; yypos= yypos0; yythunkpos= yythunkpos0;
3845
+ l874:; yypos= yypos0; yythunkpos= yythunkpos0;
3874
3846
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseFrameset", yybuf+yypos));
3875
3847
  return 0;
3876
3848
  }
3877
3849
  YY_RULE(int) yy_HtmlBlockOpenFrameset()
3878
3850
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3851
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenFrameset")); if (!yymatchChar('<')) goto l877; if (!yy_Spnl()) goto l877;
3852
+ { int yypos878= yypos, yythunkpos878= yythunkpos; if (!yymatchString("frameset")) goto l879; goto l878;
3853
+ l879:; yypos= yypos878; yythunkpos= yythunkpos878; if (!yymatchString("FRAMESET")) goto l877;
3882
3854
  }
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;
3855
+ l878:; if (!yy_Spnl()) goto l877;
3856
+ l880:;
3857
+ { int yypos881= yypos, yythunkpos881= yythunkpos; if (!yy_HtmlAttribute()) goto l881; goto l880;
3858
+ l881:; yypos= yypos881; yythunkpos= yythunkpos881;
3859
+ } if (!yymatchChar('>')) goto l877;
3888
3860
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenFrameset", yybuf+yypos));
3889
3861
  return 1;
3890
- l889:; yypos= yypos0; yythunkpos= yythunkpos0;
3862
+ l877:; yypos= yypos0; yythunkpos= yythunkpos0;
3891
3863
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenFrameset", yybuf+yypos));
3892
3864
  return 0;
3893
3865
  }
3894
3866
  YY_RULE(int) yy_HtmlBlockCloseDt()
3895
3867
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3868
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseDt")); if (!yymatchChar('<')) goto l882; if (!yy_Spnl()) goto l882; if (!yymatchChar('/')) goto l882;
3869
+ { int yypos883= yypos, yythunkpos883= yythunkpos; if (!yymatchString("dt")) goto l884; goto l883;
3870
+ l884:; yypos= yypos883; yythunkpos= yythunkpos883; if (!yymatchString("DT")) goto l882;
3899
3871
  }
3900
- l895:; if (!yy_Spnl()) goto l894; if (!yymatchChar('>')) goto l894;
3872
+ l883:; if (!yy_Spnl()) goto l882; if (!yymatchChar('>')) goto l882;
3901
3873
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDt", yybuf+yypos));
3902
3874
  return 1;
3903
- l894:; yypos= yypos0; yythunkpos= yythunkpos0;
3875
+ l882:; yypos= yypos0; yythunkpos= yythunkpos0;
3904
3876
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDt", yybuf+yypos));
3905
3877
  return 0;
3906
3878
  }
3907
3879
  YY_RULE(int) yy_HtmlBlockOpenDt()
3908
3880
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3881
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenDt")); if (!yymatchChar('<')) goto l885; if (!yy_Spnl()) goto l885;
3882
+ { int yypos886= yypos, yythunkpos886= yythunkpos; if (!yymatchString("dt")) goto l887; goto l886;
3883
+ l887:; yypos= yypos886; yythunkpos= yythunkpos886; if (!yymatchString("DT")) goto l885;
3912
3884
  }
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;
3885
+ l886:; if (!yy_Spnl()) goto l885;
3886
+ l888:;
3887
+ { int yypos889= yypos, yythunkpos889= yythunkpos; if (!yy_HtmlAttribute()) goto l889; goto l888;
3888
+ l889:; yypos= yypos889; yythunkpos= yythunkpos889;
3889
+ } if (!yymatchChar('>')) goto l885;
3918
3890
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDt", yybuf+yypos));
3919
3891
  return 1;
3920
- l897:; yypos= yypos0; yythunkpos= yythunkpos0;
3892
+ l885:; yypos= yypos0; yythunkpos= yythunkpos0;
3921
3893
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDt", yybuf+yypos));
3922
3894
  return 0;
3923
3895
  }
3924
3896
  YY_RULE(int) yy_HtmlBlockCloseDd()
3925
3897
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3898
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseDd")); if (!yymatchChar('<')) goto l890; if (!yy_Spnl()) goto l890; if (!yymatchChar('/')) goto l890;
3899
+ { int yypos891= yypos, yythunkpos891= yythunkpos; if (!yymatchString("dd")) goto l892; goto l891;
3900
+ l892:; yypos= yypos891; yythunkpos= yythunkpos891; if (!yymatchString("DD")) goto l890;
3929
3901
  }
3930
- l903:; if (!yy_Spnl()) goto l902; if (!yymatchChar('>')) goto l902;
3902
+ l891:; if (!yy_Spnl()) goto l890; if (!yymatchChar('>')) goto l890;
3931
3903
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDd", yybuf+yypos));
3932
3904
  return 1;
3933
- l902:; yypos= yypos0; yythunkpos= yythunkpos0;
3905
+ l890:; yypos= yypos0; yythunkpos= yythunkpos0;
3934
3906
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDd", yybuf+yypos));
3935
3907
  return 0;
3936
3908
  }
3937
3909
  YY_RULE(int) yy_HtmlBlockOpenDd()
3938
3910
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3911
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenDd")); if (!yymatchChar('<')) goto l893; if (!yy_Spnl()) goto l893;
3912
+ { int yypos894= yypos, yythunkpos894= yythunkpos; if (!yymatchString("dd")) goto l895; goto l894;
3913
+ l895:; yypos= yypos894; yythunkpos= yythunkpos894; if (!yymatchString("DD")) goto l893;
3942
3914
  }
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;
3915
+ l894:; if (!yy_Spnl()) goto l893;
3916
+ l896:;
3917
+ { int yypos897= yypos, yythunkpos897= yythunkpos; if (!yy_HtmlAttribute()) goto l897; goto l896;
3918
+ l897:; yypos= yypos897; yythunkpos= yythunkpos897;
3919
+ } if (!yymatchChar('>')) goto l893;
3948
3920
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDd", yybuf+yypos));
3949
3921
  return 1;
3950
- l905:; yypos= yypos0; yythunkpos= yythunkpos0;
3922
+ l893:; yypos= yypos0; yythunkpos= yythunkpos0;
3951
3923
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDd", yybuf+yypos));
3952
3924
  return 0;
3953
3925
  }
3954
3926
  YY_RULE(int) yy_HtmlBlockCloseUl()
3955
3927
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3928
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseUl")); if (!yymatchChar('<')) goto l898; if (!yy_Spnl()) goto l898; if (!yymatchChar('/')) goto l898;
3929
+ { int yypos899= yypos, yythunkpos899= yythunkpos; if (!yymatchString("ul")) goto l900; goto l899;
3930
+ l900:; yypos= yypos899; yythunkpos= yythunkpos899; if (!yymatchString("UL")) goto l898;
3959
3931
  }
3960
- l911:; if (!yy_Spnl()) goto l910; if (!yymatchChar('>')) goto l910;
3932
+ l899:; if (!yy_Spnl()) goto l898; if (!yymatchChar('>')) goto l898;
3961
3933
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseUl", yybuf+yypos));
3962
3934
  return 1;
3963
- l910:; yypos= yypos0; yythunkpos= yythunkpos0;
3935
+ l898:; yypos= yypos0; yythunkpos= yythunkpos0;
3964
3936
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseUl", yybuf+yypos));
3965
3937
  return 0;
3966
3938
  }
3967
3939
  YY_RULE(int) yy_HtmlBlockOpenUl()
3968
3940
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3941
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenUl")); if (!yymatchChar('<')) goto l901; if (!yy_Spnl()) goto l901;
3942
+ { int yypos902= yypos, yythunkpos902= yythunkpos; if (!yymatchString("ul")) goto l903; goto l902;
3943
+ l903:; yypos= yypos902; yythunkpos= yythunkpos902; if (!yymatchString("UL")) goto l901;
3972
3944
  }
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;
3945
+ l902:; if (!yy_Spnl()) goto l901;
3946
+ l904:;
3947
+ { int yypos905= yypos, yythunkpos905= yythunkpos; if (!yy_HtmlAttribute()) goto l905; goto l904;
3948
+ l905:; yypos= yypos905; yythunkpos= yythunkpos905;
3949
+ } if (!yymatchChar('>')) goto l901;
3978
3950
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenUl", yybuf+yypos));
3979
3951
  return 1;
3980
- l913:; yypos= yypos0; yythunkpos= yythunkpos0;
3952
+ l901:; yypos= yypos0; yythunkpos= yythunkpos0;
3981
3953
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenUl", yybuf+yypos));
3982
3954
  return 0;
3983
3955
  }
3984
3956
  YY_RULE(int) yy_HtmlBlockCloseTable()
3985
3957
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3958
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseTable")); if (!yymatchChar('<')) goto l906; if (!yy_Spnl()) goto l906; if (!yymatchChar('/')) goto l906;
3959
+ { int yypos907= yypos, yythunkpos907= yythunkpos; if (!yymatchString("table")) goto l908; goto l907;
3960
+ l908:; yypos= yypos907; yythunkpos= yythunkpos907; if (!yymatchString("TABLE")) goto l906;
3989
3961
  }
3990
- l919:; if (!yy_Spnl()) goto l918; if (!yymatchChar('>')) goto l918;
3962
+ l907:; if (!yy_Spnl()) goto l906; if (!yymatchChar('>')) goto l906;
3991
3963
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTable", yybuf+yypos));
3992
3964
  return 1;
3993
- l918:; yypos= yypos0; yythunkpos= yythunkpos0;
3965
+ l906:; yypos= yypos0; yythunkpos= yythunkpos0;
3994
3966
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTable", yybuf+yypos));
3995
3967
  return 0;
3996
3968
  }
3997
3969
  YY_RULE(int) yy_HtmlBlockOpenTable()
3998
3970
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3971
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenTable")); if (!yymatchChar('<')) goto l909; if (!yy_Spnl()) goto l909;
3972
+ { int yypos910= yypos, yythunkpos910= yythunkpos; if (!yymatchString("table")) goto l911; goto l910;
3973
+ l911:; yypos= yypos910; yythunkpos= yythunkpos910; if (!yymatchString("TABLE")) goto l909;
4002
3974
  }
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;
3975
+ l910:; if (!yy_Spnl()) goto l909;
3976
+ l912:;
3977
+ { int yypos913= yypos, yythunkpos913= yythunkpos; if (!yy_HtmlAttribute()) goto l913; goto l912;
3978
+ l913:; yypos= yypos913; yythunkpos= yythunkpos913;
3979
+ } if (!yymatchChar('>')) goto l909;
4008
3980
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTable", yybuf+yypos));
4009
3981
  return 1;
4010
- l921:; yypos= yypos0; yythunkpos= yythunkpos0;
3982
+ l909:; yypos= yypos0; yythunkpos= yythunkpos0;
4011
3983
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTable", yybuf+yypos));
4012
3984
  return 0;
4013
3985
  }
4014
3986
  YY_RULE(int) yy_HtmlBlockClosePre()
4015
3987
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
3988
+ yyprintf((stderr, "%s\n", "HtmlBlockClosePre")); if (!yymatchChar('<')) goto l914; if (!yy_Spnl()) goto l914; if (!yymatchChar('/')) goto l914;
3989
+ { int yypos915= yypos, yythunkpos915= yythunkpos; if (!yymatchString("pre")) goto l916; goto l915;
3990
+ l916:; yypos= yypos915; yythunkpos= yythunkpos915; if (!yymatchString("PRE")) goto l914;
4019
3991
  }
4020
- l927:; if (!yy_Spnl()) goto l926; if (!yymatchChar('>')) goto l926;
3992
+ l915:; if (!yy_Spnl()) goto l914; if (!yymatchChar('>')) goto l914;
4021
3993
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockClosePre", yybuf+yypos));
4022
3994
  return 1;
4023
- l926:; yypos= yypos0; yythunkpos= yythunkpos0;
3995
+ l914:; yypos= yypos0; yythunkpos= yythunkpos0;
4024
3996
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockClosePre", yybuf+yypos));
4025
3997
  return 0;
4026
3998
  }
4027
3999
  YY_RULE(int) yy_HtmlBlockOpenPre()
4028
4000
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4001
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenPre")); if (!yymatchChar('<')) goto l917; if (!yy_Spnl()) goto l917;
4002
+ { int yypos918= yypos, yythunkpos918= yythunkpos; if (!yymatchString("pre")) goto l919; goto l918;
4003
+ l919:; yypos= yypos918; yythunkpos= yythunkpos918; if (!yymatchString("PRE")) goto l917;
4032
4004
  }
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;
4005
+ l918:; if (!yy_Spnl()) goto l917;
4006
+ l920:;
4007
+ { int yypos921= yypos, yythunkpos921= yythunkpos; if (!yy_HtmlAttribute()) goto l921; goto l920;
4008
+ l921:; yypos= yypos921; yythunkpos= yythunkpos921;
4009
+ } if (!yymatchChar('>')) goto l917;
4038
4010
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenPre", yybuf+yypos));
4039
4011
  return 1;
4040
- l929:; yypos= yypos0; yythunkpos= yythunkpos0;
4012
+ l917:; yypos= yypos0; yythunkpos= yythunkpos0;
4041
4013
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenPre", yybuf+yypos));
4042
4014
  return 0;
4043
4015
  }
4044
4016
  YY_RULE(int) yy_HtmlBlockCloseP()
4045
4017
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4018
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseP")); if (!yymatchChar('<')) goto l922; if (!yy_Spnl()) goto l922; if (!yymatchChar('/')) goto l922;
4019
+ { int yypos923= yypos, yythunkpos923= yythunkpos; if (!yymatchChar('p')) goto l924; goto l923;
4020
+ l924:; yypos= yypos923; yythunkpos= yythunkpos923; if (!yymatchChar('P')) goto l922;
4049
4021
  }
4050
- l935:; if (!yy_Spnl()) goto l934; if (!yymatchChar('>')) goto l934;
4022
+ l923:; if (!yy_Spnl()) goto l922; if (!yymatchChar('>')) goto l922;
4051
4023
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseP", yybuf+yypos));
4052
4024
  return 1;
4053
- l934:; yypos= yypos0; yythunkpos= yythunkpos0;
4025
+ l922:; yypos= yypos0; yythunkpos= yythunkpos0;
4054
4026
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseP", yybuf+yypos));
4055
4027
  return 0;
4056
4028
  }
4057
4029
  YY_RULE(int) yy_HtmlBlockOpenP()
4058
4030
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4031
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenP")); if (!yymatchChar('<')) goto l925; if (!yy_Spnl()) goto l925;
4032
+ { int yypos926= yypos, yythunkpos926= yythunkpos; if (!yymatchChar('p')) goto l927; goto l926;
4033
+ l927:; yypos= yypos926; yythunkpos= yythunkpos926; if (!yymatchChar('P')) goto l925;
4062
4034
  }
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;
4035
+ l926:; if (!yy_Spnl()) goto l925;
4036
+ l928:;
4037
+ { int yypos929= yypos, yythunkpos929= yythunkpos; if (!yy_HtmlAttribute()) goto l929; goto l928;
4038
+ l929:; yypos= yypos929; yythunkpos= yythunkpos929;
4039
+ } if (!yymatchChar('>')) goto l925;
4068
4040
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenP", yybuf+yypos));
4069
4041
  return 1;
4070
- l937:; yypos= yypos0; yythunkpos= yythunkpos0;
4042
+ l925:; yypos= yypos0; yythunkpos= yythunkpos0;
4071
4043
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenP", yybuf+yypos));
4072
4044
  return 0;
4073
4045
  }
4074
4046
  YY_RULE(int) yy_HtmlBlockCloseOl()
4075
4047
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4048
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseOl")); if (!yymatchChar('<')) goto l930; if (!yy_Spnl()) goto l930; if (!yymatchChar('/')) goto l930;
4049
+ { int yypos931= yypos, yythunkpos931= yythunkpos; if (!yymatchString("ol")) goto l932; goto l931;
4050
+ l932:; yypos= yypos931; yythunkpos= yythunkpos931; if (!yymatchString("OL")) goto l930;
4079
4051
  }
4080
- l943:; if (!yy_Spnl()) goto l942; if (!yymatchChar('>')) goto l942;
4052
+ l931:; if (!yy_Spnl()) goto l930; if (!yymatchChar('>')) goto l930;
4081
4053
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseOl", yybuf+yypos));
4082
4054
  return 1;
4083
- l942:; yypos= yypos0; yythunkpos= yythunkpos0;
4055
+ l930:; yypos= yypos0; yythunkpos= yythunkpos0;
4084
4056
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseOl", yybuf+yypos));
4085
4057
  return 0;
4086
4058
  }
4087
4059
  YY_RULE(int) yy_HtmlBlockOpenOl()
4088
4060
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4061
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenOl")); if (!yymatchChar('<')) goto l933; if (!yy_Spnl()) goto l933;
4062
+ { int yypos934= yypos, yythunkpos934= yythunkpos; if (!yymatchString("ol")) goto l935; goto l934;
4063
+ l935:; yypos= yypos934; yythunkpos= yythunkpos934; if (!yymatchString("OL")) goto l933;
4092
4064
  }
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;
4065
+ l934:; if (!yy_Spnl()) goto l933;
4066
+ l936:;
4067
+ { int yypos937= yypos, yythunkpos937= yythunkpos; if (!yy_HtmlAttribute()) goto l937; goto l936;
4068
+ l937:; yypos= yypos937; yythunkpos= yythunkpos937;
4069
+ } if (!yymatchChar('>')) goto l933;
4098
4070
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenOl", yybuf+yypos));
4099
4071
  return 1;
4100
- l945:; yypos= yypos0; yythunkpos= yythunkpos0;
4072
+ l933:; yypos= yypos0; yythunkpos= yythunkpos0;
4101
4073
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenOl", yybuf+yypos));
4102
4074
  return 0;
4103
4075
  }
4104
4076
  YY_RULE(int) yy_HtmlBlockCloseNoscript()
4105
4077
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4078
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseNoscript")); if (!yymatchChar('<')) goto l938; if (!yy_Spnl()) goto l938; if (!yymatchChar('/')) goto l938;
4079
+ { int yypos939= yypos, yythunkpos939= yythunkpos; if (!yymatchString("noscript")) goto l940; goto l939;
4080
+ l940:; yypos= yypos939; yythunkpos= yythunkpos939; if (!yymatchString("NOSCRIPT")) goto l938;
4109
4081
  }
4110
- l951:; if (!yy_Spnl()) goto l950; if (!yymatchChar('>')) goto l950;
4082
+ l939:; if (!yy_Spnl()) goto l938; if (!yymatchChar('>')) goto l938;
4111
4083
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseNoscript", yybuf+yypos));
4112
4084
  return 1;
4113
- l950:; yypos= yypos0; yythunkpos= yythunkpos0;
4085
+ l938:; yypos= yypos0; yythunkpos= yythunkpos0;
4114
4086
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseNoscript", yybuf+yypos));
4115
4087
  return 0;
4116
4088
  }
4117
4089
  YY_RULE(int) yy_HtmlBlockOpenNoscript()
4118
4090
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4091
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenNoscript")); if (!yymatchChar('<')) goto l941; if (!yy_Spnl()) goto l941;
4092
+ { int yypos942= yypos, yythunkpos942= yythunkpos; if (!yymatchString("noscript")) goto l943; goto l942;
4093
+ l943:; yypos= yypos942; yythunkpos= yythunkpos942; if (!yymatchString("NOSCRIPT")) goto l941;
4122
4094
  }
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;
4095
+ l942:; if (!yy_Spnl()) goto l941;
4096
+ l944:;
4097
+ { int yypos945= yypos, yythunkpos945= yythunkpos; if (!yy_HtmlAttribute()) goto l945; goto l944;
4098
+ l945:; yypos= yypos945; yythunkpos= yythunkpos945;
4099
+ } if (!yymatchChar('>')) goto l941;
4128
4100
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenNoscript", yybuf+yypos));
4129
4101
  return 1;
4130
- l953:; yypos= yypos0; yythunkpos= yythunkpos0;
4102
+ l941:; yypos= yypos0; yythunkpos= yythunkpos0;
4131
4103
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenNoscript", yybuf+yypos));
4132
4104
  return 0;
4133
4105
  }
4134
4106
  YY_RULE(int) yy_HtmlBlockCloseNoframes()
4135
4107
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4108
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseNoframes")); if (!yymatchChar('<')) goto l946; if (!yy_Spnl()) goto l946; if (!yymatchChar('/')) goto l946;
4109
+ { int yypos947= yypos, yythunkpos947= yythunkpos; if (!yymatchString("noframes")) goto l948; goto l947;
4110
+ l948:; yypos= yypos947; yythunkpos= yythunkpos947; if (!yymatchString("NOFRAMES")) goto l946;
4139
4111
  }
4140
- l959:; if (!yy_Spnl()) goto l958; if (!yymatchChar('>')) goto l958;
4112
+ l947:; if (!yy_Spnl()) goto l946; if (!yymatchChar('>')) goto l946;
4141
4113
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseNoframes", yybuf+yypos));
4142
4114
  return 1;
4143
- l958:; yypos= yypos0; yythunkpos= yythunkpos0;
4115
+ l946:; yypos= yypos0; yythunkpos= yythunkpos0;
4144
4116
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseNoframes", yybuf+yypos));
4145
4117
  return 0;
4146
4118
  }
4147
4119
  YY_RULE(int) yy_HtmlBlockOpenNoframes()
4148
4120
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4121
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenNoframes")); if (!yymatchChar('<')) goto l949; if (!yy_Spnl()) goto l949;
4122
+ { int yypos950= yypos, yythunkpos950= yythunkpos; if (!yymatchString("noframes")) goto l951; goto l950;
4123
+ l951:; yypos= yypos950; yythunkpos= yythunkpos950; if (!yymatchString("NOFRAMES")) goto l949;
4152
4124
  }
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;
4125
+ l950:; if (!yy_Spnl()) goto l949;
4126
+ l952:;
4127
+ { int yypos953= yypos, yythunkpos953= yythunkpos; if (!yy_HtmlAttribute()) goto l953; goto l952;
4128
+ l953:; yypos= yypos953; yythunkpos= yythunkpos953;
4129
+ } if (!yymatchChar('>')) goto l949;
4158
4130
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenNoframes", yybuf+yypos));
4159
4131
  return 1;
4160
- l961:; yypos= yypos0; yythunkpos= yythunkpos0;
4132
+ l949:; yypos= yypos0; yythunkpos= yythunkpos0;
4161
4133
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenNoframes", yybuf+yypos));
4162
4134
  return 0;
4163
4135
  }
4164
4136
  YY_RULE(int) yy_HtmlBlockCloseMenu()
4165
4137
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4138
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseMenu")); if (!yymatchChar('<')) goto l954; if (!yy_Spnl()) goto l954; if (!yymatchChar('/')) goto l954;
4139
+ { int yypos955= yypos, yythunkpos955= yythunkpos; if (!yymatchString("menu")) goto l956; goto l955;
4140
+ l956:; yypos= yypos955; yythunkpos= yythunkpos955; if (!yymatchString("MENU")) goto l954;
4169
4141
  }
4170
- l967:; if (!yy_Spnl()) goto l966; if (!yymatchChar('>')) goto l966;
4142
+ l955:; if (!yy_Spnl()) goto l954; if (!yymatchChar('>')) goto l954;
4171
4143
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseMenu", yybuf+yypos));
4172
4144
  return 1;
4173
- l966:; yypos= yypos0; yythunkpos= yythunkpos0;
4145
+ l954:; yypos= yypos0; yythunkpos= yythunkpos0;
4174
4146
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseMenu", yybuf+yypos));
4175
4147
  return 0;
4176
4148
  }
4177
4149
  YY_RULE(int) yy_HtmlBlockOpenMenu()
4178
4150
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4151
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenMenu")); if (!yymatchChar('<')) goto l957; if (!yy_Spnl()) goto l957;
4152
+ { int yypos958= yypos, yythunkpos958= yythunkpos; if (!yymatchString("menu")) goto l959; goto l958;
4153
+ l959:; yypos= yypos958; yythunkpos= yythunkpos958; if (!yymatchString("MENU")) goto l957;
4182
4154
  }
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;
4155
+ l958:; if (!yy_Spnl()) goto l957;
4156
+ l960:;
4157
+ { int yypos961= yypos, yythunkpos961= yythunkpos; if (!yy_HtmlAttribute()) goto l961; goto l960;
4158
+ l961:; yypos= yypos961; yythunkpos= yythunkpos961;
4159
+ } if (!yymatchChar('>')) goto l957;
4188
4160
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenMenu", yybuf+yypos));
4189
4161
  return 1;
4190
- l969:; yypos= yypos0; yythunkpos= yythunkpos0;
4162
+ l957:; yypos= yypos0; yythunkpos= yythunkpos0;
4191
4163
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenMenu", yybuf+yypos));
4192
4164
  return 0;
4193
4165
  }
4194
- YY_RULE(int) yy_HtmlBlockCloseIsindex()
4195
- { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4199
- }
4200
- l975:; if (!yy_Spnl()) goto l974; if (!yymatchChar('>')) goto l974;
4201
- yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseIsindex", yybuf+yypos));
4202
- return 1;
4203
- l974:; yypos= yypos0; yythunkpos= yythunkpos0;
4204
- yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseIsindex", yybuf+yypos));
4205
- return 0;
4206
- }
4207
- YY_RULE(int) yy_HtmlBlockOpenIsindex()
4208
- { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4212
- }
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;
4218
- yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenIsindex", yybuf+yypos));
4219
- return 1;
4220
- l977:; yypos= yypos0; yythunkpos= yythunkpos0;
4221
- yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenIsindex", yybuf+yypos));
4222
- return 0;
4223
- }
4224
- YY_RULE(int) yy_HtmlBlockCloseHr()
4225
- { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4229
- }
4230
- l983:; if (!yy_Spnl()) goto l982; if (!yymatchChar('>')) goto l982;
4231
- yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseHr", yybuf+yypos));
4232
- return 1;
4233
- l982:; yypos= yypos0; yythunkpos= yythunkpos0;
4234
- yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseHr", yybuf+yypos));
4235
- return 0;
4236
- }
4237
- YY_RULE(int) yy_HtmlBlockOpenHr()
4238
- { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4242
- }
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;
4248
- yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenHr", yybuf+yypos));
4249
- return 1;
4250
- l985:; yypos= yypos0; yythunkpos= yythunkpos0;
4251
- yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenHr", yybuf+yypos));
4252
- return 0;
4253
- }
4254
4166
  YY_RULE(int) yy_HtmlBlockCloseH6()
4255
4167
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4168
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseH6")); if (!yymatchChar('<')) goto l962; if (!yy_Spnl()) goto l962; if (!yymatchChar('/')) goto l962;
4169
+ { int yypos963= yypos, yythunkpos963= yythunkpos; if (!yymatchString("h6")) goto l964; goto l963;
4170
+ l964:; yypos= yypos963; yythunkpos= yythunkpos963; if (!yymatchString("H6")) goto l962;
4259
4171
  }
4260
- l991:; if (!yy_Spnl()) goto l990; if (!yymatchChar('>')) goto l990;
4172
+ l963:; if (!yy_Spnl()) goto l962; if (!yymatchChar('>')) goto l962;
4261
4173
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH6", yybuf+yypos));
4262
4174
  return 1;
4263
- l990:; yypos= yypos0; yythunkpos= yythunkpos0;
4175
+ l962:; yypos= yypos0; yythunkpos= yythunkpos0;
4264
4176
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH6", yybuf+yypos));
4265
4177
  return 0;
4266
4178
  }
4267
4179
  YY_RULE(int) yy_HtmlBlockOpenH6()
4268
4180
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4181
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenH6")); if (!yymatchChar('<')) goto l965; if (!yy_Spnl()) goto l965;
4182
+ { int yypos966= yypos, yythunkpos966= yythunkpos; if (!yymatchString("h6")) goto l967; goto l966;
4183
+ l967:; yypos= yypos966; yythunkpos= yythunkpos966; if (!yymatchString("H6")) goto l965;
4272
4184
  }
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;
4185
+ l966:; if (!yy_Spnl()) goto l965;
4186
+ l968:;
4187
+ { int yypos969= yypos, yythunkpos969= yythunkpos; if (!yy_HtmlAttribute()) goto l969; goto l968;
4188
+ l969:; yypos= yypos969; yythunkpos= yythunkpos969;
4189
+ } if (!yymatchChar('>')) goto l965;
4278
4190
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH6", yybuf+yypos));
4279
4191
  return 1;
4280
- l993:; yypos= yypos0; yythunkpos= yythunkpos0;
4192
+ l965:; yypos= yypos0; yythunkpos= yythunkpos0;
4281
4193
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH6", yybuf+yypos));
4282
4194
  return 0;
4283
4195
  }
4284
4196
  YY_RULE(int) yy_HtmlBlockCloseH5()
4285
4197
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4198
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseH5")); if (!yymatchChar('<')) goto l970; if (!yy_Spnl()) goto l970; if (!yymatchChar('/')) goto l970;
4199
+ { int yypos971= yypos, yythunkpos971= yythunkpos; if (!yymatchString("h5")) goto l972; goto l971;
4200
+ l972:; yypos= yypos971; yythunkpos= yythunkpos971; if (!yymatchString("H5")) goto l970;
4289
4201
  }
4290
- l999:; if (!yy_Spnl()) goto l998; if (!yymatchChar('>')) goto l998;
4202
+ l971:; if (!yy_Spnl()) goto l970; if (!yymatchChar('>')) goto l970;
4291
4203
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH5", yybuf+yypos));
4292
4204
  return 1;
4293
- l998:; yypos= yypos0; yythunkpos= yythunkpos0;
4205
+ l970:; yypos= yypos0; yythunkpos= yythunkpos0;
4294
4206
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH5", yybuf+yypos));
4295
4207
  return 0;
4296
4208
  }
4297
4209
  YY_RULE(int) yy_HtmlBlockOpenH5()
4298
4210
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4211
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenH5")); if (!yymatchChar('<')) goto l973; if (!yy_Spnl()) goto l973;
4212
+ { int yypos974= yypos, yythunkpos974= yythunkpos; if (!yymatchString("h5")) goto l975; goto l974;
4213
+ l975:; yypos= yypos974; yythunkpos= yythunkpos974; if (!yymatchString("H5")) goto l973;
4302
4214
  }
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;
4215
+ l974:; if (!yy_Spnl()) goto l973;
4216
+ l976:;
4217
+ { int yypos977= yypos, yythunkpos977= yythunkpos; if (!yy_HtmlAttribute()) goto l977; goto l976;
4218
+ l977:; yypos= yypos977; yythunkpos= yythunkpos977;
4219
+ } if (!yymatchChar('>')) goto l973;
4308
4220
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH5", yybuf+yypos));
4309
4221
  return 1;
4310
- l1001:; yypos= yypos0; yythunkpos= yythunkpos0;
4222
+ l973:; yypos= yypos0; yythunkpos= yythunkpos0;
4311
4223
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH5", yybuf+yypos));
4312
4224
  return 0;
4313
4225
  }
4314
4226
  YY_RULE(int) yy_HtmlBlockCloseH4()
4315
4227
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4228
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseH4")); if (!yymatchChar('<')) goto l978; if (!yy_Spnl()) goto l978; if (!yymatchChar('/')) goto l978;
4229
+ { int yypos979= yypos, yythunkpos979= yythunkpos; if (!yymatchString("h4")) goto l980; goto l979;
4230
+ l980:; yypos= yypos979; yythunkpos= yythunkpos979; if (!yymatchString("H4")) goto l978;
4319
4231
  }
4320
- l1007:; if (!yy_Spnl()) goto l1006; if (!yymatchChar('>')) goto l1006;
4232
+ l979:; if (!yy_Spnl()) goto l978; if (!yymatchChar('>')) goto l978;
4321
4233
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH4", yybuf+yypos));
4322
4234
  return 1;
4323
- l1006:; yypos= yypos0; yythunkpos= yythunkpos0;
4235
+ l978:; yypos= yypos0; yythunkpos= yythunkpos0;
4324
4236
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH4", yybuf+yypos));
4325
4237
  return 0;
4326
4238
  }
4327
4239
  YY_RULE(int) yy_HtmlBlockOpenH4()
4328
4240
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4241
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenH4")); if (!yymatchChar('<')) goto l981; if (!yy_Spnl()) goto l981;
4242
+ { int yypos982= yypos, yythunkpos982= yythunkpos; if (!yymatchString("h4")) goto l983; goto l982;
4243
+ l983:; yypos= yypos982; yythunkpos= yythunkpos982; if (!yymatchString("H4")) goto l981;
4332
4244
  }
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;
4245
+ l982:; if (!yy_Spnl()) goto l981;
4246
+ l984:;
4247
+ { int yypos985= yypos, yythunkpos985= yythunkpos; if (!yy_HtmlAttribute()) goto l985; goto l984;
4248
+ l985:; yypos= yypos985; yythunkpos= yythunkpos985;
4249
+ } if (!yymatchChar('>')) goto l981;
4338
4250
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH4", yybuf+yypos));
4339
4251
  return 1;
4340
- l1009:; yypos= yypos0; yythunkpos= yythunkpos0;
4252
+ l981:; yypos= yypos0; yythunkpos= yythunkpos0;
4341
4253
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH4", yybuf+yypos));
4342
4254
  return 0;
4343
4255
  }
4344
4256
  YY_RULE(int) yy_HtmlBlockCloseH3()
4345
4257
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4258
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseH3")); if (!yymatchChar('<')) goto l986; if (!yy_Spnl()) goto l986; if (!yymatchChar('/')) goto l986;
4259
+ { int yypos987= yypos, yythunkpos987= yythunkpos; if (!yymatchString("h3")) goto l988; goto l987;
4260
+ l988:; yypos= yypos987; yythunkpos= yythunkpos987; if (!yymatchString("H3")) goto l986;
4349
4261
  }
4350
- l1015:; if (!yy_Spnl()) goto l1014; if (!yymatchChar('>')) goto l1014;
4262
+ l987:; if (!yy_Spnl()) goto l986; if (!yymatchChar('>')) goto l986;
4351
4263
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH3", yybuf+yypos));
4352
4264
  return 1;
4353
- l1014:; yypos= yypos0; yythunkpos= yythunkpos0;
4265
+ l986:; yypos= yypos0; yythunkpos= yythunkpos0;
4354
4266
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH3", yybuf+yypos));
4355
4267
  return 0;
4356
4268
  }
4357
4269
  YY_RULE(int) yy_HtmlBlockOpenH3()
4358
4270
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4271
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenH3")); if (!yymatchChar('<')) goto l989; if (!yy_Spnl()) goto l989;
4272
+ { int yypos990= yypos, yythunkpos990= yythunkpos; if (!yymatchString("h3")) goto l991; goto l990;
4273
+ l991:; yypos= yypos990; yythunkpos= yythunkpos990; if (!yymatchString("H3")) goto l989;
4362
4274
  }
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;
4275
+ l990:; if (!yy_Spnl()) goto l989;
4276
+ l992:;
4277
+ { int yypos993= yypos, yythunkpos993= yythunkpos; if (!yy_HtmlAttribute()) goto l993; goto l992;
4278
+ l993:; yypos= yypos993; yythunkpos= yythunkpos993;
4279
+ } if (!yymatchChar('>')) goto l989;
4368
4280
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH3", yybuf+yypos));
4369
4281
  return 1;
4370
- l1017:; yypos= yypos0; yythunkpos= yythunkpos0;
4282
+ l989:; yypos= yypos0; yythunkpos= yythunkpos0;
4371
4283
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH3", yybuf+yypos));
4372
4284
  return 0;
4373
4285
  }
4374
4286
  YY_RULE(int) yy_HtmlBlockCloseH2()
4375
4287
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4288
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseH2")); if (!yymatchChar('<')) goto l994; if (!yy_Spnl()) goto l994; if (!yymatchChar('/')) goto l994;
4289
+ { int yypos995= yypos, yythunkpos995= yythunkpos; if (!yymatchString("h2")) goto l996; goto l995;
4290
+ l996:; yypos= yypos995; yythunkpos= yythunkpos995; if (!yymatchString("H2")) goto l994;
4379
4291
  }
4380
- l1023:; if (!yy_Spnl()) goto l1022; if (!yymatchChar('>')) goto l1022;
4292
+ l995:; if (!yy_Spnl()) goto l994; if (!yymatchChar('>')) goto l994;
4381
4293
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH2", yybuf+yypos));
4382
4294
  return 1;
4383
- l1022:; yypos= yypos0; yythunkpos= yythunkpos0;
4295
+ l994:; yypos= yypos0; yythunkpos= yythunkpos0;
4384
4296
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH2", yybuf+yypos));
4385
4297
  return 0;
4386
4298
  }
4387
4299
  YY_RULE(int) yy_HtmlBlockOpenH2()
4388
4300
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4301
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenH2")); if (!yymatchChar('<')) goto l997; if (!yy_Spnl()) goto l997;
4302
+ { int yypos998= yypos, yythunkpos998= yythunkpos; if (!yymatchString("h2")) goto l999; goto l998;
4303
+ l999:; yypos= yypos998; yythunkpos= yythunkpos998; if (!yymatchString("H2")) goto l997;
4392
4304
  }
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;
4305
+ l998:; if (!yy_Spnl()) goto l997;
4306
+ l1000:;
4307
+ { int yypos1001= yypos, yythunkpos1001= yythunkpos; if (!yy_HtmlAttribute()) goto l1001; goto l1000;
4308
+ l1001:; yypos= yypos1001; yythunkpos= yythunkpos1001;
4309
+ } if (!yymatchChar('>')) goto l997;
4398
4310
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH2", yybuf+yypos));
4399
4311
  return 1;
4400
- l1025:; yypos= yypos0; yythunkpos= yythunkpos0;
4312
+ l997:; yypos= yypos0; yythunkpos= yythunkpos0;
4401
4313
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH2", yybuf+yypos));
4402
4314
  return 0;
4403
4315
  }
4404
4316
  YY_RULE(int) yy_HtmlBlockCloseH1()
4405
4317
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4318
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseH1")); if (!yymatchChar('<')) goto l1002; if (!yy_Spnl()) goto l1002; if (!yymatchChar('/')) goto l1002;
4319
+ { int yypos1003= yypos, yythunkpos1003= yythunkpos; if (!yymatchString("h1")) goto l1004; goto l1003;
4320
+ l1004:; yypos= yypos1003; yythunkpos= yythunkpos1003; if (!yymatchString("H1")) goto l1002;
4409
4321
  }
4410
- l1031:; if (!yy_Spnl()) goto l1030; if (!yymatchChar('>')) goto l1030;
4322
+ l1003:; if (!yy_Spnl()) goto l1002; if (!yymatchChar('>')) goto l1002;
4411
4323
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH1", yybuf+yypos));
4412
4324
  return 1;
4413
- l1030:; yypos= yypos0; yythunkpos= yythunkpos0;
4325
+ l1002:; yypos= yypos0; yythunkpos= yythunkpos0;
4414
4326
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH1", yybuf+yypos));
4415
4327
  return 0;
4416
4328
  }
4417
4329
  YY_RULE(int) yy_HtmlBlockOpenH1()
4418
4330
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4331
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenH1")); if (!yymatchChar('<')) goto l1005; if (!yy_Spnl()) goto l1005;
4332
+ { int yypos1006= yypos, yythunkpos1006= yythunkpos; if (!yymatchString("h1")) goto l1007; goto l1006;
4333
+ l1007:; yypos= yypos1006; yythunkpos= yythunkpos1006; if (!yymatchString("H1")) goto l1005;
4422
4334
  }
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;
4335
+ l1006:; if (!yy_Spnl()) goto l1005;
4336
+ l1008:;
4337
+ { int yypos1009= yypos, yythunkpos1009= yythunkpos; if (!yy_HtmlAttribute()) goto l1009; goto l1008;
4338
+ l1009:; yypos= yypos1009; yythunkpos= yythunkpos1009;
4339
+ } if (!yymatchChar('>')) goto l1005;
4428
4340
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH1", yybuf+yypos));
4429
4341
  return 1;
4430
- l1033:; yypos= yypos0; yythunkpos= yythunkpos0;
4342
+ l1005:; yypos= yypos0; yythunkpos= yythunkpos0;
4431
4343
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH1", yybuf+yypos));
4432
4344
  return 0;
4433
4345
  }
4434
4346
  YY_RULE(int) yy_HtmlBlockCloseForm()
4435
4347
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4348
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseForm")); if (!yymatchChar('<')) goto l1010; if (!yy_Spnl()) goto l1010; if (!yymatchChar('/')) goto l1010;
4349
+ { int yypos1011= yypos, yythunkpos1011= yythunkpos; if (!yymatchString("form")) goto l1012; goto l1011;
4350
+ l1012:; yypos= yypos1011; yythunkpos= yythunkpos1011; if (!yymatchString("FORM")) goto l1010;
4439
4351
  }
4440
- l1039:; if (!yy_Spnl()) goto l1038; if (!yymatchChar('>')) goto l1038;
4352
+ l1011:; if (!yy_Spnl()) goto l1010; if (!yymatchChar('>')) goto l1010;
4441
4353
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseForm", yybuf+yypos));
4442
4354
  return 1;
4443
- l1038:; yypos= yypos0; yythunkpos= yythunkpos0;
4355
+ l1010:; yypos= yypos0; yythunkpos= yythunkpos0;
4444
4356
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseForm", yybuf+yypos));
4445
4357
  return 0;
4446
4358
  }
4447
4359
  YY_RULE(int) yy_HtmlBlockOpenForm()
4448
4360
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4361
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenForm")); if (!yymatchChar('<')) goto l1013; if (!yy_Spnl()) goto l1013;
4362
+ { int yypos1014= yypos, yythunkpos1014= yythunkpos; if (!yymatchString("form")) goto l1015; goto l1014;
4363
+ l1015:; yypos= yypos1014; yythunkpos= yythunkpos1014; if (!yymatchString("FORM")) goto l1013;
4452
4364
  }
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;
4365
+ l1014:; if (!yy_Spnl()) goto l1013;
4366
+ l1016:;
4367
+ { int yypos1017= yypos, yythunkpos1017= yythunkpos; if (!yy_HtmlAttribute()) goto l1017; goto l1016;
4368
+ l1017:; yypos= yypos1017; yythunkpos= yythunkpos1017;
4369
+ } if (!yymatchChar('>')) goto l1013;
4458
4370
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenForm", yybuf+yypos));
4459
4371
  return 1;
4460
- l1041:; yypos= yypos0; yythunkpos= yythunkpos0;
4372
+ l1013:; yypos= yypos0; yythunkpos= yythunkpos0;
4461
4373
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenForm", yybuf+yypos));
4462
4374
  return 0;
4463
4375
  }
4464
4376
  YY_RULE(int) yy_HtmlBlockCloseFieldset()
4465
4377
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4378
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseFieldset")); if (!yymatchChar('<')) goto l1018; if (!yy_Spnl()) goto l1018; if (!yymatchChar('/')) goto l1018;
4379
+ { int yypos1019= yypos, yythunkpos1019= yythunkpos; if (!yymatchString("fieldset")) goto l1020; goto l1019;
4380
+ l1020:; yypos= yypos1019; yythunkpos= yythunkpos1019; if (!yymatchString("FIELDSET")) goto l1018;
4469
4381
  }
4470
- l1047:; if (!yy_Spnl()) goto l1046; if (!yymatchChar('>')) goto l1046;
4382
+ l1019:; if (!yy_Spnl()) goto l1018; if (!yymatchChar('>')) goto l1018;
4471
4383
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseFieldset", yybuf+yypos));
4472
4384
  return 1;
4473
- l1046:; yypos= yypos0; yythunkpos= yythunkpos0;
4385
+ l1018:; yypos= yypos0; yythunkpos= yythunkpos0;
4474
4386
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseFieldset", yybuf+yypos));
4475
4387
  return 0;
4476
4388
  }
4477
4389
  YY_RULE(int) yy_HtmlBlockOpenFieldset()
4478
4390
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4391
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenFieldset")); if (!yymatchChar('<')) goto l1021; if (!yy_Spnl()) goto l1021;
4392
+ { int yypos1022= yypos, yythunkpos1022= yythunkpos; if (!yymatchString("fieldset")) goto l1023; goto l1022;
4393
+ l1023:; yypos= yypos1022; yythunkpos= yythunkpos1022; if (!yymatchString("FIELDSET")) goto l1021;
4482
4394
  }
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;
4395
+ l1022:; if (!yy_Spnl()) goto l1021;
4396
+ l1024:;
4397
+ { int yypos1025= yypos, yythunkpos1025= yythunkpos; if (!yy_HtmlAttribute()) goto l1025; goto l1024;
4398
+ l1025:; yypos= yypos1025; yythunkpos= yythunkpos1025;
4399
+ } if (!yymatchChar('>')) goto l1021;
4488
4400
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenFieldset", yybuf+yypos));
4489
4401
  return 1;
4490
- l1049:; yypos= yypos0; yythunkpos= yythunkpos0;
4402
+ l1021:; yypos= yypos0; yythunkpos= yythunkpos0;
4491
4403
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenFieldset", yybuf+yypos));
4492
4404
  return 0;
4493
4405
  }
4494
4406
  YY_RULE(int) yy_HtmlBlockCloseDl()
4495
4407
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4408
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseDl")); if (!yymatchChar('<')) goto l1026; if (!yy_Spnl()) goto l1026; if (!yymatchChar('/')) goto l1026;
4409
+ { int yypos1027= yypos, yythunkpos1027= yythunkpos; if (!yymatchString("dl")) goto l1028; goto l1027;
4410
+ l1028:; yypos= yypos1027; yythunkpos= yythunkpos1027; if (!yymatchString("DL")) goto l1026;
4499
4411
  }
4500
- l1055:; if (!yy_Spnl()) goto l1054; if (!yymatchChar('>')) goto l1054;
4412
+ l1027:; if (!yy_Spnl()) goto l1026; if (!yymatchChar('>')) goto l1026;
4501
4413
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDl", yybuf+yypos));
4502
4414
  return 1;
4503
- l1054:; yypos= yypos0; yythunkpos= yythunkpos0;
4415
+ l1026:; yypos= yypos0; yythunkpos= yythunkpos0;
4504
4416
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDl", yybuf+yypos));
4505
4417
  return 0;
4506
4418
  }
4507
4419
  YY_RULE(int) yy_HtmlBlockOpenDl()
4508
4420
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4421
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenDl")); if (!yymatchChar('<')) goto l1029; if (!yy_Spnl()) goto l1029;
4422
+ { int yypos1030= yypos, yythunkpos1030= yythunkpos; if (!yymatchString("dl")) goto l1031; goto l1030;
4423
+ l1031:; yypos= yypos1030; yythunkpos= yythunkpos1030; if (!yymatchString("DL")) goto l1029;
4512
4424
  }
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;
4425
+ l1030:; if (!yy_Spnl()) goto l1029;
4426
+ l1032:;
4427
+ { int yypos1033= yypos, yythunkpos1033= yythunkpos; if (!yy_HtmlAttribute()) goto l1033; goto l1032;
4428
+ l1033:; yypos= yypos1033; yythunkpos= yythunkpos1033;
4429
+ } if (!yymatchChar('>')) goto l1029;
4518
4430
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDl", yybuf+yypos));
4519
4431
  return 1;
4520
- l1057:; yypos= yypos0; yythunkpos= yythunkpos0;
4432
+ l1029:; yypos= yypos0; yythunkpos= yythunkpos0;
4521
4433
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDl", yybuf+yypos));
4522
4434
  return 0;
4523
4435
  }
4524
4436
  YY_RULE(int) yy_HtmlBlockCloseDiv()
4525
4437
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4438
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseDiv")); if (!yymatchChar('<')) goto l1034; if (!yy_Spnl()) goto l1034; if (!yymatchChar('/')) goto l1034;
4439
+ { int yypos1035= yypos, yythunkpos1035= yythunkpos; if (!yymatchString("div")) goto l1036; goto l1035;
4440
+ l1036:; yypos= yypos1035; yythunkpos= yythunkpos1035; if (!yymatchString("DIV")) goto l1034;
4529
4441
  }
4530
- l1063:; if (!yy_Spnl()) goto l1062; if (!yymatchChar('>')) goto l1062;
4442
+ l1035:; if (!yy_Spnl()) goto l1034; if (!yymatchChar('>')) goto l1034;
4531
4443
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDiv", yybuf+yypos));
4532
4444
  return 1;
4533
- l1062:; yypos= yypos0; yythunkpos= yythunkpos0;
4445
+ l1034:; yypos= yypos0; yythunkpos= yythunkpos0;
4534
4446
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDiv", yybuf+yypos));
4535
4447
  return 0;
4536
4448
  }
4537
4449
  YY_RULE(int) yy_HtmlBlockOpenDiv()
4538
4450
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4451
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenDiv")); if (!yymatchChar('<')) goto l1037; if (!yy_Spnl()) goto l1037;
4452
+ { int yypos1038= yypos, yythunkpos1038= yythunkpos; if (!yymatchString("div")) goto l1039; goto l1038;
4453
+ l1039:; yypos= yypos1038; yythunkpos= yythunkpos1038; if (!yymatchString("DIV")) goto l1037;
4542
4454
  }
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;
4455
+ l1038:; if (!yy_Spnl()) goto l1037;
4456
+ l1040:;
4457
+ { int yypos1041= yypos, yythunkpos1041= yythunkpos; if (!yy_HtmlAttribute()) goto l1041; goto l1040;
4458
+ l1041:; yypos= yypos1041; yythunkpos= yythunkpos1041;
4459
+ } if (!yymatchChar('>')) goto l1037;
4548
4460
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDiv", yybuf+yypos));
4549
4461
  return 1;
4550
- l1065:; yypos= yypos0; yythunkpos= yythunkpos0;
4462
+ l1037:; yypos= yypos0; yythunkpos= yythunkpos0;
4551
4463
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDiv", yybuf+yypos));
4552
4464
  return 0;
4553
4465
  }
4554
4466
  YY_RULE(int) yy_HtmlBlockCloseDir()
4555
4467
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4468
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseDir")); if (!yymatchChar('<')) goto l1042; if (!yy_Spnl()) goto l1042; if (!yymatchChar('/')) goto l1042;
4469
+ { int yypos1043= yypos, yythunkpos1043= yythunkpos; if (!yymatchString("dir")) goto l1044; goto l1043;
4470
+ l1044:; yypos= yypos1043; yythunkpos= yythunkpos1043; if (!yymatchString("DIR")) goto l1042;
4559
4471
  }
4560
- l1071:; if (!yy_Spnl()) goto l1070; if (!yymatchChar('>')) goto l1070;
4472
+ l1043:; if (!yy_Spnl()) goto l1042; if (!yymatchChar('>')) goto l1042;
4561
4473
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDir", yybuf+yypos));
4562
4474
  return 1;
4563
- l1070:; yypos= yypos0; yythunkpos= yythunkpos0;
4475
+ l1042:; yypos= yypos0; yythunkpos= yythunkpos0;
4564
4476
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDir", yybuf+yypos));
4565
4477
  return 0;
4566
4478
  }
4567
4479
  YY_RULE(int) yy_HtmlBlockOpenDir()
4568
4480
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4481
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenDir")); if (!yymatchChar('<')) goto l1045; if (!yy_Spnl()) goto l1045;
4482
+ { int yypos1046= yypos, yythunkpos1046= yythunkpos; if (!yymatchString("dir")) goto l1047; goto l1046;
4483
+ l1047:; yypos= yypos1046; yythunkpos= yythunkpos1046; if (!yymatchString("DIR")) goto l1045;
4572
4484
  }
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;
4485
+ l1046:; if (!yy_Spnl()) goto l1045;
4486
+ l1048:;
4487
+ { int yypos1049= yypos, yythunkpos1049= yythunkpos; if (!yy_HtmlAttribute()) goto l1049; goto l1048;
4488
+ l1049:; yypos= yypos1049; yythunkpos= yythunkpos1049;
4489
+ } if (!yymatchChar('>')) goto l1045;
4578
4490
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDir", yybuf+yypos));
4579
4491
  return 1;
4580
- l1073:; yypos= yypos0; yythunkpos= yythunkpos0;
4492
+ l1045:; yypos= yypos0; yythunkpos= yythunkpos0;
4581
4493
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDir", yybuf+yypos));
4582
4494
  return 0;
4583
4495
  }
4584
4496
  YY_RULE(int) yy_HtmlBlockCloseCenter()
4585
4497
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4498
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseCenter")); if (!yymatchChar('<')) goto l1050; if (!yy_Spnl()) goto l1050; if (!yymatchChar('/')) goto l1050;
4499
+ { int yypos1051= yypos, yythunkpos1051= yythunkpos; if (!yymatchString("center")) goto l1052; goto l1051;
4500
+ l1052:; yypos= yypos1051; yythunkpos= yythunkpos1051; if (!yymatchString("CENTER")) goto l1050;
4589
4501
  }
4590
- l1079:; if (!yy_Spnl()) goto l1078; if (!yymatchChar('>')) goto l1078;
4502
+ l1051:; if (!yy_Spnl()) goto l1050; if (!yymatchChar('>')) goto l1050;
4591
4503
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseCenter", yybuf+yypos));
4592
4504
  return 1;
4593
- l1078:; yypos= yypos0; yythunkpos= yythunkpos0;
4505
+ l1050:; yypos= yypos0; yythunkpos= yythunkpos0;
4594
4506
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseCenter", yybuf+yypos));
4595
4507
  return 0;
4596
4508
  }
4597
4509
  YY_RULE(int) yy_HtmlBlockOpenCenter()
4598
4510
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4511
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenCenter")); if (!yymatchChar('<')) goto l1053; if (!yy_Spnl()) goto l1053;
4512
+ { int yypos1054= yypos, yythunkpos1054= yythunkpos; if (!yymatchString("center")) goto l1055; goto l1054;
4513
+ l1055:; yypos= yypos1054; yythunkpos= yythunkpos1054; if (!yymatchString("CENTER")) goto l1053;
4602
4514
  }
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;
4515
+ l1054:; if (!yy_Spnl()) goto l1053;
4516
+ l1056:;
4517
+ { int yypos1057= yypos, yythunkpos1057= yythunkpos; if (!yy_HtmlAttribute()) goto l1057; goto l1056;
4518
+ l1057:; yypos= yypos1057; yythunkpos= yythunkpos1057;
4519
+ } if (!yymatchChar('>')) goto l1053;
4608
4520
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenCenter", yybuf+yypos));
4609
4521
  return 1;
4610
- l1081:; yypos= yypos0; yythunkpos= yythunkpos0;
4522
+ l1053:; yypos= yypos0; yythunkpos= yythunkpos0;
4611
4523
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenCenter", yybuf+yypos));
4612
4524
  return 0;
4613
4525
  }
4614
4526
  YY_RULE(int) yy_HtmlBlockCloseBlockquote()
4615
4527
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4528
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseBlockquote")); if (!yymatchChar('<')) goto l1058; if (!yy_Spnl()) goto l1058; if (!yymatchChar('/')) goto l1058;
4529
+ { int yypos1059= yypos, yythunkpos1059= yythunkpos; if (!yymatchString("blockquote")) goto l1060; goto l1059;
4530
+ l1060:; yypos= yypos1059; yythunkpos= yythunkpos1059; if (!yymatchString("BLOCKQUOTE")) goto l1058;
4619
4531
  }
4620
- l1087:; if (!yy_Spnl()) goto l1086; if (!yymatchChar('>')) goto l1086;
4532
+ l1059:; if (!yy_Spnl()) goto l1058; if (!yymatchChar('>')) goto l1058;
4621
4533
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseBlockquote", yybuf+yypos));
4622
4534
  return 1;
4623
- l1086:; yypos= yypos0; yythunkpos= yythunkpos0;
4535
+ l1058:; yypos= yypos0; yythunkpos= yythunkpos0;
4624
4536
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseBlockquote", yybuf+yypos));
4625
4537
  return 0;
4626
4538
  }
4627
4539
  YY_RULE(int) yy_HtmlBlockOpenBlockquote()
4628
4540
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4541
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenBlockquote")); if (!yymatchChar('<')) goto l1061; if (!yy_Spnl()) goto l1061;
4542
+ { int yypos1062= yypos, yythunkpos1062= yythunkpos; if (!yymatchString("blockquote")) goto l1063; goto l1062;
4543
+ l1063:; yypos= yypos1062; yythunkpos= yythunkpos1062; if (!yymatchString("BLOCKQUOTE")) goto l1061;
4632
4544
  }
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;
4545
+ l1062:; if (!yy_Spnl()) goto l1061;
4546
+ l1064:;
4547
+ { int yypos1065= yypos, yythunkpos1065= yythunkpos; if (!yy_HtmlAttribute()) goto l1065; goto l1064;
4548
+ l1065:; yypos= yypos1065; yythunkpos= yythunkpos1065;
4549
+ } if (!yymatchChar('>')) goto l1061;
4638
4550
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenBlockquote", yybuf+yypos));
4639
4551
  return 1;
4640
- l1089:; yypos= yypos0; yythunkpos= yythunkpos0;
4552
+ l1061:; yypos= yypos0; yythunkpos= yythunkpos0;
4641
4553
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenBlockquote", yybuf+yypos));
4642
4554
  return 0;
4643
4555
  }
4644
4556
  YY_RULE(int) yy_HtmlBlockCloseAddress()
4645
4557
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4558
+ yyprintf((stderr, "%s\n", "HtmlBlockCloseAddress")); if (!yymatchChar('<')) goto l1066; if (!yy_Spnl()) goto l1066; if (!yymatchChar('/')) goto l1066;
4559
+ { int yypos1067= yypos, yythunkpos1067= yythunkpos; if (!yymatchString("address")) goto l1068; goto l1067;
4560
+ l1068:; yypos= yypos1067; yythunkpos= yythunkpos1067; if (!yymatchString("ADDRESS")) goto l1066;
4649
4561
  }
4650
- l1095:; if (!yy_Spnl()) goto l1094; if (!yymatchChar('>')) goto l1094;
4562
+ l1067:; if (!yy_Spnl()) goto l1066; if (!yymatchChar('>')) goto l1066;
4651
4563
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseAddress", yybuf+yypos));
4652
4564
  return 1;
4653
- l1094:; yypos= yypos0; yythunkpos= yythunkpos0;
4565
+ l1066:; yypos= yypos0; yythunkpos= yythunkpos0;
4654
4566
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseAddress", yybuf+yypos));
4655
4567
  return 0;
4656
4568
  }
4657
4569
  YY_RULE(int) yy_HtmlAttribute()
4658
4570
  { int yypos0= yypos, yythunkpos0= yythunkpos;
4659
4571
  yyprintf((stderr, "%s\n", "HtmlAttribute"));
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;
4572
+ { int yypos1072= yypos, yythunkpos1072= yythunkpos; if (!yy_Alphanumeric()) goto l1073; goto l1072;
4573
+ l1073:; yypos= yypos1072; yythunkpos= yythunkpos1072; if (!yymatchChar('-')) goto l1069;
4574
+ }
4575
+ l1072:;
4576
+ l1070:;
4577
+ { int yypos1071= yypos, yythunkpos1071= yythunkpos;
4578
+ { int yypos1074= yypos, yythunkpos1074= yythunkpos; if (!yy_Alphanumeric()) goto l1075; goto l1074;
4579
+ l1075:; yypos= yypos1074; yythunkpos= yythunkpos1074; if (!yymatchChar('-')) goto l1071;
4580
+ }
4581
+ l1074:; goto l1070;
4582
+ l1071:; yypos= yypos1071; yythunkpos= yythunkpos1071;
4583
+ } if (!yy_Spnl()) goto l1069;
4584
+ { int yypos1076= yypos, yythunkpos1076= yythunkpos; if (!yymatchChar('=')) goto l1076; if (!yy_Spnl()) goto l1076;
4585
+ { int yypos1078= yypos, yythunkpos1078= yythunkpos; if (!yy_Quoted()) goto l1079; goto l1078;
4586
+ l1079:; yypos= yypos1078; yythunkpos= yythunkpos1078; if (!yy_Nonspacechar()) goto l1076;
4587
+ l1080:;
4588
+ { int yypos1081= yypos, yythunkpos1081= yythunkpos; if (!yy_Nonspacechar()) goto l1081; goto l1080;
4589
+ l1081:; yypos= yypos1081; yythunkpos= yythunkpos1081;
4590
+ }
4591
+ }
4592
+ l1078:; goto l1077;
4593
+ l1076:; yypos= yypos1076; yythunkpos= yythunkpos1076;
4594
+ }
4595
+ l1077:; if (!yy_Spnl()) goto l1069;
4684
4596
  yyprintf((stderr, " ok %s @ %s\n", "HtmlAttribute", yybuf+yypos));
4685
4597
  return 1;
4686
- l1097:; yypos= yypos0; yythunkpos= yythunkpos0;
4598
+ l1069:; yypos= yypos0; yythunkpos= yythunkpos0;
4687
4599
  yyprintf((stderr, " fail %s @ %s\n", "HtmlAttribute", yybuf+yypos));
4688
4600
  return 0;
4689
4601
  }
4690
4602
  YY_RULE(int) yy_Spnl()
4691
4603
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4604
+ yyprintf((stderr, "%s\n", "Spnl")); if (!yy_Sp()) goto l1082;
4605
+ { int yypos1083= yypos, yythunkpos1083= yythunkpos; if (!yy_Newline()) goto l1083; if (!yy_Sp()) goto l1083; goto l1084;
4606
+ l1083:; yypos= yypos1083; yythunkpos= yythunkpos1083;
4695
4607
  }
4696
- l1112:;
4608
+ l1084:;
4697
4609
  yyprintf((stderr, " ok %s @ %s\n", "Spnl", yybuf+yypos));
4698
4610
  return 1;
4699
- l1110:; yypos= yypos0; yythunkpos= yythunkpos0;
4611
+ l1082:; yypos= yypos0; yythunkpos= yythunkpos0;
4700
4612
  yyprintf((stderr, " fail %s @ %s\n", "Spnl", yybuf+yypos));
4701
4613
  return 0;
4702
4614
  }
4703
4615
  YY_RULE(int) yy_HtmlBlockOpenAddress()
4704
4616
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4617
+ yyprintf((stderr, "%s\n", "HtmlBlockOpenAddress")); if (!yymatchChar('<')) goto l1085; if (!yy_Spnl()) goto l1085;
4618
+ { int yypos1086= yypos, yythunkpos1086= yythunkpos; if (!yymatchString("address")) goto l1087; goto l1086;
4619
+ l1087:; yypos= yypos1086; yythunkpos= yythunkpos1086; if (!yymatchString("ADDRESS")) goto l1085;
4708
4620
  }
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;
4621
+ l1086:; if (!yy_Spnl()) goto l1085;
4622
+ l1088:;
4623
+ { int yypos1089= yypos, yythunkpos1089= yythunkpos; if (!yy_HtmlAttribute()) goto l1089; goto l1088;
4624
+ l1089:; yypos= yypos1089; yythunkpos= yythunkpos1089;
4625
+ } if (!yymatchChar('>')) goto l1085;
4714
4626
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenAddress", yybuf+yypos));
4715
4627
  return 1;
4716
- l1113:; yypos= yypos0; yythunkpos= yythunkpos0;
4628
+ l1085:; yypos= yypos0; yythunkpos= yythunkpos0;
4717
4629
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenAddress", yybuf+yypos));
4718
4630
  return 0;
4719
4631
  }
4720
4632
  YY_RULE(int) yy_OptionallyIndentedLine()
4721
4633
  { int yypos0= yypos, yythunkpos0= yythunkpos;
4722
4634
  yyprintf((stderr, "%s\n", "OptionallyIndentedLine"));
4723
- { int yypos1119= yypos, yythunkpos1119= yythunkpos; if (!yy_Indent()) goto l1119; goto l1120;
4724
- l1119:; yypos= yypos1119; yythunkpos= yythunkpos1119;
4635
+ { int yypos1091= yypos, yythunkpos1091= yythunkpos; if (!yy_Indent()) goto l1091; goto l1092;
4636
+ l1091:; yypos= yypos1091; yythunkpos= yythunkpos1091;
4725
4637
  }
4726
- l1120:; if (!yy_Line()) goto l1118;
4638
+ l1092:; if (!yy_Line()) goto l1090;
4727
4639
  yyprintf((stderr, " ok %s @ %s\n", "OptionallyIndentedLine", yybuf+yypos));
4728
4640
  return 1;
4729
- l1118:; yypos= yypos0; yythunkpos= yythunkpos0;
4641
+ l1090:; yypos= yypos0; yythunkpos= yythunkpos0;
4730
4642
  yyprintf((stderr, " fail %s @ %s\n", "OptionallyIndentedLine", yybuf+yypos));
4731
4643
  return 0;
4732
4644
  }
4733
4645
  YY_RULE(int) yy_OrderedListItem()
4734
4646
  { int yypos0= yypos, yythunkpos0= yythunkpos;
4735
4647
  yyprintf((stderr, "%s\n", "OrderedListItem"));
4736
- { int yypos1122= yypos, yythunkpos1122= yythunkpos; if (!yy_HorizontalRule()) goto l1122; goto l1121;
4737
- l1122:; yypos= yypos1122; yythunkpos= yythunkpos1122;
4648
+ { int yypos1094= yypos, yythunkpos1094= yythunkpos; if (!yy_HorizontalRule()) goto l1094; goto l1093;
4649
+ l1094:; yypos= yypos1094; yythunkpos= yythunkpos1094;
4738
4650
  }
4739
- { int yypos1123= yypos, yythunkpos1123= yythunkpos; if (!yy_Enumerator()) goto l1121; yypos= yypos1123; yythunkpos= yythunkpos1123;
4740
- } if (!yy_ListItem()) goto l1121;
4651
+ { int yypos1095= yypos, yythunkpos1095= yythunkpos; if (!yy_Enumerator()) goto l1093; yypos= yypos1095; yythunkpos= yythunkpos1095;
4652
+ } if (!yy_ListItem()) goto l1093;
4741
4653
  yyprintf((stderr, " ok %s @ %s\n", "OrderedListItem", yybuf+yypos));
4742
4654
  return 1;
4743
- l1121:; yypos= yypos0; yythunkpos= yythunkpos0;
4655
+ l1093:; yypos= yypos0; yythunkpos= yythunkpos0;
4744
4656
  yyprintf((stderr, " fail %s @ %s\n", "OrderedListItem", yybuf+yypos));
4745
4657
  return 0;
4746
4658
  }
4747
4659
  YY_RULE(int) yy_OrderedListLoose()
4748
4660
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 2, 0);
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;
4661
+ yyprintf((stderr, "%s\n", "OrderedListLoose")); if (!yy_StartList()) goto l1096; yyDo(yySet, -2, 0); if (!yy_OrderedListItem()) goto l1096; yyDo(yySet, -1, 0);
4662
+ l1099:;
4663
+ { int yypos1100= yypos, yythunkpos1100= yythunkpos; if (!yy_BlankLine()) goto l1100; goto l1099;
4664
+ l1100:; yypos= yypos1100; yythunkpos= yythunkpos1100;
4753
4665
  } yyDo(yy_1_OrderedListLoose, yybegin, yyend);
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;
4666
+ l1097:;
4667
+ { int yypos1098= yypos, yythunkpos1098= yythunkpos; if (!yy_OrderedListItem()) goto l1098; yyDo(yySet, -1, 0);
4668
+ l1101:;
4669
+ { int yypos1102= yypos, yythunkpos1102= yythunkpos; if (!yy_BlankLine()) goto l1102; goto l1101;
4670
+ l1102:; yypos= yypos1102; yythunkpos= yythunkpos1102;
4671
+ } yyDo(yy_1_OrderedListLoose, yybegin, yyend); goto l1097;
4672
+ l1098:; yypos= yypos1098; yythunkpos= yythunkpos1098;
4761
4673
  } yyDo(yy_2_OrderedListLoose, yybegin, yyend);
4762
4674
  yyprintf((stderr, " ok %s @ %s\n", "OrderedListLoose", yybuf+yypos)); yyDo(yyPop, 2, 0);
4763
4675
  return 1;
4764
- l1124:; yypos= yypos0; yythunkpos= yythunkpos0;
4676
+ l1096:; yypos= yypos0; yythunkpos= yythunkpos0;
4765
4677
  yyprintf((stderr, " fail %s @ %s\n", "OrderedListLoose", yybuf+yypos));
4766
4678
  return 0;
4767
4679
  }
4768
4680
  YY_RULE(int) yy_OrderedListTight()
4769
4681
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
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;
4682
+ yyprintf((stderr, "%s\n", "OrderedListTight")); if (!yy_StartList()) goto l1103; yyDo(yySet, -1, 0); if (!yy_OrderedListItem()) goto l1103; yyDo(yy_1_OrderedListTight, yybegin, yyend);
4683
+ l1104:;
4684
+ { int yypos1105= yypos, yythunkpos1105= yythunkpos; if (!yy_OrderedListItem()) goto l1105; yyDo(yy_1_OrderedListTight, yybegin, yyend); goto l1104;
4685
+ l1105:; yypos= yypos1105; yythunkpos= yythunkpos1105;
4774
4686
  }
4775
- l1134:;
4776
- { int yypos1135= yypos, yythunkpos1135= yythunkpos; if (!yy_BlankLine()) goto l1135; goto l1134;
4777
- l1135:; yypos= yypos1135; yythunkpos= yythunkpos1135;
4687
+ l1106:;
4688
+ { int yypos1107= yypos, yythunkpos1107= yythunkpos; if (!yy_BlankLine()) goto l1107; goto l1106;
4689
+ l1107:; yypos= yypos1107; yythunkpos= yythunkpos1107;
4778
4690
  }
4779
- { int yypos1136= yypos, yythunkpos1136= yythunkpos; if (!yy_OrderedListLoose()) goto l1136; goto l1131;
4780
- l1136:; yypos= yypos1136; yythunkpos= yythunkpos1136;
4691
+ { int yypos1108= yypos, yythunkpos1108= yythunkpos; if (!yy_OrderedListLoose()) goto l1108; goto l1103;
4692
+ l1108:; yypos= yypos1108; yythunkpos= yythunkpos1108;
4781
4693
  } yyDo(yy_2_OrderedListTight, yybegin, yyend);
4782
4694
  yyprintf((stderr, " ok %s @ %s\n", "OrderedListTight", yybuf+yypos)); yyDo(yyPop, 1, 0);
4783
4695
  return 1;
4784
- l1131:; yypos= yypos0; yythunkpos= yythunkpos0;
4696
+ l1103:; yypos= yypos0; yythunkpos= yythunkpos0;
4785
4697
  yyprintf((stderr, " fail %s @ %s\n", "OrderedListTight", yybuf+yypos));
4786
4698
  return 0;
4787
4699
  }
4788
4700
  YY_RULE(int) yy_Indent()
4789
4701
  { int yypos0= yypos, yythunkpos0= yythunkpos;
4790
4702
  yyprintf((stderr, "%s\n", "Indent"));
4791
- { int yypos1138= yypos, yythunkpos1138= yythunkpos; if (!yymatchChar('\t')) goto l1139; goto l1138;
4792
- l1139:; yypos= yypos1138; yythunkpos= yythunkpos1138; if (!yymatchString(" ")) goto l1137;
4703
+ { int yypos1110= yypos, yythunkpos1110= yythunkpos; if (!yymatchChar('\t')) goto l1111; goto l1110;
4704
+ l1111:; yypos= yypos1110; yythunkpos= yythunkpos1110; if (!yymatchString(" ")) goto l1109;
4793
4705
  }
4794
- l1138:;
4706
+ l1110:;
4795
4707
  yyprintf((stderr, " ok %s @ %s\n", "Indent", yybuf+yypos));
4796
4708
  return 1;
4797
- l1137:; yypos= yypos0; yythunkpos= yythunkpos0;
4709
+ l1109:; yypos= yypos0; yythunkpos= yythunkpos0;
4798
4710
  yyprintf((stderr, " fail %s @ %s\n", "Indent", yybuf+yypos));
4799
4711
  return 0;
4800
4712
  }
4801
4713
  YY_RULE(int) yy_ListBlockLine()
4802
4714
  { int yypos0= yypos, yythunkpos0= yythunkpos;
4803
4715
  yyprintf((stderr, "%s\n", "ListBlockLine"));
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;
4716
+ { int yypos1113= yypos, yythunkpos1113= yythunkpos;
4717
+ { int yypos1114= yypos, yythunkpos1114= yythunkpos; if (!yy_Indent()) goto l1114; goto l1115;
4718
+ l1114:; yypos= yypos1114; yythunkpos= yythunkpos1114;
4807
4719
  }
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;
4720
+ l1115:;
4721
+ { int yypos1116= yypos, yythunkpos1116= yythunkpos; if (!yy_BulletListItem()) goto l1117; goto l1116;
4722
+ l1117:; yypos= yypos1116; yythunkpos= yythunkpos1116; if (!yy_OrderedListItem()) goto l1113;
4811
4723
  }
4812
- l1144:; goto l1140;
4813
- l1141:; yypos= yypos1141; yythunkpos= yythunkpos1141;
4724
+ l1116:; goto l1112;
4725
+ l1113:; yypos= yypos1113; yythunkpos= yythunkpos1113;
4814
4726
  }
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;
4727
+ { int yypos1118= yypos, yythunkpos1118= yythunkpos; if (!yy_BlankLine()) goto l1118; goto l1112;
4728
+ l1118:; yypos= yypos1118; yythunkpos= yythunkpos1118;
4729
+ } if (!yy_OptionallyIndentedLine()) goto l1112;
4818
4730
  yyprintf((stderr, " ok %s @ %s\n", "ListBlockLine", yybuf+yypos));
4819
4731
  return 1;
4820
- l1140:; yypos= yypos0; yythunkpos= yythunkpos0;
4732
+ l1112:; yypos= yypos0; yythunkpos= yythunkpos0;
4821
4733
  yyprintf((stderr, " fail %s @ %s\n", "ListBlockLine", yybuf+yypos));
4822
4734
  return 0;
4823
4735
  }
4824
4736
  YY_RULE(int) yy_ListContinuationBlock()
4825
4737
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
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;
4738
+ yyprintf((stderr, "%s\n", "ListContinuationBlock")); if (!yy_StartList()) goto l1119; yyDo(yySet, -1, 0); yyText(yybegin, yyend); if (!(YY_BEGIN)) goto l1119;
4739
+ l1120:;
4740
+ { int yypos1121= yypos, yythunkpos1121= yythunkpos; if (!yy_BlankLine()) goto l1121; goto l1120;
4741
+ l1121:; yypos= yypos1121; yythunkpos= yythunkpos1121;
4742
+ } yyText(yybegin, yyend); if (!(YY_END)) goto l1119; yyDo(yy_1_ListContinuationBlock, yybegin, yyend); if (!yy_Indent()) goto l1119; if (!yy_ListBlock()) goto l1119; yyDo(yy_2_ListContinuationBlock, yybegin, yyend);
4743
+ l1122:;
4744
+ { int yypos1123= yypos, yythunkpos1123= yythunkpos; if (!yy_Indent()) goto l1123; if (!yy_ListBlock()) goto l1123; yyDo(yy_2_ListContinuationBlock, yybegin, yyend); goto l1122;
4745
+ l1123:; yypos= yypos1123; yythunkpos= yythunkpos1123;
4834
4746
  } yyDo(yy_3_ListContinuationBlock, yybegin, yyend);
4835
4747
  yyprintf((stderr, " ok %s @ %s\n", "ListContinuationBlock", yybuf+yypos)); yyDo(yyPop, 1, 0);
4836
4748
  return 1;
4837
- l1147:; yypos= yypos0; yythunkpos= yythunkpos0;
4749
+ l1119:; yypos= yypos0; yythunkpos= yythunkpos0;
4838
4750
  yyprintf((stderr, " fail %s @ %s\n", "ListContinuationBlock", yybuf+yypos));
4839
4751
  return 0;
4840
4752
  }
4841
4753
  YY_RULE(int) yy_ListBlock()
4842
4754
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
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;
4755
+ yyprintf((stderr, "%s\n", "ListBlock")); if (!yy_StartList()) goto l1124; yyDo(yySet, -1, 0); if (!yy_Line()) goto l1124; yyDo(yy_1_ListBlock, yybegin, yyend);
4756
+ l1125:;
4757
+ { int yypos1126= yypos, yythunkpos1126= yythunkpos; if (!yy_ListBlockLine()) goto l1126; yyDo(yy_2_ListBlock, yybegin, yyend); goto l1125;
4758
+ l1126:; yypos= yypos1126; yythunkpos= yythunkpos1126;
4847
4759
  } yyDo(yy_3_ListBlock, yybegin, yyend);
4848
4760
  yyprintf((stderr, " ok %s @ %s\n", "ListBlock", yybuf+yypos)); yyDo(yyPop, 1, 0);
4849
4761
  return 1;
4850
- l1152:; yypos= yypos0; yythunkpos= yythunkpos0;
4762
+ l1124:; yypos= yypos0; yythunkpos= yythunkpos0;
4851
4763
  yyprintf((stderr, " fail %s @ %s\n", "ListBlock", yybuf+yypos));
4852
4764
  return 0;
4853
4765
  }
4854
4766
  YY_RULE(int) yy_Enumerator()
4855
4767
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4768
+ yyprintf((stderr, "%s\n", "Enumerator")); if (!yy_NonindentSpace()) goto l1127; 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 l1127;
4769
+ l1128:;
4770
+ { int yypos1129= yypos, yythunkpos1129= 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 l1129; goto l1128;
4771
+ l1129:; yypos= yypos1129; yythunkpos= yythunkpos1129;
4772
+ } if (!yymatchChar('.')) goto l1127; if (!yy_Spacechar()) goto l1127;
4773
+ l1130:;
4774
+ { int yypos1131= yypos, yythunkpos1131= yythunkpos; if (!yy_Spacechar()) goto l1131; goto l1130;
4775
+ l1131:; yypos= yypos1131; yythunkpos= yythunkpos1131;
4864
4776
  }
4865
4777
  yyprintf((stderr, " ok %s @ %s\n", "Enumerator", yybuf+yypos));
4866
4778
  return 1;
4867
- l1155:; yypos= yypos0; yythunkpos= yythunkpos0;
4779
+ l1127:; yypos= yypos0; yythunkpos= yythunkpos0;
4868
4780
  yyprintf((stderr, " fail %s @ %s\n", "Enumerator", yybuf+yypos));
4869
4781
  return 0;
4870
4782
  }
4871
4783
  YY_RULE(int) yy_ListItem()
4872
4784
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
4873
4785
  yyprintf((stderr, "%s\n", "ListItem"));
4874
- { int yypos1161= yypos, yythunkpos1161= yythunkpos; if (!yy_Bullet()) goto l1162; goto l1161;
4875
- l1162:; yypos= yypos1161; yythunkpos= yythunkpos1161; if (!yy_Enumerator()) goto l1160;
4786
+ { int yypos1133= yypos, yythunkpos1133= yythunkpos; if (!yy_Bullet()) goto l1134; goto l1133;
4787
+ l1134:; yypos= yypos1133; yythunkpos= yythunkpos1133; if (!yy_Enumerator()) goto l1132;
4876
4788
  }
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;
4789
+ l1133:; if (!yy_StartList()) goto l1132; yyDo(yySet, -1, 0); if (!yy_ListBlock()) goto l1132; yyDo(yy_1_ListItem, yybegin, yyend);
4790
+ l1135:;
4791
+ { int yypos1136= yypos, yythunkpos1136= yythunkpos; if (!yy_ListContinuationBlock()) goto l1136; yyDo(yy_2_ListItem, yybegin, yyend); goto l1135;
4792
+ l1136:; yypos= yypos1136; yythunkpos= yythunkpos1136;
4881
4793
  } yyDo(yy_3_ListItem, yybegin, yyend);
4882
4794
  yyprintf((stderr, " ok %s @ %s\n", "ListItem", yybuf+yypos)); yyDo(yyPop, 1, 0);
4883
4795
  return 1;
4884
- l1160:; yypos= yypos0; yythunkpos= yythunkpos0;
4796
+ l1132:; yypos= yypos0; yythunkpos= yythunkpos0;
4885
4797
  yyprintf((stderr, " fail %s @ %s\n", "ListItem", yybuf+yypos));
4886
4798
  return 0;
4887
4799
  }
4888
4800
  YY_RULE(int) yy_BulletListItem()
4889
4801
  { int yypos0= yypos, yythunkpos0= yythunkpos;
4890
4802
  yyprintf((stderr, "%s\n", "BulletListItem"));
4891
- { int yypos1166= yypos, yythunkpos1166= yythunkpos; if (!yy_HorizontalRule()) goto l1166; goto l1165;
4892
- l1166:; yypos= yypos1166; yythunkpos= yythunkpos1166;
4803
+ { int yypos1138= yypos, yythunkpos1138= yythunkpos; if (!yy_HorizontalRule()) goto l1138; goto l1137;
4804
+ l1138:; yypos= yypos1138; yythunkpos= yythunkpos1138;
4893
4805
  }
4894
- { int yypos1167= yypos, yythunkpos1167= yythunkpos; if (!yy_Bullet()) goto l1165; yypos= yypos1167; yythunkpos= yythunkpos1167;
4895
- } if (!yy_ListItem()) goto l1165;
4806
+ { int yypos1139= yypos, yythunkpos1139= yythunkpos; if (!yy_Bullet()) goto l1137; yypos= yypos1139; yythunkpos= yythunkpos1139;
4807
+ } if (!yy_ListItem()) goto l1137;
4896
4808
  yyprintf((stderr, " ok %s @ %s\n", "BulletListItem", yybuf+yypos));
4897
4809
  return 1;
4898
- l1165:; yypos= yypos0; yythunkpos= yythunkpos0;
4810
+ l1137:; yypos= yypos0; yythunkpos= yythunkpos0;
4899
4811
  yyprintf((stderr, " fail %s @ %s\n", "BulletListItem", yybuf+yypos));
4900
4812
  return 0;
4901
4813
  }
4902
4814
  YY_RULE(int) yy_BulletListLoose()
4903
4815
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 2, 0);
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;
4816
+ yyprintf((stderr, "%s\n", "BulletListLoose")); if (!yy_StartList()) goto l1140; yyDo(yySet, -2, 0); if (!yy_BulletListItem()) goto l1140; yyDo(yySet, -1, 0);
4817
+ l1143:;
4818
+ { int yypos1144= yypos, yythunkpos1144= yythunkpos; if (!yy_BlankLine()) goto l1144; goto l1143;
4819
+ l1144:; yypos= yypos1144; yythunkpos= yythunkpos1144;
4908
4820
  } yyDo(yy_1_BulletListLoose, yybegin, yyend);
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;
4821
+ l1141:;
4822
+ { int yypos1142= yypos, yythunkpos1142= yythunkpos; if (!yy_BulletListItem()) goto l1142; yyDo(yySet, -1, 0);
4823
+ l1145:;
4824
+ { int yypos1146= yypos, yythunkpos1146= yythunkpos; if (!yy_BlankLine()) goto l1146; goto l1145;
4825
+ l1146:; yypos= yypos1146; yythunkpos= yythunkpos1146;
4826
+ } yyDo(yy_1_BulletListLoose, yybegin, yyend); goto l1141;
4827
+ l1142:; yypos= yypos1142; yythunkpos= yythunkpos1142;
4916
4828
  } yyDo(yy_2_BulletListLoose, yybegin, yyend);
4917
4829
  yyprintf((stderr, " ok %s @ %s\n", "BulletListLoose", yybuf+yypos)); yyDo(yyPop, 2, 0);
4918
4830
  return 1;
4919
- l1168:; yypos= yypos0; yythunkpos= yythunkpos0;
4831
+ l1140:; yypos= yypos0; yythunkpos= yythunkpos0;
4920
4832
  yyprintf((stderr, " fail %s @ %s\n", "BulletListLoose", yybuf+yypos));
4921
4833
  return 0;
4922
4834
  }
4923
4835
  YY_RULE(int) yy_BulletListTight()
4924
4836
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
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;
4837
+ yyprintf((stderr, "%s\n", "BulletListTight")); if (!yy_StartList()) goto l1147; yyDo(yySet, -1, 0); if (!yy_BulletListItem()) goto l1147; yyDo(yy_1_BulletListTight, yybegin, yyend);
4838
+ l1148:;
4839
+ { int yypos1149= yypos, yythunkpos1149= yythunkpos; if (!yy_BulletListItem()) goto l1149; yyDo(yy_1_BulletListTight, yybegin, yyend); goto l1148;
4840
+ l1149:; yypos= yypos1149; yythunkpos= yythunkpos1149;
4929
4841
  }
4930
- l1178:;
4931
- { int yypos1179= yypos, yythunkpos1179= yythunkpos; if (!yy_BlankLine()) goto l1179; goto l1178;
4932
- l1179:; yypos= yypos1179; yythunkpos= yythunkpos1179;
4842
+ l1150:;
4843
+ { int yypos1151= yypos, yythunkpos1151= yythunkpos; if (!yy_BlankLine()) goto l1151; goto l1150;
4844
+ l1151:; yypos= yypos1151; yythunkpos= yythunkpos1151;
4933
4845
  }
4934
- { int yypos1180= yypos, yythunkpos1180= yythunkpos; if (!yy_BulletListLoose()) goto l1180; goto l1175;
4935
- l1180:; yypos= yypos1180; yythunkpos= yythunkpos1180;
4846
+ { int yypos1152= yypos, yythunkpos1152= yythunkpos; if (!yy_BulletListLoose()) goto l1152; goto l1147;
4847
+ l1152:; yypos= yypos1152; yythunkpos= yythunkpos1152;
4936
4848
  } yyDo(yy_2_BulletListTight, yybegin, yyend);
4937
4849
  yyprintf((stderr, " ok %s @ %s\n", "BulletListTight", yybuf+yypos)); yyDo(yyPop, 1, 0);
4938
4850
  return 1;
4939
- l1175:; yypos= yypos0; yythunkpos= yythunkpos0;
4851
+ l1147:; yypos= yypos0; yythunkpos= yythunkpos0;
4940
4852
  yyprintf((stderr, " fail %s @ %s\n", "BulletListTight", yybuf+yypos));
4941
4853
  return 0;
4942
4854
  }
4943
4855
  YY_RULE(int) yy_Spacechar()
4944
4856
  { int yypos0= yypos, yythunkpos0= yythunkpos;
4945
4857
  yyprintf((stderr, "%s\n", "Spacechar"));
4946
- { int yypos1182= yypos, yythunkpos1182= yythunkpos; if (!yymatchChar(' ')) goto l1183; goto l1182;
4947
- l1183:; yypos= yypos1182; yythunkpos= yythunkpos1182; if (!yymatchChar('\t')) goto l1181;
4858
+ { int yypos1154= yypos, yythunkpos1154= yythunkpos; if (!yymatchChar(' ')) goto l1155; goto l1154;
4859
+ l1155:; yypos= yypos1154; yythunkpos= yythunkpos1154; if (!yymatchChar('\t')) goto l1153;
4948
4860
  }
4949
- l1182:;
4861
+ l1154:;
4950
4862
  yyprintf((stderr, " ok %s @ %s\n", "Spacechar", yybuf+yypos));
4951
4863
  return 1;
4952
- l1181:; yypos= yypos0; yythunkpos= yythunkpos0;
4864
+ l1153:; yypos= yypos0; yythunkpos= yythunkpos0;
4953
4865
  yyprintf((stderr, " fail %s @ %s\n", "Spacechar", yybuf+yypos));
4954
4866
  return 0;
4955
4867
  }
4956
4868
  YY_RULE(int) yy_Bullet()
4957
4869
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
4870
+ yyprintf((stderr, "%s\n", "Bullet")); if (!yy_NonindentSpace()) goto l1156;
4871
+ { int yypos1157= yypos, yythunkpos1157= yythunkpos; if (!yymatchChar('+')) goto l1158; goto l1157;
4872
+ l1158:; yypos= yypos1157; yythunkpos= yythunkpos1157; if (!yymatchChar('*')) goto l1159; goto l1157;
4873
+ l1159:; yypos= yypos1157; yythunkpos= yythunkpos1157; if (!yymatchChar('-')) goto l1156;
4962
4874
  }
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;
4875
+ l1157:; if (!yy_Spacechar()) goto l1156;
4876
+ l1160:;
4877
+ { int yypos1161= yypos, yythunkpos1161= yythunkpos; if (!yy_Spacechar()) goto l1161; goto l1160;
4878
+ l1161:; yypos= yypos1161; yythunkpos= yythunkpos1161;
4967
4879
  }
4968
4880
  yyprintf((stderr, " ok %s @ %s\n", "Bullet", yybuf+yypos));
4969
4881
  return 1;
4970
- l1184:; yypos= yypos0; yythunkpos= yythunkpos0;
4882
+ l1156:; yypos= yypos0; yythunkpos= yythunkpos0;
4971
4883
  yyprintf((stderr, " fail %s @ %s\n", "Bullet", yybuf+yypos));
4972
4884
  return 0;
4973
4885
  }
4974
4886
  YY_RULE(int) yy_VerbatimChunk()
4975
4887
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
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;
4888
+ yyprintf((stderr, "%s\n", "VerbatimChunk")); if (!yy_StartList()) goto l1162; yyDo(yySet, -1, 0);
4889
+ l1163:;
4890
+ { int yypos1164= yypos, yythunkpos1164= yythunkpos; if (!yy_BlankLine()) goto l1164; yyDo(yy_1_VerbatimChunk, yybegin, yyend); goto l1163;
4891
+ l1164:; yypos= yypos1164; yythunkpos= yythunkpos1164;
4892
+ } if (!yy_NonblankIndentedLine()) goto l1162; yyDo(yy_2_VerbatimChunk, yybegin, yyend);
4893
+ l1165:;
4894
+ { int yypos1166= yypos, yythunkpos1166= yythunkpos; if (!yy_NonblankIndentedLine()) goto l1166; yyDo(yy_2_VerbatimChunk, yybegin, yyend); goto l1165;
4895
+ l1166:; yypos= yypos1166; yythunkpos= yythunkpos1166;
4984
4896
  } yyDo(yy_3_VerbatimChunk, yybegin, yyend);
4985
4897
  yyprintf((stderr, " ok %s @ %s\n", "VerbatimChunk", yybuf+yypos)); yyDo(yyPop, 1, 0);
4986
4898
  return 1;
4987
- l1190:; yypos= yypos0; yythunkpos= yythunkpos0;
4899
+ l1162:; yypos= yypos0; yythunkpos= yythunkpos0;
4988
4900
  yyprintf((stderr, " fail %s @ %s\n", "VerbatimChunk", yybuf+yypos));
4989
4901
  return 0;
4990
4902
  }
4991
4903
  YY_RULE(int) yy_IndentedLine()
4992
4904
  { int yypos0= yypos, yythunkpos0= yythunkpos;
4993
- yyprintf((stderr, "%s\n", "IndentedLine")); if (!yy_Indent()) goto l1195; if (!yy_Line()) goto l1195;
4905
+ yyprintf((stderr, "%s\n", "IndentedLine")); if (!yy_Indent()) goto l1167; if (!yy_Line()) goto l1167;
4994
4906
  yyprintf((stderr, " ok %s @ %s\n", "IndentedLine", yybuf+yypos));
4995
4907
  return 1;
4996
- l1195:; yypos= yypos0; yythunkpos= yythunkpos0;
4908
+ l1167:; yypos= yypos0; yythunkpos= yythunkpos0;
4997
4909
  yyprintf((stderr, " fail %s @ %s\n", "IndentedLine", yybuf+yypos));
4998
4910
  return 0;
4999
4911
  }
5000
4912
  YY_RULE(int) yy_NonblankIndentedLine()
5001
4913
  { int yypos0= yypos, yythunkpos0= yythunkpos;
5002
4914
  yyprintf((stderr, "%s\n", "NonblankIndentedLine"));
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;
4915
+ { int yypos1169= yypos, yythunkpos1169= yythunkpos; if (!yy_BlankLine()) goto l1169; goto l1168;
4916
+ l1169:; yypos= yypos1169; yythunkpos= yythunkpos1169;
4917
+ } if (!yy_IndentedLine()) goto l1168;
5006
4918
  yyprintf((stderr, " ok %s @ %s\n", "NonblankIndentedLine", yybuf+yypos));
5007
4919
  return 1;
5008
- l1196:; yypos= yypos0; yythunkpos= yythunkpos0;
4920
+ l1168:; yypos= yypos0; yythunkpos= yythunkpos0;
5009
4921
  yyprintf((stderr, " fail %s @ %s\n", "NonblankIndentedLine", yybuf+yypos));
5010
4922
  return 0;
5011
4923
  }
5012
4924
  YY_RULE(int) yy_Line()
5013
4925
  { int yypos0= yypos, yythunkpos0= yythunkpos;
5014
- yyprintf((stderr, "%s\n", "Line")); if (!yy_RawLine()) goto l1198; yyDo(yy_1_Line, yybegin, yyend);
4926
+ yyprintf((stderr, "%s\n", "Line")); if (!yy_RawLine()) goto l1170; yyDo(yy_1_Line, yybegin, yyend);
5015
4927
  yyprintf((stderr, " ok %s @ %s\n", "Line", yybuf+yypos));
5016
4928
  return 1;
5017
- l1198:; yypos= yypos0; yythunkpos= yythunkpos0;
4929
+ l1170:; yypos= yypos0; yythunkpos= yythunkpos0;
5018
4930
  yyprintf((stderr, " fail %s @ %s\n", "Line", yybuf+yypos));
5019
4931
  return 0;
5020
4932
  }
5021
4933
  YY_RULE(int) yy_BlockQuoteRaw()
5022
4934
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
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;
4935
+ yyprintf((stderr, "%s\n", "BlockQuoteRaw")); if (!yy_StartList()) goto l1171; yyDo(yySet, -1, 0); if (!yymatchChar('>')) goto l1171;
4936
+ { int yypos1174= yypos, yythunkpos1174= yythunkpos; if (!yymatchChar(' ')) goto l1174; goto l1175;
4937
+ l1174:; yypos= yypos1174; yythunkpos= yythunkpos1174;
5026
4938
  }
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;
4939
+ l1175:; if (!yy_Line()) goto l1171; yyDo(yy_1_BlockQuoteRaw, yybegin, yyend);
4940
+ l1176:;
4941
+ { int yypos1177= yypos, yythunkpos1177= yythunkpos;
4942
+ { int yypos1178= yypos, yythunkpos1178= yythunkpos; if (!yymatchChar('>')) goto l1178; goto l1177;
4943
+ l1178:; yypos= yypos1178; yythunkpos= yythunkpos1178;
5032
4944
  }
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;
4945
+ { int yypos1179= yypos, yythunkpos1179= yythunkpos; if (!yy_BlankLine()) goto l1179; goto l1177;
4946
+ l1179:; yypos= yypos1179; yythunkpos= yythunkpos1179;
4947
+ } if (!yy_Line()) goto l1177; yyDo(yy_2_BlockQuoteRaw, yybegin, yyend); goto l1176;
4948
+ l1177:; yypos= yypos1177; yythunkpos= yythunkpos1177;
5037
4949
  }
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;
5041
- }
5042
- l1200:;
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;
5046
- }
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;
5052
- }
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;
4950
+ l1180:;
4951
+ { int yypos1181= yypos, yythunkpos1181= yythunkpos; if (!yy_BlankLine()) goto l1181; yyDo(yy_3_BlockQuoteRaw, yybegin, yyend); goto l1180;
4952
+ l1181:; yypos= yypos1181; yythunkpos= yythunkpos1181;
4953
+ }
4954
+ l1172:;
4955
+ { int yypos1173= yypos, yythunkpos1173= yythunkpos; if (!yymatchChar('>')) goto l1173;
4956
+ { int yypos1182= yypos, yythunkpos1182= yythunkpos; if (!yymatchChar(' ')) goto l1182; goto l1183;
4957
+ l1182:; yypos= yypos1182; yythunkpos= yythunkpos1182;
4958
+ }
4959
+ l1183:; if (!yy_Line()) goto l1173; yyDo(yy_1_BlockQuoteRaw, yybegin, yyend);
4960
+ l1184:;
4961
+ { int yypos1185= yypos, yythunkpos1185= yythunkpos;
4962
+ { int yypos1186= yypos, yythunkpos1186= yythunkpos; if (!yymatchChar('>')) goto l1186; goto l1185;
4963
+ l1186:; yypos= yypos1186; yythunkpos= yythunkpos1186;
4964
+ }
4965
+ { int yypos1187= yypos, yythunkpos1187= yythunkpos; if (!yy_BlankLine()) goto l1187; goto l1185;
4966
+ l1187:; yypos= yypos1187; yythunkpos= yythunkpos1187;
4967
+ } if (!yy_Line()) goto l1185; yyDo(yy_2_BlockQuoteRaw, yybegin, yyend); goto l1184;
4968
+ l1185:; yypos= yypos1185; yythunkpos= yythunkpos1185;
5057
4969
  }
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;
4970
+ l1188:;
4971
+ { int yypos1189= yypos, yythunkpos1189= yythunkpos; if (!yy_BlankLine()) goto l1189; yyDo(yy_3_BlockQuoteRaw, yybegin, yyend); goto l1188;
4972
+ l1189:; yypos= yypos1189; yythunkpos= yythunkpos1189;
4973
+ } goto l1172;
4974
+ l1173:; yypos= yypos1173; yythunkpos= yythunkpos1173;
5063
4975
  } yyDo(yy_4_BlockQuoteRaw, yybegin, yyend);
5064
4976
  yyprintf((stderr, " ok %s @ %s\n", "BlockQuoteRaw", yybuf+yypos)); yyDo(yyPop, 1, 0);
5065
4977
  return 1;
5066
- l1199:; yypos= yypos0; yythunkpos= yythunkpos0;
4978
+ l1171:; yypos= yypos0; yythunkpos= yythunkpos0;
5067
4979
  yyprintf((stderr, " fail %s @ %s\n", "BlockQuoteRaw", yybuf+yypos));
5068
4980
  return 0;
5069
4981
  }
5070
4982
  YY_RULE(int) yy_Endline()
5071
4983
  { int yypos0= yypos, yythunkpos0= yythunkpos;
5072
4984
  yyprintf((stderr, "%s\n", "Endline"));
5073
- { int yypos1219= yypos, yythunkpos1219= yythunkpos; if (!yy_TerminalEndline()) goto l1220; goto l1219;
5074
- l1220:; yypos= yypos1219; yythunkpos= yythunkpos1219; if (!yy_NormalEndline()) goto l1218;
4985
+ { int yypos1191= yypos, yythunkpos1191= yythunkpos; if (!yy_TerminalEndline()) goto l1192; goto l1191;
4986
+ l1192:; yypos= yypos1191; yythunkpos= yythunkpos1191; if (!yy_NormalEndline()) goto l1190;
5075
4987
  }
5076
- l1219:;
4988
+ l1191:;
5077
4989
  yyprintf((stderr, " ok %s @ %s\n", "Endline", yybuf+yypos));
5078
4990
  return 1;
5079
- l1218:; yypos= yypos0; yythunkpos= yythunkpos0;
4991
+ l1190:; yypos= yypos0; yythunkpos= yythunkpos0;
5080
4992
  yyprintf((stderr, " fail %s @ %s\n", "Endline", yybuf+yypos));
5081
4993
  return 0;
5082
4994
  }
5083
4995
  YY_RULE(int) yy_SetextHeading2()
5084
4996
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
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);
4997
+ yyprintf((stderr, "%s\n", "SetextHeading2")); if (!yy_StartList()) goto l1193; yyDo(yySet, -1, 0);
4998
+ { int yypos1196= yypos, yythunkpos1196= yythunkpos; if (!yy_Endline()) goto l1196; goto l1193;
4999
+ l1196:; yypos= yypos1196; yythunkpos= yythunkpos1196;
5000
+ } if (!yy_Inline()) goto l1193; yyDo(yy_1_SetextHeading2, yybegin, yyend);
5001
+ l1194:;
5002
+ { int yypos1195= yypos, yythunkpos1195= yythunkpos;
5003
+ { int yypos1197= yypos, yythunkpos1197= yythunkpos; if (!yy_Endline()) goto l1197; goto l1195;
5004
+ l1197:; yypos= yypos1197; yythunkpos= yythunkpos1197;
5005
+ } if (!yy_Inline()) goto l1195; yyDo(yy_1_SetextHeading2, yybegin, yyend); goto l1194;
5006
+ l1195:; yypos= yypos1195; yythunkpos= yythunkpos1195;
5007
+ } if (!yy_Newline()) goto l1193; if (!yymatchString("---")) goto l1193;
5008
+ l1198:;
5009
+ { int yypos1199= yypos, yythunkpos1199= yythunkpos; if (!yymatchChar('-')) goto l1199; goto l1198;
5010
+ l1199:; yypos= yypos1199; yythunkpos= yythunkpos1199;
5011
+ } if (!yy_Newline()) goto l1193; yyDo(yy_2_SetextHeading2, yybegin, yyend);
5100
5012
  yyprintf((stderr, " ok %s @ %s\n", "SetextHeading2", yybuf+yypos)); yyDo(yyPop, 1, 0);
5101
5013
  return 1;
5102
- l1221:; yypos= yypos0; yythunkpos= yythunkpos0;
5014
+ l1193:; yypos= yypos0; yythunkpos= yythunkpos0;
5103
5015
  yyprintf((stderr, " fail %s @ %s\n", "SetextHeading2", yybuf+yypos));
5104
5016
  return 0;
5105
5017
  }
5106
5018
  YY_RULE(int) yy_SetextHeading1()
5107
5019
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
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);
5020
+ yyprintf((stderr, "%s\n", "SetextHeading1")); if (!yy_StartList()) goto l1200; yyDo(yySet, -1, 0);
5021
+ { int yypos1203= yypos, yythunkpos1203= yythunkpos; if (!yy_Endline()) goto l1203; goto l1200;
5022
+ l1203:; yypos= yypos1203; yythunkpos= yythunkpos1203;
5023
+ } if (!yy_Inline()) goto l1200; yyDo(yy_1_SetextHeading1, yybegin, yyend);
5024
+ l1201:;
5025
+ { int yypos1202= yypos, yythunkpos1202= yythunkpos;
5026
+ { int yypos1204= yypos, yythunkpos1204= yythunkpos; if (!yy_Endline()) goto l1204; goto l1202;
5027
+ l1204:; yypos= yypos1204; yythunkpos= yythunkpos1204;
5028
+ } if (!yy_Inline()) goto l1202; yyDo(yy_1_SetextHeading1, yybegin, yyend); goto l1201;
5029
+ l1202:; yypos= yypos1202; yythunkpos= yythunkpos1202;
5030
+ } if (!yy_Newline()) goto l1200; if (!yymatchString("===")) goto l1200;
5031
+ l1205:;
5032
+ { int yypos1206= yypos, yythunkpos1206= yythunkpos; if (!yymatchChar('=')) goto l1206; goto l1205;
5033
+ l1206:; yypos= yypos1206; yythunkpos= yythunkpos1206;
5034
+ } if (!yy_Newline()) goto l1200; yyDo(yy_2_SetextHeading1, yybegin, yyend);
5123
5035
  yyprintf((stderr, " ok %s @ %s\n", "SetextHeading1", yybuf+yypos)); yyDo(yyPop, 1, 0);
5124
5036
  return 1;
5125
- l1228:; yypos= yypos0; yythunkpos= yythunkpos0;
5037
+ l1200:; yypos= yypos0; yythunkpos= yythunkpos0;
5126
5038
  yyprintf((stderr, " fail %s @ %s\n", "SetextHeading1", yybuf+yypos));
5127
5039
  return 0;
5128
5040
  }
5129
5041
  YY_RULE(int) yy_SetextHeading()
5130
5042
  { int yypos0= yypos, yythunkpos0= yythunkpos;
5131
5043
  yyprintf((stderr, "%s\n", "SetextHeading"));
5132
- { int yypos1236= yypos, yythunkpos1236= yythunkpos; if (!yy_SetextHeading1()) goto l1237; goto l1236;
5133
- l1237:; yypos= yypos1236; yythunkpos= yythunkpos1236; if (!yy_SetextHeading2()) goto l1235;
5044
+ { int yypos1208= yypos, yythunkpos1208= yythunkpos; if (!yy_SetextHeading1()) goto l1209; goto l1208;
5045
+ l1209:; yypos= yypos1208; yythunkpos= yythunkpos1208; if (!yy_SetextHeading2()) goto l1207;
5134
5046
  }
5135
- l1236:;
5047
+ l1208:;
5136
5048
  yyprintf((stderr, " ok %s @ %s\n", "SetextHeading", yybuf+yypos));
5137
5049
  return 1;
5138
- l1235:; yypos= yypos0; yythunkpos= yythunkpos0;
5050
+ l1207:; yypos= yypos0; yythunkpos= yythunkpos0;
5139
5051
  yyprintf((stderr, " fail %s @ %s\n", "SetextHeading", yybuf+yypos));
5140
5052
  return 0;
5141
5053
  }
5142
5054
  YY_RULE(int) yy_AtxHeading()
5143
5055
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 2, 0);
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;
5056
+ yyprintf((stderr, "%s\n", "AtxHeading")); if (!yy_AtxStart()) goto l1210; yyDo(yySet, -2, 0); if (!yy_Sp()) goto l1210; if (!yy_StartList()) goto l1210; yyDo(yySet, -1, 0); if (!yy_AtxInline()) goto l1210; yyDo(yy_1_AtxHeading, yybegin, yyend);
5057
+ l1211:;
5058
+ { int yypos1212= yypos, yythunkpos1212= yythunkpos; if (!yy_AtxInline()) goto l1212; yyDo(yy_1_AtxHeading, yybegin, yyend); goto l1211;
5059
+ l1212:; yypos= yypos1212; yythunkpos= yythunkpos1212;
5060
+ }
5061
+ { int yypos1213= yypos, yythunkpos1213= yythunkpos; if (!yy_Sp()) goto l1213;
5062
+ l1215:;
5063
+ { int yypos1216= yypos, yythunkpos1216= yythunkpos; if (!yymatchChar('#')) goto l1216; goto l1215;
5064
+ l1216:; yypos= yypos1216; yythunkpos= yythunkpos1216;
5065
+ } if (!yy_Sp()) goto l1213; goto l1214;
5066
+ l1213:; yypos= yypos1213; yythunkpos= yythunkpos1213;
5155
5067
  }
5156
- l1242:; if (!yy_Newline()) goto l1238; yyDo(yy_2_AtxHeading, yybegin, yyend);
5068
+ l1214:; if (!yy_Newline()) goto l1210; yyDo(yy_2_AtxHeading, yybegin, yyend);
5157
5069
  yyprintf((stderr, " ok %s @ %s\n", "AtxHeading", yybuf+yypos)); yyDo(yyPop, 2, 0);
5158
5070
  return 1;
5159
- l1238:; yypos= yypos0; yythunkpos= yythunkpos0;
5071
+ l1210:; yypos= yypos0; yythunkpos= yythunkpos0;
5160
5072
  yyprintf((stderr, " fail %s @ %s\n", "AtxHeading", yybuf+yypos));
5161
5073
  return 0;
5162
5074
  }
5163
5075
  YY_RULE(int) yy_AtxStart()
5164
5076
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
5077
+ yyprintf((stderr, "%s\n", "AtxStart")); yyText(yybegin, yyend); if (!(YY_BEGIN)) goto l1217;
5078
+ { int yypos1218= yypos, yythunkpos1218= yythunkpos; if (!yymatchString("######")) goto l1219; goto l1218;
5079
+ l1219:; yypos= yypos1218; yythunkpos= yythunkpos1218; if (!yymatchString("#####")) goto l1220; goto l1218;
5080
+ l1220:; yypos= yypos1218; yythunkpos= yythunkpos1218; if (!yymatchString("####")) goto l1221; goto l1218;
5081
+ l1221:; yypos= yypos1218; yythunkpos= yythunkpos1218; if (!yymatchString("###")) goto l1222; goto l1218;
5082
+ l1222:; yypos= yypos1218; yythunkpos= yythunkpos1218; if (!yymatchString("##")) goto l1223; goto l1218;
5083
+ l1223:; yypos= yypos1218; yythunkpos= yythunkpos1218; if (!yymatchChar('#')) goto l1217;
5172
5084
  }
5173
- l1246:; yyText(yybegin, yyend); if (!(YY_END)) goto l1245; yyDo(yy_1_AtxStart, yybegin, yyend);
5085
+ l1218:; yyText(yybegin, yyend); if (!(YY_END)) goto l1217; yyDo(yy_1_AtxStart, yybegin, yyend);
5174
5086
  yyprintf((stderr, " ok %s @ %s\n", "AtxStart", yybuf+yypos));
5175
5087
  return 1;
5176
- l1245:; yypos= yypos0; yythunkpos= yythunkpos0;
5088
+ l1217:; yypos= yypos0; yythunkpos= yythunkpos0;
5177
5089
  yyprintf((stderr, " fail %s @ %s\n", "AtxStart", yybuf+yypos));
5178
5090
  return 0;
5179
5091
  }
5180
5092
  YY_RULE(int) yy_Inline()
5181
5093
  { int yypos0= yypos, yythunkpos0= yythunkpos;
5182
5094
  yyprintf((stderr, "%s\n", "Inline"));
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:;
5095
+ { int yypos1225= yypos, yythunkpos1225= yythunkpos; if (!yy_Str()) goto l1226; goto l1225;
5096
+ l1226:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_LineBreak()) goto l1227; goto l1225;
5097
+ l1227:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_Endline()) goto l1228; goto l1225;
5098
+ l1228:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_UlOrStarLine()) goto l1229; goto l1225;
5099
+ l1229:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_Space()) goto l1230; goto l1225;
5100
+ l1230:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_Strong()) goto l1231; goto l1225;
5101
+ l1231:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_Emph()) goto l1232; goto l1225;
5102
+ l1232:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_Image()) goto l1233; goto l1225;
5103
+ l1233:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_Link()) goto l1234; goto l1225;
5104
+ l1234:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_NoteReference()) goto l1235; goto l1225;
5105
+ l1235:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_InlineNote()) goto l1236; goto l1225;
5106
+ l1236:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_Code()) goto l1237; goto l1225;
5107
+ l1237:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_RawHtml()) goto l1238; goto l1225;
5108
+ l1238:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_Entity()) goto l1239; goto l1225;
5109
+ l1239:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_EscapedChar()) goto l1240; goto l1225;
5110
+ l1240:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_Smart()) goto l1241; goto l1225;
5111
+ l1241:; yypos= yypos1225; yythunkpos= yythunkpos1225; if (!yy_Symbol()) goto l1224;
5112
+ }
5113
+ l1225:;
5202
5114
  yyprintf((stderr, " ok %s @ %s\n", "Inline", yybuf+yypos));
5203
5115
  return 1;
5204
- l1252:; yypos= yypos0; yythunkpos= yythunkpos0;
5116
+ l1224:; yypos= yypos0; yythunkpos= yythunkpos0;
5205
5117
  yyprintf((stderr, " fail %s @ %s\n", "Inline", yybuf+yypos));
5206
5118
  return 0;
5207
5119
  }
5208
5120
  YY_RULE(int) yy_Sp()
5209
5121
  {
5210
5122
  yyprintf((stderr, "%s\n", "Sp"));
5211
- l1271:;
5212
- { int yypos1272= yypos, yythunkpos1272= yythunkpos; if (!yy_Spacechar()) goto l1272; goto l1271;
5213
- l1272:; yypos= yypos1272; yythunkpos= yythunkpos1272;
5123
+ l1243:;
5124
+ { int yypos1244= yypos, yythunkpos1244= yythunkpos; if (!yy_Spacechar()) goto l1244; goto l1243;
5125
+ l1244:; yypos= yypos1244; yythunkpos= yythunkpos1244;
5214
5126
  }
5215
5127
  yyprintf((stderr, " ok %s @ %s\n", "Sp", yybuf+yypos));
5216
5128
  return 1;
@@ -5218,321 +5130,321 @@ YY_RULE(int) yy_Sp()
5218
5130
  YY_RULE(int) yy_Newline()
5219
5131
  { int yypos0= yypos, yythunkpos0= yythunkpos;
5220
5132
  yyprintf((stderr, "%s\n", "Newline"));
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;
5133
+ { int yypos1246= yypos, yythunkpos1246= yythunkpos; if (!yymatchChar('\n')) goto l1247; goto l1246;
5134
+ l1247:; yypos= yypos1246; yythunkpos= yythunkpos1246; if (!yymatchChar('\r')) goto l1245;
5135
+ { int yypos1248= yypos, yythunkpos1248= yythunkpos; if (!yymatchChar('\n')) goto l1248; goto l1249;
5136
+ l1248:; yypos= yypos1248; yythunkpos= yythunkpos1248;
5225
5137
  }
5226
- l1277:;
5138
+ l1249:;
5227
5139
  }
5228
- l1274:;
5140
+ l1246:;
5229
5141
  yyprintf((stderr, " ok %s @ %s\n", "Newline", yybuf+yypos));
5230
5142
  return 1;
5231
- l1273:; yypos= yypos0; yythunkpos= yythunkpos0;
5143
+ l1245:; yypos= yypos0; yythunkpos= yythunkpos0;
5232
5144
  yyprintf((stderr, " fail %s @ %s\n", "Newline", yybuf+yypos));
5233
5145
  return 0;
5234
5146
  }
5235
5147
  YY_RULE(int) yy_AtxInline()
5236
5148
  { int yypos0= yypos, yythunkpos0= yythunkpos;
5237
5149
  yyprintf((stderr, "%s\n", "AtxInline"));
5238
- { int yypos1279= yypos, yythunkpos1279= yythunkpos; if (!yy_Newline()) goto l1279; goto l1278;
5239
- l1279:; yypos= yypos1279; yythunkpos= yythunkpos1279;
5150
+ { int yypos1251= yypos, yythunkpos1251= yythunkpos; if (!yy_Newline()) goto l1251; goto l1250;
5151
+ l1251:; yypos= yypos1251; yythunkpos= yythunkpos1251;
5240
5152
  }
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;
5153
+ { int yypos1252= yypos, yythunkpos1252= yythunkpos; if (!yy_Sp()) goto l1252;
5154
+ l1253:;
5155
+ { int yypos1254= yypos, yythunkpos1254= yythunkpos; if (!yymatchChar('#')) goto l1254; goto l1253;
5156
+ l1254:; yypos= yypos1254; yythunkpos= yythunkpos1254;
5157
+ } if (!yy_Sp()) goto l1252; if (!yy_Newline()) goto l1252; goto l1250;
5158
+ l1252:; yypos= yypos1252; yythunkpos= yythunkpos1252;
5159
+ } if (!yy_Inline()) goto l1250;
5248
5160
  yyprintf((stderr, " ok %s @ %s\n", "AtxInline", yybuf+yypos));
5249
5161
  return 1;
5250
- l1278:; yypos= yypos0; yythunkpos= yythunkpos0;
5162
+ l1250:; yypos= yypos0; yythunkpos= yythunkpos0;
5251
5163
  yyprintf((stderr, " fail %s @ %s\n", "AtxInline", yybuf+yypos));
5252
5164
  return 0;
5253
5165
  }
5254
5166
  YY_RULE(int) yy_Inlines()
5255
5167
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 2, 0);
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;
5168
+ yyprintf((stderr, "%s\n", "Inlines")); if (!yy_StartList()) goto l1255; yyDo(yySet, -2, 0);
5169
+ { int yypos1258= yypos, yythunkpos1258= yythunkpos;
5170
+ { int yypos1260= yypos, yythunkpos1260= yythunkpos; if (!yy_Endline()) goto l1260; goto l1259;
5171
+ l1260:; yypos= yypos1260; yythunkpos= yythunkpos1260;
5172
+ } if (!yy_Inline()) goto l1259; yyDo(yy_1_Inlines, yybegin, yyend); goto l1258;
5173
+ l1259:; yypos= yypos1258; yythunkpos= yythunkpos1258; if (!yy_Endline()) goto l1255; yyDo(yySet, -1, 0);
5174
+ { int yypos1261= yypos, yythunkpos1261= yythunkpos; if (!yy_Inline()) goto l1255; yypos= yypos1261; yythunkpos= yythunkpos1261;
5263
5175
  } yyDo(yy_2_Inlines, yybegin, yyend);
5264
5176
  }
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;
5177
+ l1258:;
5178
+ l1256:;
5179
+ { int yypos1257= yypos, yythunkpos1257= yythunkpos;
5180
+ { int yypos1262= yypos, yythunkpos1262= yythunkpos;
5181
+ { int yypos1264= yypos, yythunkpos1264= yythunkpos; if (!yy_Endline()) goto l1264; goto l1263;
5182
+ l1264:; yypos= yypos1264; yythunkpos= yythunkpos1264;
5183
+ } if (!yy_Inline()) goto l1263; yyDo(yy_1_Inlines, yybegin, yyend); goto l1262;
5184
+ l1263:; yypos= yypos1262; yythunkpos= yythunkpos1262; if (!yy_Endline()) goto l1257; yyDo(yySet, -1, 0);
5185
+ { int yypos1265= yypos, yythunkpos1265= yythunkpos; if (!yy_Inline()) goto l1257; yypos= yypos1265; yythunkpos= yythunkpos1265;
5274
5186
  } yyDo(yy_2_Inlines, yybegin, yyend);
5275
5187
  }
5276
- l1290:; goto l1284;
5277
- l1285:; yypos= yypos1285; yythunkpos= yythunkpos1285;
5188
+ l1262:; goto l1256;
5189
+ l1257:; yypos= yypos1257; yythunkpos= yythunkpos1257;
5278
5190
  }
5279
- { int yypos1294= yypos, yythunkpos1294= yythunkpos; if (!yy_Endline()) goto l1294; goto l1295;
5280
- l1294:; yypos= yypos1294; yythunkpos= yythunkpos1294;
5191
+ { int yypos1266= yypos, yythunkpos1266= yythunkpos; if (!yy_Endline()) goto l1266; goto l1267;
5192
+ l1266:; yypos= yypos1266; yythunkpos= yythunkpos1266;
5281
5193
  }
5282
- l1295:; yyDo(yy_3_Inlines, yybegin, yyend);
5194
+ l1267:; yyDo(yy_3_Inlines, yybegin, yyend);
5283
5195
  yyprintf((stderr, " ok %s @ %s\n", "Inlines", yybuf+yypos)); yyDo(yyPop, 2, 0);
5284
5196
  return 1;
5285
- l1283:; yypos= yypos0; yythunkpos= yythunkpos0;
5197
+ l1255:; yypos= yypos0; yythunkpos= yythunkpos0;
5286
5198
  yyprintf((stderr, " fail %s @ %s\n", "Inlines", yybuf+yypos));
5287
5199
  return 0;
5288
5200
  }
5289
5201
  YY_RULE(int) yy_NonindentSpace()
5290
5202
  { int yypos0= yypos, yythunkpos0= yythunkpos;
5291
5203
  yyprintf((stderr, "%s\n", "NonindentSpace"));
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;
5204
+ { int yypos1269= yypos, yythunkpos1269= yythunkpos; if (!yymatchString(" ")) goto l1270; goto l1269;
5205
+ l1270:; yypos= yypos1269; yythunkpos= yythunkpos1269; if (!yymatchString(" ")) goto l1271; goto l1269;
5206
+ l1271:; yypos= yypos1269; yythunkpos= yythunkpos1269; if (!yymatchChar(' ')) goto l1272; goto l1269;
5207
+ l1272:; yypos= yypos1269; yythunkpos= yythunkpos1269; if (!yymatchString("")) goto l1268;
5296
5208
  }
5297
- l1297:;
5209
+ l1269:;
5298
5210
  yyprintf((stderr, " ok %s @ %s\n", "NonindentSpace", yybuf+yypos));
5299
5211
  return 1;
5300
- l1296:; yypos= yypos0; yythunkpos= yythunkpos0;
5212
+ l1268:; yypos= yypos0; yythunkpos= yythunkpos0;
5301
5213
  yyprintf((stderr, " fail %s @ %s\n", "NonindentSpace", yybuf+yypos));
5302
5214
  return 0;
5303
5215
  }
5304
5216
  YY_RULE(int) yy_Plain()
5305
5217
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
5306
- yyprintf((stderr, "%s\n", "Plain")); if (!yy_Inlines()) goto l1301; yyDo(yySet, -1, 0); yyDo(yy_1_Plain, yybegin, yyend);
5218
+ yyprintf((stderr, "%s\n", "Plain")); if (!yy_Inlines()) goto l1273; yyDo(yySet, -1, 0); yyDo(yy_1_Plain, yybegin, yyend);
5307
5219
  yyprintf((stderr, " ok %s @ %s\n", "Plain", yybuf+yypos)); yyDo(yyPop, 1, 0);
5308
5220
  return 1;
5309
- l1301:; yypos= yypos0; yythunkpos= yythunkpos0;
5221
+ l1273:; yypos= yypos0; yythunkpos= yythunkpos0;
5310
5222
  yyprintf((stderr, " fail %s @ %s\n", "Plain", yybuf+yypos));
5311
5223
  return 0;
5312
5224
  }
5313
5225
  YY_RULE(int) yy_Para()
5314
5226
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
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;
5227
+ yyprintf((stderr, "%s\n", "Para")); if (!yy_NonindentSpace()) goto l1274; if (!yy_Inlines()) goto l1274; yyDo(yySet, -1, 0); if (!yy_BlankLine()) goto l1274;
5228
+ l1275:;
5229
+ { int yypos1276= yypos, yythunkpos1276= yythunkpos; if (!yy_BlankLine()) goto l1276; goto l1275;
5230
+ l1276:; yypos= yypos1276; yythunkpos= yythunkpos1276;
5319
5231
  } yyDo(yy_1_Para, yybegin, yyend);
5320
5232
  yyprintf((stderr, " ok %s @ %s\n", "Para", yybuf+yypos)); yyDo(yyPop, 1, 0);
5321
5233
  return 1;
5322
- l1302:; yypos= yypos0; yythunkpos= yythunkpos0;
5234
+ l1274:; yypos= yypos0; yythunkpos= yythunkpos0;
5323
5235
  yyprintf((stderr, " fail %s @ %s\n", "Para", yybuf+yypos));
5324
5236
  return 0;
5325
5237
  }
5326
5238
  YY_RULE(int) yy_StyleBlock()
5327
5239
  { 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;
5240
+ yyprintf((stderr, "%s\n", "StyleBlock")); yyText(yybegin, yyend); if (!(YY_BEGIN)) goto l1277; if (!yy_InStyleTags()) goto l1277; yyText(yybegin, yyend); if (!(YY_END)) goto l1277;
5241
+ l1278:;
5242
+ { int yypos1279= yypos, yythunkpos1279= yythunkpos; if (!yy_BlankLine()) goto l1279; goto l1278;
5243
+ l1279:; yypos= yypos1279; yythunkpos= yythunkpos1279;
5332
5244
  } yyDo(yy_1_StyleBlock, yybegin, yyend);
5333
5245
  yyprintf((stderr, " ok %s @ %s\n", "StyleBlock", yybuf+yypos));
5334
5246
  return 1;
5335
- l1305:; yypos= yypos0; yythunkpos= yythunkpos0;
5247
+ l1277:; yypos= yypos0; yythunkpos= yythunkpos0;
5336
5248
  yyprintf((stderr, " fail %s @ %s\n", "StyleBlock", yybuf+yypos));
5337
5249
  return 0;
5338
5250
  }
5339
5251
  YY_RULE(int) yy_HtmlBlock()
5340
5252
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
5253
+ yyprintf((stderr, "%s\n", "HtmlBlock")); yyText(yybegin, yyend); if (!(YY_BEGIN)) goto l1280;
5254
+ { int yypos1281= yypos, yythunkpos1281= yythunkpos; if (!yy_HtmlBlockInTags()) goto l1282; goto l1281;
5255
+ l1282:; yypos= yypos1281; yythunkpos= yythunkpos1281; if (!yy_HtmlComment()) goto l1283; goto l1281;
5256
+ l1283:; yypos= yypos1281; yythunkpos= yythunkpos1281; if (!yy_HtmlBlockSelfClosing()) goto l1280;
5345
5257
  }
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;
5258
+ l1281:; yyText(yybegin, yyend); if (!(YY_END)) goto l1280; if (!yy_BlankLine()) goto l1280;
5259
+ l1284:;
5260
+ { int yypos1285= yypos, yythunkpos1285= yythunkpos; if (!yy_BlankLine()) goto l1285; goto l1284;
5261
+ l1285:; yypos= yypos1285; yythunkpos= yythunkpos1285;
5350
5262
  } yyDo(yy_1_HtmlBlock, yybegin, yyend);
5351
5263
  yyprintf((stderr, " ok %s @ %s\n", "HtmlBlock", yybuf+yypos));
5352
5264
  return 1;
5353
- l1308:; yypos= yypos0; yythunkpos= yythunkpos0;
5265
+ l1280:; yypos= yypos0; yythunkpos= yythunkpos0;
5354
5266
  yyprintf((stderr, " fail %s @ %s\n", "HtmlBlock", yybuf+yypos));
5355
5267
  return 0;
5356
5268
  }
5357
5269
  YY_RULE(int) yy_BulletList()
5358
5270
  { int yypos0= yypos, yythunkpos0= yythunkpos;
5359
5271
  yyprintf((stderr, "%s\n", "BulletList"));
5360
- { int yypos1315= yypos, yythunkpos1315= yythunkpos; if (!yy_BulletListTight()) goto l1316; goto l1315;
5361
- l1316:; yypos= yypos1315; yythunkpos= yythunkpos1315; if (!yy_BulletListLoose()) goto l1314;
5272
+ { int yypos1287= yypos, yythunkpos1287= yythunkpos; if (!yy_BulletListTight()) goto l1288; goto l1287;
5273
+ l1288:; yypos= yypos1287; yythunkpos= yythunkpos1287; if (!yy_BulletListLoose()) goto l1286;
5362
5274
  }
5363
- l1315:;
5275
+ l1287:;
5364
5276
  yyprintf((stderr, " ok %s @ %s\n", "BulletList", yybuf+yypos));
5365
5277
  return 1;
5366
- l1314:; yypos= yypos0; yythunkpos= yythunkpos0;
5278
+ l1286:; yypos= yypos0; yythunkpos= yythunkpos0;
5367
5279
  yyprintf((stderr, " fail %s @ %s\n", "BulletList", yybuf+yypos));
5368
5280
  return 0;
5369
5281
  }
5370
5282
  YY_RULE(int) yy_OrderedList()
5371
5283
  { int yypos0= yypos, yythunkpos0= yythunkpos;
5372
5284
  yyprintf((stderr, "%s\n", "OrderedList"));
5373
- { int yypos1318= yypos, yythunkpos1318= yythunkpos; if (!yy_OrderedListTight()) goto l1319; goto l1318;
5374
- l1319:; yypos= yypos1318; yythunkpos= yythunkpos1318; if (!yy_OrderedListLoose()) goto l1317;
5285
+ { int yypos1290= yypos, yythunkpos1290= yythunkpos; if (!yy_OrderedListTight()) goto l1291; goto l1290;
5286
+ l1291:; yypos= yypos1290; yythunkpos= yythunkpos1290; if (!yy_OrderedListLoose()) goto l1289;
5375
5287
  }
5376
- l1318:;
5288
+ l1290:;
5377
5289
  yyprintf((stderr, " ok %s @ %s\n", "OrderedList", yybuf+yypos));
5378
5290
  return 1;
5379
- l1317:; yypos= yypos0; yythunkpos= yythunkpos0;
5291
+ l1289:; yypos= yypos0; yythunkpos= yythunkpos0;
5380
5292
  yyprintf((stderr, " fail %s @ %s\n", "OrderedList", yybuf+yypos));
5381
5293
  return 0;
5382
5294
  }
5383
5295
  YY_RULE(int) yy_Heading()
5384
5296
  { int yypos0= yypos, yythunkpos0= yythunkpos;
5385
5297
  yyprintf((stderr, "%s\n", "Heading"));
5386
- { int yypos1321= yypos, yythunkpos1321= yythunkpos; if (!yy_AtxHeading()) goto l1322; goto l1321;
5387
- l1322:; yypos= yypos1321; yythunkpos= yythunkpos1321; if (!yy_SetextHeading()) goto l1320;
5298
+ { int yypos1293= yypos, yythunkpos1293= yythunkpos; if (!yy_AtxHeading()) goto l1294; goto l1293;
5299
+ l1294:; yypos= yypos1293; yythunkpos= yythunkpos1293; if (!yy_SetextHeading()) goto l1292;
5388
5300
  }
5389
- l1321:;
5301
+ l1293:;
5390
5302
  yyprintf((stderr, " ok %s @ %s\n", "Heading", yybuf+yypos));
5391
5303
  return 1;
5392
- l1320:; yypos= yypos0; yythunkpos= yythunkpos0;
5304
+ l1292:; yypos= yypos0; yythunkpos= yythunkpos0;
5393
5305
  yyprintf((stderr, " fail %s @ %s\n", "Heading", yybuf+yypos));
5394
5306
  return 0;
5395
5307
  }
5396
5308
  YY_RULE(int) yy_HorizontalRule()
5397
5309
  { int yypos0= yypos, yythunkpos0= yythunkpos;
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;
5310
+ yyprintf((stderr, "%s\n", "HorizontalRule")); if (!yy_NonindentSpace()) goto l1295;
5311
+ { int yypos1296= yypos, yythunkpos1296= yythunkpos; if (!yymatchChar('*')) goto l1297; if (!yy_Sp()) goto l1297; if (!yymatchChar('*')) goto l1297; if (!yy_Sp()) goto l1297; if (!yymatchChar('*')) goto l1297;
5312
+ l1298:;
5313
+ { int yypos1299= yypos, yythunkpos1299= yythunkpos; if (!yy_Sp()) goto l1299; if (!yymatchChar('*')) goto l1299; goto l1298;
5314
+ l1299:; yypos= yypos1299; yythunkpos= yythunkpos1299;
5315
+ } goto l1296;
5316
+ l1297:; yypos= yypos1296; yythunkpos= yythunkpos1296; if (!yymatchChar('-')) goto l1300; if (!yy_Sp()) goto l1300; if (!yymatchChar('-')) goto l1300; if (!yy_Sp()) goto l1300; if (!yymatchChar('-')) goto l1300;
5317
+ l1301:;
5318
+ { int yypos1302= yypos, yythunkpos1302= yythunkpos; if (!yy_Sp()) goto l1302; if (!yymatchChar('-')) goto l1302; goto l1301;
5319
+ l1302:; yypos= yypos1302; yythunkpos= yythunkpos1302;
5320
+ } goto l1296;
5321
+ l1300:; yypos= yypos1296; yythunkpos= yythunkpos1296; if (!yymatchChar('_')) goto l1295; if (!yy_Sp()) goto l1295; if (!yymatchChar('_')) goto l1295; if (!yy_Sp()) goto l1295; if (!yymatchChar('_')) goto l1295;
5322
+ l1303:;
5323
+ { int yypos1304= yypos, yythunkpos1304= yythunkpos; if (!yy_Sp()) goto l1304; if (!yymatchChar('_')) goto l1304; goto l1303;
5324
+ l1304:; yypos= yypos1304; yythunkpos= yythunkpos1304;
5325
+ }
5326
+ }
5327
+ l1296:; if (!yy_Sp()) goto l1295; if (!yy_Newline()) goto l1295; if (!yy_BlankLine()) goto l1295;
5328
+ l1305:;
5329
+ { int yypos1306= yypos, yythunkpos1306= yythunkpos; if (!yy_BlankLine()) goto l1306; goto l1305;
5330
+ l1306:; yypos= yypos1306; yythunkpos= yythunkpos1306;
5419
5331
  } yyDo(yy_1_HorizontalRule, yybegin, yyend);
5420
5332
  yyprintf((stderr, " ok %s @ %s\n", "HorizontalRule", yybuf+yypos));
5421
5333
  return 1;
5422
- l1323:; yypos= yypos0; yythunkpos= yythunkpos0;
5334
+ l1295:; yypos= yypos0; yythunkpos= yythunkpos0;
5423
5335
  yyprintf((stderr, " fail %s @ %s\n", "HorizontalRule", yybuf+yypos));
5424
5336
  return 0;
5425
5337
  }
5426
5338
  YY_RULE(int) yy_Reference()
5427
5339
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 3, 0);
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;
5340
+ yyprintf((stderr, "%s\n", "Reference")); if (!yy_NonindentSpace()) goto l1307;
5341
+ { int yypos1308= yypos, yythunkpos1308= yythunkpos; if (!yymatchString("[]")) goto l1308; goto l1307;
5342
+ l1308:; yypos= yypos1308; yythunkpos= yythunkpos1308;
5343
+ } if (!yy_Label()) goto l1307; yyDo(yySet, -3, 0); if (!yymatchChar(':')) goto l1307; if (!yy_Spnl()) goto l1307; if (!yy_RefSrc()) goto l1307; yyDo(yySet, -2, 0); if (!yy_Spnl()) goto l1307; if (!yy_RefTitle()) goto l1307; yyDo(yySet, -1, 0);
5344
+ l1309:;
5345
+ { int yypos1310= yypos, yythunkpos1310= yythunkpos; if (!yy_BlankLine()) goto l1310; goto l1309;
5346
+ l1310:; yypos= yypos1310; yythunkpos= yythunkpos1310;
5435
5347
  } yyDo(yy_1_Reference, yybegin, yyend);
5436
5348
  yyprintf((stderr, " ok %s @ %s\n", "Reference", yybuf+yypos)); yyDo(yyPop, 3, 0);
5437
5349
  return 1;
5438
- l1335:; yypos= yypos0; yythunkpos= yythunkpos0;
5350
+ l1307:; yypos= yypos0; yythunkpos= yythunkpos0;
5439
5351
  yyprintf((stderr, " fail %s @ %s\n", "Reference", yybuf+yypos));
5440
5352
  return 0;
5441
5353
  }
5442
5354
  YY_RULE(int) yy_Note()
5443
5355
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 2, 0);
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;
5356
+ yyprintf((stderr, "%s\n", "Note")); yyText(yybegin, yyend); if (!( extension(EXT_NOTES) )) goto l1311; if (!yy_NonindentSpace()) goto l1311; if (!yy_RawNoteReference()) goto l1311; yyDo(yySet, -2, 0); if (!yymatchChar(':')) goto l1311; if (!yy_Sp()) goto l1311; if (!yy_StartList()) goto l1311; yyDo(yySet, -1, 0); if (!yy_RawNoteBlock()) goto l1311; yyDo(yy_1_Note, yybegin, yyend);
5357
+ l1312:;
5358
+ { int yypos1313= yypos, yythunkpos1313= yythunkpos;
5359
+ { int yypos1314= yypos, yythunkpos1314= yythunkpos; if (!yy_Indent()) goto l1313; yypos= yypos1314; yythunkpos= yythunkpos1314;
5360
+ } if (!yy_RawNoteBlock()) goto l1313; yyDo(yy_2_Note, yybegin, yyend); goto l1312;
5361
+ l1313:; yypos= yypos1313; yythunkpos= yythunkpos1313;
5450
5362
  } yyDo(yy_3_Note, yybegin, yyend);
5451
5363
  yyprintf((stderr, " ok %s @ %s\n", "Note", yybuf+yypos)); yyDo(yyPop, 2, 0);
5452
5364
  return 1;
5453
- l1339:; yypos= yypos0; yythunkpos= yythunkpos0;
5365
+ l1311:; yypos= yypos0; yythunkpos= yythunkpos0;
5454
5366
  yyprintf((stderr, " fail %s @ %s\n", "Note", yybuf+yypos));
5455
5367
  return 0;
5456
5368
  }
5457
5369
  YY_RULE(int) yy_Verbatim()
5458
5370
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
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;
5371
+ yyprintf((stderr, "%s\n", "Verbatim")); if (!yy_StartList()) goto l1315; yyDo(yySet, -1, 0); if (!yy_VerbatimChunk()) goto l1315; yyDo(yy_1_Verbatim, yybegin, yyend);
5372
+ l1316:;
5373
+ { int yypos1317= yypos, yythunkpos1317= yythunkpos; if (!yy_VerbatimChunk()) goto l1317; yyDo(yy_1_Verbatim, yybegin, yyend); goto l1316;
5374
+ l1317:; yypos= yypos1317; yythunkpos= yythunkpos1317;
5463
5375
  } yyDo(yy_2_Verbatim, yybegin, yyend);
5464
5376
  yyprintf((stderr, " ok %s @ %s\n", "Verbatim", yybuf+yypos)); yyDo(yyPop, 1, 0);
5465
5377
  return 1;
5466
- l1343:; yypos= yypos0; yythunkpos= yythunkpos0;
5378
+ l1315:; yypos= yypos0; yythunkpos= yythunkpos0;
5467
5379
  yyprintf((stderr, " fail %s @ %s\n", "Verbatim", yybuf+yypos));
5468
5380
  return 0;
5469
5381
  }
5470
5382
  YY_RULE(int) yy_BlockQuote()
5471
5383
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
5472
- yyprintf((stderr, "%s\n", "BlockQuote")); if (!yy_BlockQuoteRaw()) goto l1346; yyDo(yySet, -1, 0); yyDo(yy_1_BlockQuote, yybegin, yyend);
5384
+ yyprintf((stderr, "%s\n", "BlockQuote")); if (!yy_BlockQuoteRaw()) goto l1318; yyDo(yySet, -1, 0); yyDo(yy_1_BlockQuote, yybegin, yyend);
5473
5385
  yyprintf((stderr, " ok %s @ %s\n", "BlockQuote", yybuf+yypos)); yyDo(yyPop, 1, 0);
5474
5386
  return 1;
5475
- l1346:; yypos= yypos0; yythunkpos= yythunkpos0;
5387
+ l1318:; yypos= yypos0; yythunkpos= yythunkpos0;
5476
5388
  yyprintf((stderr, " fail %s @ %s\n", "BlockQuote", yybuf+yypos));
5477
5389
  return 0;
5478
5390
  }
5479
5391
  YY_RULE(int) yy_BlankLine()
5480
5392
  { int yypos0= yypos, yythunkpos0= yythunkpos;
5481
- yyprintf((stderr, "%s\n", "BlankLine")); if (!yy_Sp()) goto l1347; if (!yy_Newline()) goto l1347;
5393
+ yyprintf((stderr, "%s\n", "BlankLine")); if (!yy_Sp()) goto l1319; if (!yy_Newline()) goto l1319;
5482
5394
  yyprintf((stderr, " ok %s @ %s\n", "BlankLine", yybuf+yypos));
5483
5395
  return 1;
5484
- l1347:; yypos= yypos0; yythunkpos= yythunkpos0;
5396
+ l1319:; yypos= yypos0; yythunkpos= yythunkpos0;
5485
5397
  yyprintf((stderr, " fail %s @ %s\n", "BlankLine", yybuf+yypos));
5486
5398
  return 0;
5487
5399
  }
5488
5400
  YY_RULE(int) yy_Block()
5489
5401
  { int yypos0= yypos, yythunkpos0= yythunkpos;
5490
5402
  yyprintf((stderr, "%s\n", "Block"));
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:;
5403
+ l1321:;
5404
+ { int yypos1322= yypos, yythunkpos1322= yythunkpos; if (!yy_BlankLine()) goto l1322; goto l1321;
5405
+ l1322:; yypos= yypos1322; yythunkpos= yythunkpos1322;
5406
+ }
5407
+ { int yypos1323= yypos, yythunkpos1323= yythunkpos; if (!yy_BlockQuote()) goto l1324; goto l1323;
5408
+ l1324:; yypos= yypos1323; yythunkpos= yythunkpos1323; if (!yy_Verbatim()) goto l1325; goto l1323;
5409
+ l1325:; yypos= yypos1323; yythunkpos= yythunkpos1323; if (!yy_Note()) goto l1326; goto l1323;
5410
+ l1326:; yypos= yypos1323; yythunkpos= yythunkpos1323; if (!yy_Reference()) goto l1327; goto l1323;
5411
+ l1327:; yypos= yypos1323; yythunkpos= yythunkpos1323; if (!yy_HorizontalRule()) goto l1328; goto l1323;
5412
+ l1328:; yypos= yypos1323; yythunkpos= yythunkpos1323; if (!yy_Heading()) goto l1329; goto l1323;
5413
+ l1329:; yypos= yypos1323; yythunkpos= yythunkpos1323; if (!yy_OrderedList()) goto l1330; goto l1323;
5414
+ l1330:; yypos= yypos1323; yythunkpos= yythunkpos1323; if (!yy_BulletList()) goto l1331; goto l1323;
5415
+ l1331:; yypos= yypos1323; yythunkpos= yythunkpos1323; if (!yy_HtmlBlock()) goto l1332; goto l1323;
5416
+ l1332:; yypos= yypos1323; yythunkpos= yythunkpos1323; if (!yy_StyleBlock()) goto l1333; goto l1323;
5417
+ l1333:; yypos= yypos1323; yythunkpos= yythunkpos1323; if (!yy_Para()) goto l1334; goto l1323;
5418
+ l1334:; yypos= yypos1323; yythunkpos= yythunkpos1323; if (!yy_Plain()) goto l1320;
5419
+ }
5420
+ l1323:;
5509
5421
  yyprintf((stderr, " ok %s @ %s\n", "Block", yybuf+yypos));
5510
5422
  return 1;
5511
- l1348:; yypos= yypos0; yythunkpos= yythunkpos0;
5423
+ l1320:; yypos= yypos0; yythunkpos= yythunkpos0;
5512
5424
  yyprintf((stderr, " fail %s @ %s\n", "Block", yybuf+yypos));
5513
5425
  return 0;
5514
5426
  }
5515
5427
  YY_RULE(int) yy_StartList()
5516
5428
  { int yypos0= yypos, yythunkpos0= yythunkpos;
5517
5429
  yyprintf((stderr, "%s\n", "StartList"));
5518
- { int yypos1364= yypos, yythunkpos1364= yythunkpos; if (!yymatchDot()) goto l1363; yypos= yypos1364; yythunkpos= yythunkpos1364;
5430
+ { int yypos1336= yypos, yythunkpos1336= yythunkpos; if (!yymatchDot()) goto l1335; yypos= yypos1336; yythunkpos= yythunkpos1336;
5519
5431
  } yyDo(yy_1_StartList, yybegin, yyend);
5520
5432
  yyprintf((stderr, " ok %s @ %s\n", "StartList", yybuf+yypos));
5521
5433
  return 1;
5522
- l1363:; yypos= yypos0; yythunkpos= yythunkpos0;
5434
+ l1335:; yypos= yypos0; yythunkpos= yythunkpos0;
5523
5435
  yyprintf((stderr, " fail %s @ %s\n", "StartList", yybuf+yypos));
5524
5436
  return 0;
5525
5437
  }
5526
5438
  YY_RULE(int) yy_Doc()
5527
5439
  { int yypos0= yypos, yythunkpos0= yythunkpos; yyDo(yyPush, 1, 0);
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;
5440
+ yyprintf((stderr, "%s\n", "Doc")); if (!yy_StartList()) goto l1337; yyDo(yySet, -1, 0);
5441
+ l1338:;
5442
+ { int yypos1339= yypos, yythunkpos1339= yythunkpos; if (!yy_Block()) goto l1339; yyDo(yy_1_Doc, yybegin, yyend); goto l1338;
5443
+ l1339:; yypos= yypos1339; yythunkpos= yythunkpos1339;
5532
5444
  } yyDo(yy_2_Doc, yybegin, yyend);
5533
5445
  yyprintf((stderr, " ok %s @ %s\n", "Doc", yybuf+yypos)); yyDo(yyPop, 1, 0);
5534
5446
  return 1;
5535
- l1365:; yypos= yypos0; yythunkpos= yythunkpos0;
5447
+ l1337:; yypos= yypos0; yythunkpos= yythunkpos0;
5536
5448
  yyprintf((stderr, " fail %s @ %s\n", "Doc", yybuf+yypos));
5537
5449
  return 0;
5538
5450
  }