#
tokens: 44249/50000 1/104 files (page 8/10)
lines: on (toggle) GitHub
raw markdown copy reset
This is page 8 of 10. Use http://codebase.md/moisnx/arc?lines=true&page={x} to view the full context.

# Directory Structure

```
├── .clang-format
├── .config
│   └── arceditor
│       ├── config.yaml
│       ├── keybinds.conf
│       └── themes
│           ├── catppuccin-mocha.theme
│           ├── cyberpunk-neon.theme
│           ├── default.theme
│           ├── dracula.theme
│           ├── github_dark.theme
│           ├── gruvbox_dark.theme
│           ├── gruvbox_light.theme
│           ├── high_constrast_dark.theme
│           ├── monokai.theme
│           ├── onedark.theme
│           ├── solarized_dark.theme
│           ├── solarized_light.theme
│           ├── tokyo_night.theme
│           └── vscode_light.theme
├── .github
│   └── assets
│       └── screenshot.gif
├── .gitignore
├── .gitmessage
├── .gitmodules
├── build.md
├── CMakeLists.txt
├── deps
│   └── tree-sitter-markdown
│       ├── .editorconfig
│       ├── .gitattributes
│       ├── .github
│       │   ├── screenshot.png
│       │   └── workflows
│       │       ├── ci.yml
│       │       ├── publish.yml
│       │       └── release.yml
│       ├── .gitignore
│       ├── binding.gyp
│       ├── bindings
│       │   ├── go
│       │   │   ├── binding_test.go
│       │   │   ├── markdown_inline.go
│       │   │   └── markdown.go
│       │   ├── node
│       │   │   ├── binding_test.js
│       │   │   ├── binding.cc
│       │   │   ├── index.d.ts
│       │   │   ├── index.js
│       │   │   └── inline.js
│       │   ├── python
│       │   │   ├── tests
│       │   │   │   └── test_binding.py
│       │   │   └── tree_sitter_markdown
│       │   │       ├── __init__.py
│       │   │       ├── __init__.pyi
│       │   │       ├── binding.c
│       │   │       └── py.typed
│       │   ├── rust
│       │   │   ├── benchmark.rs
│       │   │   ├── build.rs
│       │   │   ├── lib.rs
│       │   │   └── parser.rs
│       │   └── swift
│       │       ├── .gitignore
│       │       └── TreeSitterMarkdownTests
│       │           └── TreeSitterMarkdownTests.swift
│       ├── Cargo.toml
│       ├── CMakeLists.txt
│       ├── common
│       │   ├── common.js
│       │   ├── common.mak
│       │   └── html_entities.json
│       ├── CONTRIBUTING.md
│       ├── go.mod
│       ├── LICENSE
│       ├── Makefile
│       ├── package-lock.json
│       ├── package.json
│       ├── Package.resolved
│       ├── Package.swift
│       ├── pyproject.toml
│       ├── README.md
│       ├── scripts
│       │   ├── build.js
│       │   └── test.js
│       ├── setup.py
│       ├── tree-sitter-markdown
│       │   ├── bindings
│       │   │   ├── c
│       │   │   │   ├── tree-sitter-markdown.h
│       │   │   │   └── tree-sitter-markdown.pc.in
│       │   │   └── swift
│       │   │       └── TreeSitterMarkdown
│       │   │           └── markdown.h
│       │   ├── CMakeLists.txt
│       │   ├── grammar.js
│       │   ├── Makefile
│       │   ├── package.json
│       │   ├── queries
│       │   │   ├── highlights.scm
│       │   │   └── injections.scm
│       │   ├── src
│       │   │   ├── grammar.json
│       │   │   ├── node-types.json
│       │   │   ├── parser.c
│       │   │   ├── scanner.c
│       │   │   └── tree_sitter
│       │   │       ├── alloc.h
│       │   │       ├── array.h
│       │   │       └── parser.h
│       │   └── test
│       │       └── corpus
│       │           ├── extension_minus_metadata.txt
│       │           ├── extension_pipe_table.txt
│       │           ├── extension_plus_metadata.txt
│       │           ├── extension_task_list.txt
│       │           ├── failing.txt
│       │           ├── issues.txt
│       │           └── spec.txt
│       ├── tree-sitter-markdown-inline
│       │   ├── bindings
│       │   │   ├── c
│       │   │   │   ├── tree-sitter-markdown-inline.h
│       │   │   │   └── tree-sitter-markdown-inline.pc.in
│       │   │   └── swift
│       │   │       └── TreeSitterMarkdownInline
│       │   │           └── markdown_inline.h
│       │   ├── CMakeLists.txt
│       │   ├── grammar.js
│       │   ├── Makefile
│       │   ├── package.json
│       │   ├── queries
│       │   │   ├── highlights.scm
│       │   │   └── injections.scm
│       │   ├── src
│       │   │   ├── grammar.json
│       │   │   ├── node-types.json
│       │   │   ├── parser.c
│       │   │   ├── scanner.c
│       │   │   └── tree_sitter
│       │   │       ├── alloc.h
│       │   │       ├── array.h
│       │   │       └── parser.h
│       │   └── test
│       │       └── corpus
│       │           ├── extension_latex.txt
│       │           ├── extension_strikethrough.txt
│       │           ├── extension_wikilink.txt
│       │           ├── failing.txt
│       │           ├── issues.txt
│       │           ├── spec.txt
│       │           └── tags.txt
│       └── tree-sitter.json
├── LICENSE
├── Makefile
├── quickstart.md
├── README.md
├── src
│   ├── core
│   │   ├── buffer.cpp
│   │   ├── buffer.h
│   │   ├── config_manager.cpp
│   │   ├── config_manager.h
│   │   ├── editor_delta.h
│   │   ├── editor_validation.h
│   │   ├── editor.cpp
│   │   └── editor.h
│   ├── features
│   │   ├── markdown_state.h
│   │   ├── syntax_config_loader.cpp
│   │   ├── syntax_config_loader.h
│   │   ├── syntax_highlighter.cpp
│   │   └── syntax_highlighter.h
│   ├── main.cpp
│   └── ui
│       ├── input_handler.cpp
│       ├── input_handler.h
│       ├── renderer.cpp
│       ├── renderer.h
│       ├── style_manager.cpp
│       └── style_manager.h
└── treesitter
    ├── languages.yaml
    └── queries
        ├── _javascript
        │   ├── highlights.scm
        │   ├── locals.scm
        │   └── tags.scm
        ├── _jsx
        │   ├── highlights.scm
        │   ├── indents.scm
        │   └── textobjects.scm
        ├── _typescript
        │   ├── highlights.scm
        │   ├── indents.scm
        │   ├── locals.scm
        │   ├── tags.scm
        │   └── textobjects.scm
        ├── bash
        │   ├── highlights.scm
        │   ├── indents.scm
        │   ├── injections.scm
        │   ├── rainbows.scm
        │   ├── tags.scm
        │   └── textobjects.scm
        ├── c
        │   ├── highlights.scm
        │   ├── indents.scm
        │   ├── injections.scm
        │   ├── locals.scm
        │   ├── rainbows.scm
        │   ├── tags.scm
        │   └── textobjects.scm
        ├── cpp
        │   ├── highlights.scm
        │   ├── indents.scm
        │   ├── injections.scm
        │   ├── rainbows.scm
        │   ├── tags.scm
        │   └── textobjects.scm
        ├── css
        │   ├── highlights.scm
        │   ├── indents.scm
        │   ├── injections.scm
        │   └── rainbows.scm
        ├── ecma
        │   ├── highlights.scm
        │   ├── indents.scm
        │   ├── injections.scm
        │   ├── locals.scm
        │   ├── rainbows.scm
        │   ├── README.md
        │   └── textobjects.scm
        ├── go
        │   ├── highlights.scm
        │   ├── indents.scm
        │   ├── injections.scm
        │   ├── locals.scm
        │   ├── rainbows.scm
        │   ├── tags.scm
        │   └── textobjects.scm
        ├── javascript
        │   ├── highlights.scm
        │   ├── indents.scm
        │   ├── injections.scm
        │   ├── locals.scm
        │   ├── rainbows.scm
        │   ├── tags.scm
        │   └── textobjects.scm
        ├── markdown
        │   ├── highlights.scm
        │   ├── injections.scm
        │   └── tags.scm
        ├── markdown.inline
        │   ├── highlights.scm
        │   └── injections.scm
        ├── python
        │   ├── highlights.scm
        │   ├── indents.scm
        │   ├── injections.scm
        │   ├── locals.scm
        │   ├── rainbows.scm
        │   ├── tags.scm
        │   └── textobjects.scm
        ├── rust
        │   ├── highlights.scm
        │   ├── indents.scm
        │   ├── injections.scm
        │   ├── locals.scm
        │   ├── rainbows.scm
        │   ├── tags.scm
        │   └── textobjects.scm
        ├── toml
        │   ├── highlights.scm
        │   ├── injections.scm
        │   ├── rainbows.scm
        │   └── textobjects.scm
        ├── tsx
        │   ├── highlights.scm
        │   ├── indents.scm
        │   ├── injections.scm
        │   ├── locals.scm
        │   ├── rainbows.scm
        │   ├── tags.scm
        │   └── textobjects.scm
        ├── typescript
        │   ├── highlights.scm
        │   ├── indents.scm
        │   ├── injections.scm
        │   ├── locals.scm
        │   ├── rainbows.scm
        │   ├── tags.scm
        │   └── textobjects.scm
        ├── yaml
        │   ├── highlights.scm
        │   ├── indents.scm
        │   ├── injections.scm
        │   ├── rainbows.scm
        │   └── textobjects.scm
        └── zig
            ├── highlights.scm
            ├── indents.scm
            ├── injections.scm
            └── textobjects.scm
```

# Files

--------------------------------------------------------------------------------
/deps/tree-sitter-markdown/tree-sitter-markdown/test/corpus/spec.txt:
--------------------------------------------------------------------------------

```
   1 | ================================================================================
   2 | Example 1 - https://github.github.com/gfm/#example-1
   3 | ================================================================================
   4 | 	foo	baz		bim
   5 | 
   6 | --------------------------------------------------------------------------------
   7 | 
   8 | (document
   9 |   (section
  10 |     (indented_code_block)))
  11 | 
  12 | ================================================================================
  13 | Example 2 - https://github.github.com/gfm/#example-2
  14 | ================================================================================
  15 |   	foo	baz		bim
  16 | 
  17 | --------------------------------------------------------------------------------
  18 | 
  19 | (document
  20 |   (section
  21 |     (indented_code_block)))
  22 | 
  23 | ================================================================================
  24 | Example 3 - https://github.github.com/gfm/#example-3
  25 | ================================================================================
  26 |     a	a
  27 |     ὐ	a
  28 | 
  29 | --------------------------------------------------------------------------------
  30 | 
  31 | (document
  32 |   (section
  33 |     (indented_code_block
  34 |       (block_continuation))))
  35 | 
  36 | ================================================================================
  37 | Example 4 - https://github.github.com/gfm/#example-4
  38 | ================================================================================
  39 |   - foo
  40 | 
  41 | 	bar
  42 | 
  43 | --------------------------------------------------------------------------------
  44 | 
  45 | (document
  46 |   (section
  47 |     (list
  48 |       (list_item
  49 |         (list_marker_minus)
  50 |         (paragraph
  51 |           (inline)
  52 |           (block_continuation))
  53 |         (block_continuation)
  54 |         (paragraph
  55 |           (inline))))))
  56 | 
  57 | ================================================================================
  58 | Example 5 - https://github.github.com/gfm/#example-5
  59 | ================================================================================
  60 | - foo
  61 | 
  62 | 		bar
  63 | 
  64 | --------------------------------------------------------------------------------
  65 | 
  66 | (document
  67 |   (section
  68 |     (list
  69 |       (list_item
  70 |         (list_marker_minus)
  71 |         (paragraph
  72 |           (inline)
  73 |           (block_continuation))
  74 |         (block_continuation)
  75 |         (indented_code_block)))))
  76 | 
  77 | ================================================================================
  78 | Example 6 - https://github.github.com/gfm/#example-6
  79 | ================================================================================
  80 | >		foo
  81 | 
  82 | --------------------------------------------------------------------------------
  83 | 
  84 | (document
  85 |   (section
  86 |     (block_quote
  87 |       (block_quote_marker)
  88 |       (indented_code_block))))
  89 | 
  90 | ================================================================================
  91 | Example 7 - https://github.github.com/gfm/#example-7
  92 | ================================================================================
  93 | -		foo
  94 | 
  95 | --------------------------------------------------------------------------------
  96 | 
  97 | (document
  98 |   (section
  99 |     (list
 100 |       (list_item
 101 |         (list_marker_minus)
 102 |         (indented_code_block)))))
 103 | 
 104 | ================================================================================
 105 | Example 8 - https://github.github.com/gfm/#example-8
 106 | ================================================================================
 107 |     foo
 108 | 	bar
 109 | 
 110 | --------------------------------------------------------------------------------
 111 | 
 112 | (document
 113 |   (section
 114 |     (indented_code_block
 115 |       (block_continuation))))
 116 | 
 117 | ================================================================================
 118 | Example 9 - https://github.github.com/gfm/#example-9
 119 | ================================================================================
 120 |  - foo
 121 |    - bar
 122 | 	 - baz
 123 | 
 124 | --------------------------------------------------------------------------------
 125 | 
 126 | (document
 127 |   (section
 128 |     (list
 129 |       (list_item
 130 |         (list_marker_minus)
 131 |         (paragraph
 132 |           (inline)
 133 |           (block_continuation))
 134 |         (list
 135 |           (list_item
 136 |             (list_marker_minus)
 137 |             (paragraph
 138 |               (inline)
 139 |               (block_continuation))
 140 |             (list
 141 |               (list_item
 142 |                 (list_marker_minus)
 143 |                 (paragraph
 144 |                   (inline))))))))))
 145 | 
 146 | ================================================================================
 147 | Example 10 - https://github.github.com/gfm/#example-10
 148 | ================================================================================
 149 | #	Foo
 150 | 
 151 | --------------------------------------------------------------------------------
 152 | 
 153 | (document
 154 |   (section
 155 |     (atx_heading
 156 |       (atx_h1_marker)
 157 |       (inline))))
 158 | 
 159 | ================================================================================
 160 | Example 11 - https://github.github.com/gfm/#example-11
 161 | ================================================================================
 162 | *	*	*
 163 | 
 164 | --------------------------------------------------------------------------------
 165 | 
 166 | (document
 167 |   (section
 168 |     (thematic_break)))
 169 | 
 170 | ================================================================================
 171 | Example 12 - https://github.github.com/gfm/#example-12
 172 | ================================================================================
 173 | - `one
 174 | - two`
 175 | 
 176 | --------------------------------------------------------------------------------
 177 | 
 178 | (document
 179 |   (section
 180 |     (list
 181 |       (list_item
 182 |         (list_marker_minus)
 183 |         (paragraph
 184 |           (inline)))
 185 |       (list_item
 186 |         (list_marker_minus)
 187 |         (paragraph
 188 |           (inline))))))
 189 | 
 190 | ================================================================================
 191 | Example 13 - https://github.github.com/gfm/#example-13
 192 | ================================================================================
 193 | ***
 194 | ---
 195 | ___
 196 | 
 197 | --------------------------------------------------------------------------------
 198 | 
 199 | (document
 200 |   (section
 201 |     (thematic_break)
 202 |     (thematic_break)
 203 |     (thematic_break)))
 204 | 
 205 | ================================================================================
 206 | Example 14 - https://github.github.com/gfm/#example-14
 207 | ================================================================================
 208 | +++
 209 | 
 210 | --------------------------------------------------------------------------------
 211 | 
 212 | (document
 213 |   (section
 214 |     (paragraph
 215 |       (inline))))
 216 | 
 217 | ================================================================================
 218 | Example 15 - https://github.github.com/gfm/#example-15
 219 | ================================================================================
 220 | =
 221 | 
 222 | --------------------------------------------------------------------------------
 223 | 
 224 | (document
 225 |   (section
 226 |     (paragraph
 227 |       (inline))))
 228 | 
 229 | ================================================================================
 230 | Example 16 - https://github.github.com/gfm/#example-16
 231 | ================================================================================
 232 | --
 233 | **
 234 | __
 235 | 
 236 | --------------------------------------------------------------------------------
 237 | 
 238 | (document
 239 |   (section
 240 |     (paragraph
 241 |       (inline))))
 242 | 
 243 | ================================================================================
 244 | Example 17 - https://github.github.com/gfm/#example-17
 245 | ================================================================================
 246 |  ***
 247 |   ***
 248 |    ***
 249 | 
 250 | --------------------------------------------------------------------------------
 251 | 
 252 | (document
 253 |   (section
 254 |     (thematic_break)
 255 |     (thematic_break)
 256 |     (thematic_break)))
 257 | 
 258 | ================================================================================
 259 | Example 18 - https://github.github.com/gfm/#example-18
 260 | ================================================================================
 261 |     ***
 262 | 
 263 | --------------------------------------------------------------------------------
 264 | 
 265 | (document
 266 |   (section
 267 |     (indented_code_block)))
 268 | 
 269 | ================================================================================
 270 | Example 19 - https://github.github.com/gfm/#example-19
 271 | ================================================================================
 272 | Foo
 273 |     ***
 274 | 
 275 | --------------------------------------------------------------------------------
 276 | 
 277 | (document
 278 |   (section
 279 |     (paragraph
 280 |       (inline))))
 281 | 
 282 | ================================================================================
 283 | Example 20 - https://github.github.com/gfm/#example-20
 284 | ================================================================================
 285 | _____________________________________
 286 | 
 287 | --------------------------------------------------------------------------------
 288 | 
 289 | (document
 290 |   (section
 291 |     (thematic_break)))
 292 | 
 293 | ================================================================================
 294 | Example 21 - https://github.github.com/gfm/#example-21
 295 | ================================================================================
 296 |  - - -
 297 | 
 298 | --------------------------------------------------------------------------------
 299 | 
 300 | (document
 301 |   (section
 302 |     (thematic_break)))
 303 | 
 304 | ================================================================================
 305 | Example 22 - https://github.github.com/gfm/#example-22
 306 | ================================================================================
 307 |  **  * ** * ** * **
 308 | 
 309 | --------------------------------------------------------------------------------
 310 | 
 311 | (document
 312 |   (section
 313 |     (thematic_break)))
 314 | 
 315 | ================================================================================
 316 | Example 23 - https://github.github.com/gfm/#example-23
 317 | ================================================================================
 318 | -     -      -      -
 319 | 
 320 | --------------------------------------------------------------------------------
 321 | 
 322 | (document
 323 |   (section
 324 |     (thematic_break)))
 325 | 
 326 | ================================================================================
 327 | Example 24 - https://github.github.com/gfm/#example-24
 328 | ================================================================================
 329 | - - - -
 330 | 
 331 | --------------------------------------------------------------------------------
 332 | 
 333 | (document
 334 |   (section
 335 |     (thematic_break)))
 336 | 
 337 | ================================================================================
 338 | Example 25 - https://github.github.com/gfm/#example-25
 339 | ================================================================================
 340 | _ _ _ _ a
 341 | 
 342 | a------
 343 | 
 344 | ---a---
 345 | 
 346 | --------------------------------------------------------------------------------
 347 | 
 348 | (document
 349 |   (section
 350 |     (paragraph
 351 |       (inline))
 352 |     (paragraph
 353 |       (inline))
 354 |     (paragraph
 355 |       (inline))))
 356 | 
 357 | ================================================================================
 358 | Example 26 - https://github.github.com/gfm/#example-26
 359 | ================================================================================
 360 |  *-*
 361 | 
 362 | --------------------------------------------------------------------------------
 363 | 
 364 | (document
 365 |   (section
 366 |     (paragraph
 367 |       (inline))))
 368 | 
 369 | ================================================================================
 370 | Example 27 - https://github.github.com/gfm/#example-27
 371 | ================================================================================
 372 | - foo
 373 | ***
 374 | - bar
 375 | 
 376 | --------------------------------------------------------------------------------
 377 | 
 378 | (document
 379 |   (section
 380 |     (list
 381 |       (list_item
 382 |         (list_marker_minus)
 383 |         (paragraph
 384 |           (inline))))
 385 |     (thematic_break)
 386 |     (list
 387 |       (list_item
 388 |         (list_marker_minus)
 389 |         (paragraph
 390 |           (inline))))))
 391 | 
 392 | ================================================================================
 393 | Example 28 - https://github.github.com/gfm/#example-28
 394 | ================================================================================
 395 | Foo
 396 | ***
 397 | bar
 398 | 
 399 | --------------------------------------------------------------------------------
 400 | 
 401 | (document
 402 |   (section
 403 |     (paragraph
 404 |       (inline))
 405 |     (thematic_break)
 406 |     (paragraph
 407 |       (inline))))
 408 | 
 409 | ================================================================================
 410 | Example 29 - https://github.github.com/gfm/#example-29
 411 | ================================================================================
 412 | Foo
 413 | ---
 414 | bar
 415 | 
 416 | --------------------------------------------------------------------------------
 417 | 
 418 | (document
 419 |   (section
 420 |     (setext_heading
 421 |       (paragraph
 422 |         (inline))
 423 |       (setext_h2_underline))
 424 |     (paragraph
 425 |       (inline))))
 426 | 
 427 | ================================================================================
 428 | Example 30 - https://github.github.com/gfm/#example-30
 429 | ================================================================================
 430 | * Foo
 431 | * * *
 432 | * Bar
 433 | 
 434 | --------------------------------------------------------------------------------
 435 | 
 436 | (document
 437 |   (section
 438 |     (list
 439 |       (list_item
 440 |         (list_marker_star)
 441 |         (paragraph
 442 |           (inline))))
 443 |     (thematic_break)
 444 |     (list
 445 |       (list_item
 446 |         (list_marker_star)
 447 |         (paragraph
 448 |           (inline))))))
 449 | 
 450 | ================================================================================
 451 | Example 31 - https://github.github.com/gfm/#example-31
 452 | ================================================================================
 453 | - Foo
 454 | - * * *
 455 | 
 456 | --------------------------------------------------------------------------------
 457 | 
 458 | (document
 459 |   (section
 460 |     (list
 461 |       (list_item
 462 |         (list_marker_minus)
 463 |         (paragraph
 464 |           (inline)))
 465 |       (list_item
 466 |         (list_marker_minus)
 467 |         (thematic_break)))))
 468 | 
 469 | ================================================================================
 470 | Example 32 - https://github.github.com/gfm/#example-32
 471 | ================================================================================
 472 | # foo
 473 | ## foo
 474 | ### foo
 475 | #### foo
 476 | ##### foo
 477 | ###### foo
 478 | 
 479 | --------------------------------------------------------------------------------
 480 | 
 481 | (document
 482 |   (section
 483 |     (atx_heading
 484 |       (atx_h1_marker)
 485 |       (inline))
 486 |     (section
 487 |       (atx_heading
 488 |         (atx_h2_marker)
 489 |         (inline))
 490 |       (section
 491 |         (atx_heading
 492 |           (atx_h3_marker)
 493 |           (inline))
 494 |         (section
 495 |           (atx_heading
 496 |             (atx_h4_marker)
 497 |             (inline))
 498 |           (section
 499 |             (atx_heading
 500 |               (atx_h5_marker)
 501 |               (inline))
 502 |             (section
 503 |               (atx_heading
 504 |                 (atx_h6_marker)
 505 |                 (inline)))))))))
 506 | 
 507 | ================================================================================
 508 | Example 33 - https://github.github.com/gfm/#example-33
 509 | ================================================================================
 510 | ####### foo
 511 | 
 512 | --------------------------------------------------------------------------------
 513 | 
 514 | (document
 515 |   (section
 516 |     (paragraph
 517 |       (inline))))
 518 | 
 519 | ================================================================================
 520 | Example 34 - https://github.github.com/gfm/#example-34
 521 | ================================================================================
 522 | #5 bolt
 523 | 
 524 | #hashtag
 525 | 
 526 | --------------------------------------------------------------------------------
 527 | 
 528 | (document
 529 |   (section
 530 |     (paragraph
 531 |       (inline))
 532 |     (paragraph
 533 |       (inline))))
 534 | 
 535 | ================================================================================
 536 | Example 35 - https://github.github.com/gfm/#example-35
 537 | ================================================================================
 538 | \## foo
 539 | 
 540 | --------------------------------------------------------------------------------
 541 | 
 542 | (document
 543 |   (section
 544 |     (paragraph
 545 |       (inline))))
 546 | 
 547 | ================================================================================
 548 | Example 36 - https://github.github.com/gfm/#example-36
 549 | ================================================================================
 550 | # foo *bar* \*baz\*
 551 | 
 552 | --------------------------------------------------------------------------------
 553 | 
 554 | (document
 555 |   (section
 556 |     (atx_heading
 557 |       (atx_h1_marker)
 558 |       (inline))))
 559 | 
 560 | ================================================================================
 561 | Example 37 - https://github.github.com/gfm/#example-37
 562 | ================================================================================
 563 | #                  foo
 564 | 
 565 | --------------------------------------------------------------------------------
 566 | 
 567 | (document
 568 |   (section
 569 |     (atx_heading
 570 |       (atx_h1_marker)
 571 |       (inline))))
 572 | 
 573 | ================================================================================
 574 | Example 38 - https://github.github.com/gfm/#example-38
 575 | ================================================================================
 576 |  ### foo
 577 |   ## foo
 578 |    # foo
 579 | 
 580 | --------------------------------------------------------------------------------
 581 | 
 582 | (document
 583 |   (section
 584 |     (atx_heading
 585 |       (atx_h3_marker)
 586 |       (inline)))
 587 |   (section
 588 |     (atx_heading
 589 |       (atx_h2_marker)
 590 |       (inline)))
 591 |   (section
 592 |     (atx_heading
 593 |       (atx_h1_marker)
 594 |       (inline))))
 595 | 
 596 | ================================================================================
 597 | Example 39 - https://github.github.com/gfm/#example-39
 598 | ================================================================================
 599 |     # foo
 600 | 
 601 | --------------------------------------------------------------------------------
 602 | 
 603 | (document
 604 |   (section
 605 |     (indented_code_block)))
 606 | 
 607 | ================================================================================
 608 | Example 40 - https://github.github.com/gfm/#example-40
 609 | ================================================================================
 610 | foo
 611 |     # bar
 612 | 
 613 | --------------------------------------------------------------------------------
 614 | 
 615 | (document
 616 |   (section
 617 |     (paragraph
 618 |       (inline))))
 619 | 
 620 | ================================================================================
 621 | Example 41 - https://github.github.com/gfm/#example-41
 622 | ================================================================================
 623 | ## foo ##
 624 |   ###   bar    ###
 625 | 
 626 | --------------------------------------------------------------------------------
 627 | 
 628 | (document
 629 |   (section
 630 |     (atx_heading
 631 |       (atx_h2_marker)
 632 |       (inline))
 633 |     (section
 634 |       (atx_heading
 635 |         (atx_h3_marker)
 636 |         (inline)))))
 637 | 
 638 | ================================================================================
 639 | Example 42 - https://github.github.com/gfm/#example-42
 640 | ================================================================================
 641 | # foo ##################################
 642 | ##### foo ##
 643 | 
 644 | --------------------------------------------------------------------------------
 645 | 
 646 | (document
 647 |   (section
 648 |     (atx_heading
 649 |       (atx_h1_marker)
 650 |       (inline))
 651 |     (section
 652 |       (atx_heading
 653 |         (atx_h5_marker)
 654 |         (inline)))))
 655 | 
 656 | ================================================================================
 657 | Example 43 - https://github.github.com/gfm/#example-43
 658 | ================================================================================
 659 | ### foo ###
 660 | 
 661 | --------------------------------------------------------------------------------
 662 | 
 663 | (document
 664 |   (section
 665 |     (atx_heading
 666 |       (atx_h3_marker)
 667 |       (inline))))
 668 | 
 669 | ================================================================================
 670 | Example 44 - https://github.github.com/gfm/#example-44
 671 | ================================================================================
 672 | ### foo ### b
 673 | 
 674 | --------------------------------------------------------------------------------
 675 | 
 676 | (document
 677 |   (section
 678 |     (atx_heading
 679 |       (atx_h3_marker)
 680 |       (inline))))
 681 | 
 682 | ================================================================================
 683 | Example 45 - https://github.github.com/gfm/#example-45
 684 | ================================================================================
 685 | # foo#
 686 | 
 687 | --------------------------------------------------------------------------------
 688 | 
 689 | (document
 690 |   (section
 691 |     (atx_heading
 692 |       (atx_h1_marker)
 693 |       (inline))))
 694 | 
 695 | ================================================================================
 696 | Example 46 - https://github.github.com/gfm/#example-46
 697 | ================================================================================
 698 | ### foo \###
 699 | ## foo #\##
 700 | # foo \#
 701 | 
 702 | --------------------------------------------------------------------------------
 703 | 
 704 | (document
 705 |   (section
 706 |     (atx_heading
 707 |       (atx_h3_marker)
 708 |       (inline)))
 709 |   (section
 710 |     (atx_heading
 711 |       (atx_h2_marker)
 712 |       (inline)))
 713 |   (section
 714 |     (atx_heading
 715 |       (atx_h1_marker)
 716 |       (inline))))
 717 | 
 718 | ================================================================================
 719 | Example 47 - https://github.github.com/gfm/#example-47
 720 | ================================================================================
 721 | ****
 722 | ## foo
 723 | ****
 724 | 
 725 | --------------------------------------------------------------------------------
 726 | 
 727 | (document
 728 |   (section
 729 |     (thematic_break))
 730 |   (section
 731 |     (atx_heading
 732 |       (atx_h2_marker)
 733 |       (inline))
 734 |     (thematic_break)))
 735 | 
 736 | ================================================================================
 737 | Example 48 - https://github.github.com/gfm/#example-48
 738 | ================================================================================
 739 | Foo bar
 740 | # baz
 741 | Bar foo
 742 | 
 743 | --------------------------------------------------------------------------------
 744 | 
 745 | (document
 746 |   (section
 747 |     (paragraph
 748 |       (inline)))
 749 |   (section
 750 |     (atx_heading
 751 |       (atx_h1_marker)
 752 |       (inline))
 753 |     (paragraph
 754 |       (inline))))
 755 | 
 756 | ================================================================================
 757 | Example 49 - https://github.github.com/gfm/#example-49
 758 | ================================================================================
 759 | ##
 760 | #
 761 | ### ###
 762 | 
 763 | --------------------------------------------------------------------------------
 764 | 
 765 | (document
 766 |   (section
 767 |     (atx_heading
 768 |       (atx_h2_marker)))
 769 |   (section
 770 |     (atx_heading
 771 |       (atx_h1_marker))
 772 |     (section
 773 |       (atx_heading
 774 |         (atx_h3_marker)
 775 |         (inline)))))
 776 | 
 777 | ================================================================================
 778 | Example 50 - https://github.github.com/gfm/#example-50
 779 | ================================================================================
 780 | Foo *bar*
 781 | =
 782 | 
 783 | Foo *bar*
 784 | ---------
 785 | 
 786 | --------------------------------------------------------------------------------
 787 | 
 788 | (document
 789 |   (section
 790 |     (setext_heading
 791 |       (paragraph
 792 |         (inline))
 793 |       (setext_h1_underline))
 794 |     (setext_heading
 795 |       (paragraph
 796 |         (inline))
 797 |       (setext_h2_underline))))
 798 | 
 799 | ================================================================================
 800 | Example 51 - https://github.github.com/gfm/#example-51
 801 | ================================================================================
 802 | Foo *bar
 803 | baz*
 804 | =
 805 | 
 806 | --------------------------------------------------------------------------------
 807 | 
 808 | (document
 809 |   (section
 810 |     (setext_heading
 811 |       (paragraph
 812 |         (inline))
 813 |       (setext_h1_underline))))
 814 | 
 815 | ================================================================================
 816 | Example 52 - https://github.github.com/gfm/#example-52
 817 | ================================================================================
 818 |   Foo *bar
 819 | baz*
 820 | =
 821 | 
 822 | --------------------------------------------------------------------------------
 823 | 
 824 | (document
 825 |   (section
 826 |     (setext_heading
 827 |       (paragraph
 828 |         (inline))
 829 |       (setext_h1_underline))))
 830 | 
 831 | ================================================================================
 832 | Example 53 - https://github.github.com/gfm/#example-53
 833 | ================================================================================
 834 | Foo
 835 | -------------------------
 836 | 
 837 | Foo
 838 | =
 839 | 
 840 | --------------------------------------------------------------------------------
 841 | 
 842 | (document
 843 |   (section
 844 |     (setext_heading
 845 |       (paragraph
 846 |         (inline))
 847 |       (setext_h2_underline))
 848 |     (setext_heading
 849 |       (paragraph
 850 |         (inline))
 851 |       (setext_h1_underline))))
 852 | 
 853 | ================================================================================
 854 | Example 54 - https://github.github.com/gfm/#example-54
 855 | ================================================================================
 856 |    Foo
 857 | ---
 858 | 
 859 |   Foo
 860 | -----
 861 | 
 862 |   Foo
 863 |   ===
 864 | 
 865 | --------------------------------------------------------------------------------
 866 | 
 867 | (document
 868 |   (section
 869 |     (setext_heading
 870 |       (paragraph
 871 |         (inline))
 872 |       (setext_h2_underline))
 873 |     (setext_heading
 874 |       (paragraph
 875 |         (inline))
 876 |       (setext_h2_underline))
 877 |     (setext_heading
 878 |       (paragraph
 879 |         (inline))
 880 |       (setext_h1_underline))))
 881 | 
 882 | ================================================================================
 883 | Example 55 - https://github.github.com/gfm/#example-55
 884 | ================================================================================
 885 |     Foo
 886 |     ---
 887 | 
 888 |     Foo
 889 | ---
 890 | 
 891 | --------------------------------------------------------------------------------
 892 | 
 893 | (document
 894 |   (section
 895 |     (indented_code_block
 896 |       (block_continuation))
 897 |     (thematic_break)))
 898 | 
 899 | ================================================================================
 900 | Example 56 - https://github.github.com/gfm/#example-56
 901 | ================================================================================
 902 | Foo
 903 |    ----
 904 | 
 905 | --------------------------------------------------------------------------------
 906 | 
 907 | (document
 908 |   (section
 909 |     (setext_heading
 910 |       (paragraph
 911 |         (inline))
 912 |       (setext_h2_underline))))
 913 | 
 914 | ================================================================================
 915 | Example 57 - https://github.github.com/gfm/#example-57
 916 | ================================================================================
 917 | Foo
 918 |     ---
 919 | 
 920 | --------------------------------------------------------------------------------
 921 | 
 922 | (document
 923 |   (section
 924 |     (paragraph
 925 |       (inline))))
 926 | 
 927 | ================================================================================
 928 | Example 58 - https://github.github.com/gfm/#example-58
 929 | ================================================================================
 930 | Foo
 931 | = =
 932 | 
 933 | Foo
 934 | --- -
 935 | 
 936 | --------------------------------------------------------------------------------
 937 | 
 938 | (document
 939 |   (section
 940 |     (paragraph
 941 |       (inline))
 942 |     (paragraph
 943 |       (inline))
 944 |     (thematic_break)))
 945 | 
 946 | ================================================================================
 947 | Example 59 - https://github.github.com/gfm/#example-59
 948 | ================================================================================
 949 | Foo
 950 | -----
 951 | 
 952 | --------------------------------------------------------------------------------
 953 | 
 954 | (document
 955 |   (section
 956 |     (setext_heading
 957 |       (paragraph
 958 |         (inline))
 959 |       (setext_h2_underline))))
 960 | 
 961 | ================================================================================
 962 | Example 60 - https://github.github.com/gfm/#example-60
 963 | ================================================================================
 964 | Foo\
 965 | ----
 966 | 
 967 | --------------------------------------------------------------------------------
 968 | 
 969 | (document
 970 |   (section
 971 |     (setext_heading
 972 |       (paragraph
 973 |         (inline))
 974 |       (setext_h2_underline))))
 975 | 
 976 | ================================================================================
 977 | Example 61 - https://github.github.com/gfm/#example-61
 978 | ================================================================================
 979 | `Foo
 980 | ----
 981 | `
 982 | 
 983 | <a title="a lot
 984 | ---
 985 | of dashes"/>
 986 | 
 987 | --------------------------------------------------------------------------------
 988 | 
 989 | (document
 990 |   (section
 991 |     (setext_heading
 992 |       (paragraph
 993 |         (inline))
 994 |       (setext_h2_underline))
 995 |     (paragraph
 996 |       (inline))
 997 |     (setext_heading
 998 |       (paragraph
 999 |         (inline))
1000 |       (setext_h2_underline))
1001 |     (paragraph
1002 |       (inline))))
1003 | 
1004 | ================================================================================
1005 | Example 62 - https://github.github.com/gfm/#example-62
1006 | ================================================================================
1007 | > Foo
1008 | ---
1009 | 
1010 | --------------------------------------------------------------------------------
1011 | 
1012 | (document
1013 |   (section
1014 |     (block_quote
1015 |       (block_quote_marker)
1016 |       (paragraph
1017 |         (inline)))
1018 |     (thematic_break)))
1019 | 
1020 | ================================================================================
1021 | Example 63 - https://github.github.com/gfm/#example-63
1022 | ================================================================================
1023 | > foo
1024 | bar
1025 | =
1026 | 
1027 | --------------------------------------------------------------------------------
1028 | 
1029 | (document
1030 |   (section
1031 |     (block_quote
1032 |       (block_quote_marker)
1033 |       (paragraph
1034 |         (inline)))))
1035 | 
1036 | ================================================================================
1037 | Example 64 - https://github.github.com/gfm/#example-64
1038 | ================================================================================
1039 | - Foo
1040 | ---
1041 | 
1042 | --------------------------------------------------------------------------------
1043 | 
1044 | (document
1045 |   (section
1046 |     (list
1047 |       (list_item
1048 |         (list_marker_minus)
1049 |         (paragraph
1050 |           (inline))))
1051 |     (thematic_break)))
1052 | 
1053 | ================================================================================
1054 | Example 65 - https://github.github.com/gfm/#example-65
1055 | ================================================================================
1056 | Foo
1057 | Bar
1058 | ---
1059 | 
1060 | --------------------------------------------------------------------------------
1061 | 
1062 | (document
1063 |   (section
1064 |     (setext_heading
1065 |       (paragraph
1066 |         (inline))
1067 |       (setext_h2_underline))))
1068 | 
1069 | ================================================================================
1070 | Example 66 - https://github.github.com/gfm/#example-66
1071 | ================================================================================
1072 | Extra text so this is not parsed as metadata.
1073 | 
1074 | ---
1075 | Foo
1076 | ---
1077 | Bar
1078 | ---
1079 | Baz
1080 | 
1081 | --------------------------------------------------------------------------------
1082 | 
1083 | (document
1084 |   (section
1085 |     (paragraph
1086 |       (inline))
1087 |     (thematic_break)
1088 |     (setext_heading
1089 |       (paragraph
1090 |         (inline))
1091 |       (setext_h2_underline))
1092 |     (setext_heading
1093 |       (paragraph
1094 |         (inline))
1095 |       (setext_h2_underline))
1096 |     (paragraph
1097 |       (inline))))
1098 | 
1099 | ================================================================================
1100 | Example 67 - https://github.github.com/gfm/#example-67
1101 | ================================================================================
1102 | 
1103 | =
1104 | 
1105 | --------------------------------------------------------------------------------
1106 | 
1107 | (document
1108 |   (section
1109 |     (paragraph
1110 |       (inline))))
1111 | 
1112 | ================================================================================
1113 | Example 68 - https://github.github.com/gfm/#example-68
1114 | ================================================================================
1115 | Extra text so this is not parsed as metadata.
1116 | 
1117 | ---
1118 | ---
1119 | 
1120 | --------------------------------------------------------------------------------
1121 | 
1122 | (document
1123 |   (section
1124 |     (paragraph
1125 |       (inline))
1126 |     (thematic_break)
1127 |     (thematic_break)))
1128 | 
1129 | ================================================================================
1130 | Example 69 - https://github.github.com/gfm/#example-69
1131 | ================================================================================
1132 | - foo
1133 | -----
1134 | 
1135 | --------------------------------------------------------------------------------
1136 | 
1137 | (document
1138 |   (section
1139 |     (list
1140 |       (list_item
1141 |         (list_marker_minus)
1142 |         (paragraph
1143 |           (inline))))
1144 |     (thematic_break)))
1145 | 
1146 | ================================================================================
1147 | Example 70 - https://github.github.com/gfm/#example-70
1148 | ================================================================================
1149 |     foo
1150 | ---
1151 | 
1152 | --------------------------------------------------------------------------------
1153 | 
1154 | (document
1155 |   (section
1156 |     (indented_code_block)
1157 |     (thematic_break)))
1158 | 
1159 | ================================================================================
1160 | Example 71 - https://github.github.com/gfm/#example-71
1161 | ================================================================================
1162 | > foo
1163 | -----
1164 | 
1165 | --------------------------------------------------------------------------------
1166 | 
1167 | (document
1168 |   (section
1169 |     (block_quote
1170 |       (block_quote_marker)
1171 |       (paragraph
1172 |         (inline)))
1173 |     (thematic_break)))
1174 | 
1175 | ================================================================================
1176 | Example 72 - https://github.github.com/gfm/#example-72
1177 | ================================================================================
1178 | \> foo
1179 | ------
1180 | 
1181 | --------------------------------------------------------------------------------
1182 | 
1183 | (document
1184 |   (section
1185 |     (setext_heading
1186 |       (paragraph
1187 |         (inline))
1188 |       (setext_h2_underline))))
1189 | 
1190 | ================================================================================
1191 | Example 73 - https://github.github.com/gfm/#example-73
1192 | ================================================================================
1193 | Foo
1194 | 
1195 | bar
1196 | ---
1197 | baz
1198 | 
1199 | --------------------------------------------------------------------------------
1200 | 
1201 | (document
1202 |   (section
1203 |     (paragraph
1204 |       (inline))
1205 |     (setext_heading
1206 |       (paragraph
1207 |         (inline))
1208 |       (setext_h2_underline))
1209 |     (paragraph
1210 |       (inline))))
1211 | 
1212 | ================================================================================
1213 | Example 74 - https://github.github.com/gfm/#example-74
1214 | ================================================================================
1215 | Foo
1216 | bar
1217 | 
1218 | ---
1219 | 
1220 | baz
1221 | 
1222 | --------------------------------------------------------------------------------
1223 | 
1224 | (document
1225 |   (section
1226 |     (paragraph
1227 |       (inline))
1228 |     (thematic_break)
1229 |     (paragraph
1230 |       (inline))))
1231 | 
1232 | ================================================================================
1233 | Example 75 - https://github.github.com/gfm/#example-75
1234 | ================================================================================
1235 | Foo
1236 | bar
1237 | * * *
1238 | baz
1239 | 
1240 | --------------------------------------------------------------------------------
1241 | 
1242 | (document
1243 |   (section
1244 |     (paragraph
1245 |       (inline))
1246 |     (thematic_break)
1247 |     (paragraph
1248 |       (inline))))
1249 | 
1250 | ================================================================================
1251 | Example 76 - https://github.github.com/gfm/#example-76
1252 | ================================================================================
1253 | Foo
1254 | bar
1255 | \---
1256 | baz
1257 | 
1258 | --------------------------------------------------------------------------------
1259 | 
1260 | (document
1261 |   (section
1262 |     (paragraph
1263 |       (inline))))
1264 | 
1265 | ================================================================================
1266 | Example 77 - https://github.github.com/gfm/#example-77
1267 | ================================================================================
1268 |     a simple
1269 |       indented code block
1270 | 
1271 | --------------------------------------------------------------------------------
1272 | 
1273 | (document
1274 |   (section
1275 |     (indented_code_block
1276 |       (block_continuation))))
1277 | 
1278 | ================================================================================
1279 | Example 78 - https://github.github.com/gfm/#example-78
1280 | ================================================================================
1281 |   - foo
1282 | 
1283 |     bar
1284 | 
1285 | --------------------------------------------------------------------------------
1286 | 
1287 | (document
1288 |   (section
1289 |     (list
1290 |       (list_item
1291 |         (list_marker_minus)
1292 |         (paragraph
1293 |           (inline)
1294 |           (block_continuation))
1295 |         (block_continuation)
1296 |         (paragraph
1297 |           (inline))))))
1298 | 
1299 | ================================================================================
1300 | Example 79 - https://github.github.com/gfm/#example-79
1301 | ================================================================================
1302 | 1.  foo
1303 | 
1304 |     - bar
1305 | 
1306 | --------------------------------------------------------------------------------
1307 | 
1308 | (document
1309 |   (section
1310 |     (list
1311 |       (list_item
1312 |         (list_marker_dot)
1313 |         (paragraph
1314 |           (inline)
1315 |           (block_continuation))
1316 |         (block_continuation)
1317 |         (list
1318 |           (list_item
1319 |             (list_marker_minus)
1320 |             (paragraph
1321 |               (inline))))))))
1322 | 
1323 | ================================================================================
1324 | Example 80 - https://github.github.com/gfm/#example-80
1325 | ================================================================================
1326 |     <a/>
1327 |     *hi*
1328 | 
1329 |     - one
1330 | 
1331 | --------------------------------------------------------------------------------
1332 | 
1333 | (document
1334 |   (section
1335 |     (indented_code_block
1336 |       (block_continuation))))
1337 | 
1338 | ================================================================================
1339 | Example 81 - https://github.github.com/gfm/#example-81
1340 | ================================================================================
1341 |     chunk1
1342 | 
1343 |     chunk2
1344 | 
1345 | 
1346 | 
1347 |     chunk3
1348 | 
1349 | --------------------------------------------------------------------------------
1350 | 
1351 | (document
1352 |   (section
1353 |     (indented_code_block)))
1354 | 
1355 | ================================================================================
1356 | Example 82 - https://github.github.com/gfm/#example-82
1357 | ================================================================================
1358 |     chunk1
1359 | 
1360 |       chunk2
1361 | 
1362 | --------------------------------------------------------------------------------
1363 | 
1364 | (document
1365 |   (section
1366 |     (indented_code_block)))
1367 | 
1368 | ================================================================================
1369 | Example 83 - https://github.github.com/gfm/#example-83
1370 | ================================================================================
1371 | Foo
1372 |     bar
1373 | 
1374 | 
1375 | --------------------------------------------------------------------------------
1376 | 
1377 | (document
1378 |   (section
1379 |     (paragraph
1380 |       (inline))))
1381 | 
1382 | ================================================================================
1383 | Example 84 - https://github.github.com/gfm/#example-84
1384 | ================================================================================
1385 |     foo
1386 | bar
1387 | 
1388 | --------------------------------------------------------------------------------
1389 | 
1390 | (document
1391 |   (section
1392 |     (indented_code_block)
1393 |     (paragraph
1394 |       (inline))))
1395 | 
1396 | ================================================================================
1397 | Example 85 - https://github.github.com/gfm/#example-85
1398 | ================================================================================
1399 | # Heading
1400 |     foo
1401 | Heading
1402 | ------
1403 |     foo
1404 | ----
1405 | 
1406 | --------------------------------------------------------------------------------
1407 | 
1408 | (document
1409 |   (section
1410 |     (atx_heading
1411 |       (atx_h1_marker)
1412 |       (inline))
1413 |     (indented_code_block)
1414 |     (setext_heading
1415 |       (paragraph
1416 |         (inline))
1417 |       (setext_h2_underline))
1418 |     (indented_code_block)
1419 |     (thematic_break)))
1420 | 
1421 | ================================================================================
1422 | Example 86 - https://github.github.com/gfm/#example-86
1423 | ================================================================================
1424 |         foo
1425 |     bar
1426 | 
1427 | --------------------------------------------------------------------------------
1428 | 
1429 | (document
1430 |   (section
1431 |     (indented_code_block
1432 |       (block_continuation))))
1433 | 
1434 | ================================================================================
1435 | Example 87 - https://github.github.com/gfm/#example-87
1436 | ================================================================================
1437 | 
1438 | 
1439 |     foo
1440 | 
1441 | 
1442 | 
1443 | --------------------------------------------------------------------------------
1444 | 
1445 | (document
1446 |   (section
1447 |     (indented_code_block)))
1448 | 
1449 | ================================================================================
1450 | Example 88 - https://github.github.com/gfm/#example-88
1451 | ================================================================================
1452 |     foo
1453 | 
1454 | --------------------------------------------------------------------------------
1455 | 
1456 | (document
1457 |   (section
1458 |     (indented_code_block)))
1459 | 
1460 | ================================================================================
1461 | Example 89 - https://github.github.com/gfm/#example-89
1462 | ================================================================================
1463 | ```
1464 | <
1465 |  >
1466 | ```
1467 | 
1468 | --------------------------------------------------------------------------------
1469 | 
1470 | (document
1471 |   (section
1472 |     (fenced_code_block
1473 |       (fenced_code_block_delimiter)
1474 |       (block_continuation)
1475 |       (code_fence_content
1476 |         (block_continuation)
1477 |         (block_continuation))
1478 |       (fenced_code_block_delimiter))))
1479 | 
1480 | ================================================================================
1481 | Example 90 - https://github.github.com/gfm/#example-90
1482 | ================================================================================
1483 | ~~~
1484 | <
1485 |  >
1486 | ~~~
1487 | 
1488 | --------------------------------------------------------------------------------
1489 | 
1490 | (document
1491 |   (section
1492 |     (fenced_code_block
1493 |       (fenced_code_block_delimiter)
1494 |       (block_continuation)
1495 |       (code_fence_content
1496 |         (block_continuation)
1497 |         (block_continuation))
1498 |       (fenced_code_block_delimiter))))
1499 | 
1500 | ================================================================================
1501 | Example 91 - https://github.github.com/gfm/#example-91
1502 | ================================================================================
1503 | ``
1504 | foo
1505 | ``
1506 | 
1507 | --------------------------------------------------------------------------------
1508 | 
1509 | (document
1510 |   (section
1511 |     (paragraph
1512 |       (inline))))
1513 | 
1514 | ================================================================================
1515 | Example 92 - https://github.github.com/gfm/#example-92
1516 | ================================================================================
1517 | ```
1518 | aaa
1519 | ~~~
1520 | ```
1521 | 
1522 | --------------------------------------------------------------------------------
1523 | 
1524 | (document
1525 |   (section
1526 |     (fenced_code_block
1527 |       (fenced_code_block_delimiter)
1528 |       (block_continuation)
1529 |       (code_fence_content
1530 |         (block_continuation)
1531 |         (block_continuation))
1532 |       (fenced_code_block_delimiter))))
1533 | 
1534 | ================================================================================
1535 | Example 93 - https://github.github.com/gfm/#example-93
1536 | ================================================================================
1537 | ~~~
1538 | aaa
1539 | ```
1540 | ~~~
1541 | 
1542 | --------------------------------------------------------------------------------
1543 | 
1544 | (document
1545 |   (section
1546 |     (fenced_code_block
1547 |       (fenced_code_block_delimiter)
1548 |       (block_continuation)
1549 |       (code_fence_content
1550 |         (block_continuation)
1551 |         (block_continuation))
1552 |       (fenced_code_block_delimiter))))
1553 | 
1554 | ================================================================================
1555 | Example 94 - https://github.github.com/gfm/#example-94
1556 | ================================================================================
1557 | ````
1558 | aaa
1559 | ```
1560 | ``````
1561 | 
1562 | --------------------------------------------------------------------------------
1563 | 
1564 | (document
1565 |   (section
1566 |     (fenced_code_block
1567 |       (fenced_code_block_delimiter)
1568 |       (block_continuation)
1569 |       (code_fence_content
1570 |         (block_continuation)
1571 |         (block_continuation))
1572 |       (fenced_code_block_delimiter))))
1573 | 
1574 | ================================================================================
1575 | Example 95 - https://github.github.com/gfm/#example-95
1576 | ================================================================================
1577 | ~~~~
1578 | aaa
1579 | ~~~
1580 | ~~~~
1581 | 
1582 | --------------------------------------------------------------------------------
1583 | 
1584 | (document
1585 |   (section
1586 |     (fenced_code_block
1587 |       (fenced_code_block_delimiter)
1588 |       (block_continuation)
1589 |       (code_fence_content
1590 |         (block_continuation)
1591 |         (block_continuation))
1592 |       (fenced_code_block_delimiter))))
1593 | 
1594 | ================================================================================
1595 | Example 96 - https://github.github.com/gfm/#example-96
1596 | ================================================================================
1597 | ```
1598 | 
1599 | --------------------------------------------------------------------------------
1600 | 
1601 | (document
1602 |   (section
1603 |     (fenced_code_block
1604 |       (fenced_code_block_delimiter))))
1605 | 
1606 | ================================================================================
1607 | Example 97 - https://github.github.com/gfm/#example-97
1608 | ================================================================================
1609 | `````
1610 | 
1611 | ```
1612 | aaa
1613 | 
1614 | --------------------------------------------------------------------------------
1615 | 
1616 | (document
1617 |   (section
1618 |     (fenced_code_block
1619 |       (fenced_code_block_delimiter)
1620 |       (block_continuation)
1621 |       (code_fence_content
1622 |         (block_continuation)
1623 |         (block_continuation)))))
1624 | 
1625 | ================================================================================
1626 | Example 98 - https://github.github.com/gfm/#example-98
1627 | ================================================================================
1628 | > ```
1629 | > aaa
1630 | 
1631 | bbb
1632 | 
1633 | --------------------------------------------------------------------------------
1634 | 
1635 | (document
1636 |   (section
1637 |     (block_quote
1638 |       (block_quote_marker)
1639 |       (fenced_code_block
1640 |         (fenced_code_block_delimiter)
1641 |         (block_continuation)
1642 |         (code_fence_content)))
1643 |     (paragraph
1644 |       (inline))))
1645 | 
1646 | ================================================================================
1647 | Example 99 - https://github.github.com/gfm/#example-99
1648 | ================================================================================
1649 | ```
1650 | 
1651 | 
1652 | ```
1653 | 
1654 | --------------------------------------------------------------------------------
1655 | 
1656 | (document
1657 |   (section
1658 |     (fenced_code_block
1659 |       (fenced_code_block_delimiter)
1660 |       (block_continuation)
1661 |       (code_fence_content
1662 |         (block_continuation)
1663 |         (block_continuation))
1664 |       (fenced_code_block_delimiter))))
1665 | 
1666 | ================================================================================
1667 | Example 100 - https://github.github.com/gfm/#example-100
1668 | ================================================================================
1669 | ```
1670 | ```
1671 | 
1672 | --------------------------------------------------------------------------------
1673 | 
1674 | (document
1675 |   (section
1676 |     (fenced_code_block
1677 |       (fenced_code_block_delimiter)
1678 |       (block_continuation)
1679 |       (fenced_code_block_delimiter))))
1680 | 
1681 | ================================================================================
1682 | Example 101 - https://github.github.com/gfm/#example-101
1683 | ================================================================================
1684 |  ```
1685 |  aaa
1686 | aaa
1687 | ```
1688 | 
1689 | --------------------------------------------------------------------------------
1690 | 
1691 | (document
1692 |   (section
1693 |     (fenced_code_block
1694 |       (fenced_code_block_delimiter)
1695 |       (block_continuation)
1696 |       (code_fence_content
1697 |         (block_continuation)
1698 |         (block_continuation))
1699 |       (fenced_code_block_delimiter))))
1700 | 
1701 | ================================================================================
1702 | Example 102 - https://github.github.com/gfm/#example-102
1703 | ================================================================================
1704 |   ```
1705 | aaa
1706 |   aaa
1707 | aaa
1708 |   ```
1709 | 
1710 | --------------------------------------------------------------------------------
1711 | 
1712 | (document
1713 |   (section
1714 |     (fenced_code_block
1715 |       (fenced_code_block_delimiter)
1716 |       (block_continuation)
1717 |       (code_fence_content
1718 |         (block_continuation)
1719 |         (block_continuation)
1720 |         (block_continuation))
1721 |       (fenced_code_block_delimiter))))
1722 | 
1723 | ================================================================================
1724 | Example 103 - https://github.github.com/gfm/#example-103
1725 | ================================================================================
1726 |    ```
1727 |    aaa
1728 |     aaa
1729 |   aaa
1730 |    ```
1731 | 
1732 | --------------------------------------------------------------------------------
1733 | 
1734 | (document
1735 |   (section
1736 |     (fenced_code_block
1737 |       (fenced_code_block_delimiter)
1738 |       (block_continuation)
1739 |       (code_fence_content
1740 |         (block_continuation)
1741 |         (block_continuation)
1742 |         (block_continuation))
1743 |       (fenced_code_block_delimiter))))
1744 | 
1745 | ================================================================================
1746 | Example 104 - https://github.github.com/gfm/#example-104
1747 | ================================================================================
1748 |     ```
1749 |     aaa
1750 |     ```
1751 | 
1752 | --------------------------------------------------------------------------------
1753 | 
1754 | (document
1755 |   (section
1756 |     (indented_code_block
1757 |       (block_continuation)
1758 |       (block_continuation))))
1759 | 
1760 | ================================================================================
1761 | Example 105 - https://github.github.com/gfm/#example-105
1762 | ================================================================================
1763 | ```
1764 | aaa
1765 |   ```
1766 | 
1767 | --------------------------------------------------------------------------------
1768 | 
1769 | (document
1770 |   (section
1771 |     (fenced_code_block
1772 |       (fenced_code_block_delimiter)
1773 |       (block_continuation)
1774 |       (code_fence_content
1775 |         (block_continuation))
1776 |       (fenced_code_block_delimiter))))
1777 | 
1778 | ================================================================================
1779 | Example 106 - https://github.github.com/gfm/#example-106
1780 | ================================================================================
1781 |    ```
1782 | aaa
1783 |   ```
1784 | 
1785 | --------------------------------------------------------------------------------
1786 | 
1787 | (document
1788 |   (section
1789 |     (fenced_code_block
1790 |       (fenced_code_block_delimiter)
1791 |       (block_continuation)
1792 |       (code_fence_content
1793 |         (block_continuation))
1794 |       (fenced_code_block_delimiter))))
1795 | 
1796 | ================================================================================
1797 | Example 108 - https://github.github.com/gfm/#example-108
1798 | ================================================================================
1799 | ``` ```
1800 | aaa
1801 | 
1802 | --------------------------------------------------------------------------------
1803 | 
1804 | (document
1805 |   (section
1806 |     (paragraph
1807 |       (inline))))
1808 | 
1809 | ================================================================================
1810 | Example 109 - https://github.github.com/gfm/#example-109
1811 | ================================================================================
1812 | ~~~~~~
1813 | aaa
1814 | ~~~ ~~
1815 | 
1816 | --------------------------------------------------------------------------------
1817 | 
1818 | (document
1819 |   (section
1820 |     (fenced_code_block
1821 |       (fenced_code_block_delimiter)
1822 |       (block_continuation)
1823 |       (code_fence_content
1824 |         (block_continuation)))))
1825 | 
1826 | ================================================================================
1827 | Example 110 - https://github.github.com/gfm/#example-110
1828 | ================================================================================
1829 | foo
1830 | ```
1831 | bar
1832 | ```
1833 | baz
1834 | 
1835 | --------------------------------------------------------------------------------
1836 | 
1837 | (document
1838 |   (section
1839 |     (paragraph
1840 |       (inline))
1841 |     (fenced_code_block
1842 |       (fenced_code_block_delimiter)
1843 |       (block_continuation)
1844 |       (code_fence_content
1845 |         (block_continuation))
1846 |       (fenced_code_block_delimiter))
1847 |     (paragraph
1848 |       (inline))))
1849 | 
1850 | ================================================================================
1851 | Example 111 - https://github.github.com/gfm/#example-111
1852 | ================================================================================
1853 | foo
1854 | ---
1855 | ~~~
1856 | bar
1857 | ~~~
1858 | # baz
1859 | 
1860 | --------------------------------------------------------------------------------
1861 | 
1862 | (document
1863 |   (section
1864 |     (setext_heading
1865 |       (paragraph
1866 |         (inline))
1867 |       (setext_h2_underline))
1868 |     (fenced_code_block
1869 |       (fenced_code_block_delimiter)
1870 |       (block_continuation)
1871 |       (code_fence_content
1872 |         (block_continuation))
1873 |       (fenced_code_block_delimiter)))
1874 |   (section
1875 |     (atx_heading
1876 |       (atx_h1_marker)
1877 |       (inline))))
1878 | 
1879 | ================================================================================
1880 | Example 112 - https://github.github.com/gfm/#example-112
1881 | ================================================================================
1882 | ```ruby
1883 | def foo(x)
1884 |   return 3
1885 | end
1886 | ```
1887 | 
1888 | --------------------------------------------------------------------------------
1889 | 
1890 | (document
1891 |   (section
1892 |     (fenced_code_block
1893 |       (fenced_code_block_delimiter)
1894 |       (info_string
1895 |         (language))
1896 |       (block_continuation)
1897 |       (code_fence_content
1898 |         (block_continuation)
1899 |         (block_continuation)
1900 |         (block_continuation))
1901 |       (fenced_code_block_delimiter))))
1902 | 
1903 | ================================================================================
1904 | Example 113 - https://github.github.com/gfm/#example-113
1905 | ================================================================================
1906 | ~~~~    ruby startline=3 $%@#$
1907 | def foo(x)
1908 |   return 3
1909 | end
1910 | ~~~~~~~
1911 | 
1912 | --------------------------------------------------------------------------------
1913 | 
1914 | (document
1915 |   (section
1916 |     (fenced_code_block
1917 |       (fenced_code_block_delimiter)
1918 |       (info_string
1919 |         (language))
1920 |       (block_continuation)
1921 |       (code_fence_content
1922 |         (block_continuation)
1923 |         (block_continuation)
1924 |         (block_continuation))
1925 |       (fenced_code_block_delimiter))))
1926 | 
1927 | ================================================================================
1928 | Example 114 - https://github.github.com/gfm/#example-114
1929 | ================================================================================
1930 | ````;
1931 | ````
1932 | 
1933 | --------------------------------------------------------------------------------
1934 | 
1935 | (document
1936 |   (section
1937 |     (fenced_code_block
1938 |       (fenced_code_block_delimiter)
1939 |       (info_string
1940 |         (language))
1941 |       (block_continuation)
1942 |       (fenced_code_block_delimiter))))
1943 | 
1944 | ================================================================================
1945 | Example 115 - https://github.github.com/gfm/#example-115
1946 | ================================================================================
1947 | ``` aa ```
1948 | foo
1949 | 
1950 | --------------------------------------------------------------------------------
1951 | 
1952 | (document
1953 |   (section
1954 |     (paragraph
1955 |       (inline))))
1956 | 
1957 | ================================================================================
1958 | Example 116 - https://github.github.com/gfm/#example-116
1959 | ================================================================================
1960 | ~~~ aa ``` ~~~
1961 | foo
1962 | ~~~
1963 | 
1964 | --------------------------------------------------------------------------------
1965 | 
1966 | (document
1967 |   (section
1968 |     (fenced_code_block
1969 |       (fenced_code_block_delimiter)
1970 |       (info_string
1971 |         (language))
1972 |       (block_continuation)
1973 |       (code_fence_content
1974 |         (block_continuation))
1975 |       (fenced_code_block_delimiter))))
1976 | 
1977 | ================================================================================
1978 | Example 117 - https://github.github.com/gfm/#example-117
1979 | ================================================================================
1980 | ```
1981 | ``` aaa
1982 | ```
1983 | 
1984 | --------------------------------------------------------------------------------
1985 | 
1986 | (document
1987 |   (section
1988 |     (fenced_code_block
1989 |       (fenced_code_block_delimiter)
1990 |       (block_continuation)
1991 |       (code_fence_content
1992 |         (block_continuation))
1993 |       (fenced_code_block_delimiter))))
1994 | 
1995 | ================================================================================
1996 | Example 118 - https://github.github.com/gfm/#example-118
1997 | ================================================================================
1998 | <table><tr><td>
1999 | <pre>
2000 | **Hello**,
2001 | 
2002 | _world_.
2003 | </pre>
2004 | </td></tr></table>
2005 | 
2006 | --------------------------------------------------------------------------------
2007 | 
2008 | (document
2009 |   (section
2010 |     (html_block
2011 |       (block_continuation)
2012 |       (block_continuation)
2013 |       (block_continuation))
2014 |     (paragraph
2015 |       (inline))
2016 |     (html_block)))
2017 | 
2018 | ================================================================================
2019 | Example 119 - https://github.github.com/gfm/#example-119
2020 | ================================================================================
2021 | <table>
2022 |   <tr>
2023 |     <td>
2024 |            hi
2025 |     </td>
2026 |   </tr>
2027 | </table>
2028 | 
2029 | okay.
2030 | 
2031 | --------------------------------------------------------------------------------
2032 | 
2033 | (document
2034 |   (section
2035 |     (html_block
2036 |       (block_continuation)
2037 |       (block_continuation)
2038 |       (block_continuation)
2039 |       (block_continuation)
2040 |       (block_continuation)
2041 |       (block_continuation)
2042 |       (block_continuation))
2043 |     (paragraph
2044 |       (inline))))
2045 | 
2046 | ================================================================================
2047 | Example 120 - https://github.github.com/gfm/#example-120
2048 | ================================================================================
2049 |  <div>
2050 |   *hello*
2051 |          <foo><a>
2052 | 
2053 | --------------------------------------------------------------------------------
2054 | 
2055 | (document
2056 |   (section
2057 |     (html_block
2058 |       (block_continuation)
2059 |       (block_continuation))))
2060 | 
2061 | ================================================================================
2062 | Example 121 - https://github.github.com/gfm/#example-121
2063 | ================================================================================
2064 | </div>
2065 | *foo*
2066 | 
2067 | --------------------------------------------------------------------------------
2068 | 
2069 | (document
2070 |   (section
2071 |     (html_block
2072 |       (block_continuation))))
2073 | 
2074 | ================================================================================
2075 | Example 122 - https://github.github.com/gfm/#example-122
2076 | ================================================================================
2077 | <DIV CLASS="foo">
2078 | 
2079 | *Markdown*
2080 | 
2081 | </DIV>
2082 | 
2083 | --------------------------------------------------------------------------------
2084 | 
2085 | (document
2086 |   (section
2087 |     (html_block
2088 |       (block_continuation))
2089 |     (paragraph
2090 |       (inline))
2091 |     (html_block)))
2092 | 
2093 | ================================================================================
2094 | Example 123 - https://github.github.com/gfm/#example-123
2095 | ================================================================================
2096 | <div id="foo"
2097 |   class="bar">
2098 | </div>
2099 | 
2100 | --------------------------------------------------------------------------------
2101 | 
2102 | (document
2103 |   (section
2104 |     (html_block
2105 |       (block_continuation)
2106 |       (block_continuation))))
2107 | 
2108 | ================================================================================
2109 | Example 124 - https://github.github.com/gfm/#example-124
2110 | ================================================================================
2111 | <div id="foo" class="bar
2112 |   baz">
2113 | </div>
2114 | 
2115 | --------------------------------------------------------------------------------
2116 | 
2117 | (document
2118 |   (section
2119 |     (html_block
2120 |       (block_continuation)
2121 |       (block_continuation))))
2122 | 
2123 | ================================================================================
2124 | Example 125 - https://github.github.com/gfm/#example-125
2125 | ================================================================================
2126 | <div>
2127 | *foo*
2128 | 
2129 | *bar*
2130 | 
2131 | --------------------------------------------------------------------------------
2132 | 
2133 | (document
2134 |   (section
2135 |     (html_block
2136 |       (block_continuation)
2137 |       (block_continuation))
2138 |     (paragraph
2139 |       (inline))))
2140 | 
2141 | ================================================================================
2142 | Example 126 - https://github.github.com/gfm/#example-126
2143 | ================================================================================
2144 | <div id="foo"
2145 | *hi*
2146 | 
2147 | --------------------------------------------------------------------------------
2148 | 
2149 | (document
2150 |   (section
2151 |     (html_block
2152 |       (block_continuation))))
2153 | 
2154 | ================================================================================
2155 | Example 127 - https://github.github.com/gfm/#example-127
2156 | ================================================================================
2157 | <div class
2158 | foo
2159 | 
2160 | --------------------------------------------------------------------------------
2161 | 
2162 | (document
2163 |   (section
2164 |     (html_block
2165 |       (block_continuation))))
2166 | 
2167 | ================================================================================
2168 | Example 128 - https://github.github.com/gfm/#example-128
2169 | ================================================================================
2170 | <div *???-&&&-<---
2171 | *foo*
2172 | 
2173 | --------------------------------------------------------------------------------
2174 | 
2175 | (document
2176 |   (section
2177 |     (html_block
2178 |       (block_continuation))))
2179 | 
2180 | ================================================================================
2181 | Example 129 - https://github.github.com/gfm/#example-129
2182 | ================================================================================
2183 | <div><a href="bar">*foo*</a></div>
2184 | 
2185 | --------------------------------------------------------------------------------
2186 | 
2187 | (document
2188 |   (section
2189 |     (html_block)))
2190 | 
2191 | ================================================================================
2192 | Example 130 - https://github.github.com/gfm/#example-130
2193 | ================================================================================
2194 | <table><tr><td>
2195 | foo
2196 | </td></tr></table>
2197 | 
2198 | --------------------------------------------------------------------------------
2199 | 
2200 | (document
2201 |   (section
2202 |     (html_block
2203 |       (block_continuation)
2204 |       (block_continuation))))
2205 | 
2206 | ================================================================================
2207 | Example 131 - https://github.github.com/gfm/#example-131
2208 | ================================================================================
2209 | <div></div>
2210 | ``` c
2211 | int x = 33;
2212 | ```
2213 | 
2214 | --------------------------------------------------------------------------------
2215 | 
2216 | (document
2217 |   (section
2218 |     (html_block
2219 |       (block_continuation)
2220 |       (block_continuation)
2221 |       (block_continuation))))
2222 | 
2223 | ================================================================================
2224 | Example 132 - https://github.github.com/gfm/#example-132
2225 | ================================================================================
2226 | <a href="foo">
2227 | *bar*
2228 | </a>
2229 | 
2230 | --------------------------------------------------------------------------------
2231 | 
2232 | (document
2233 |   (section
2234 |     (html_block
2235 |       (block_continuation)
2236 |       (block_continuation))))
2237 | 
2238 | ================================================================================
2239 | Example 133 - https://github.github.com/gfm/#example-133
2240 | ================================================================================
2241 | <Warning>
2242 | *bar*
2243 | </Warning>
2244 | 
2245 | --------------------------------------------------------------------------------
2246 | 
2247 | (document
2248 |   (section
2249 |     (html_block
2250 |       (block_continuation)
2251 |       (block_continuation))))
2252 | 
2253 | ================================================================================
2254 | Example 134 - https://github.github.com/gfm/#example-134
2255 | ================================================================================
2256 | <i class="foo">
2257 | *bar*
2258 | </i>
2259 | 
2260 | --------------------------------------------------------------------------------
2261 | 
2262 | (document
2263 |   (section
2264 |     (html_block
2265 |       (block_continuation)
2266 |       (block_continuation))))
2267 | 
2268 | ================================================================================
2269 | Example 135 - https://github.github.com/gfm/#example-135
2270 | ================================================================================
2271 | </ins>
2272 | *bar*
2273 | 
2274 | --------------------------------------------------------------------------------
2275 | 
2276 | (document
2277 |   (section
2278 |     (html_block
2279 |       (block_continuation))))
2280 | 
2281 | ================================================================================
2282 | Example 136 - https://github.github.com/gfm/#example-136
2283 | ================================================================================
2284 | <del>
2285 | *foo*
2286 | </del>
2287 | 
2288 | --------------------------------------------------------------------------------
2289 | 
2290 | (document
2291 |   (section
2292 |     (html_block
2293 |       (block_continuation)
2294 |       (block_continuation))))
2295 | 
2296 | ================================================================================
2297 | Example 137 - https://github.github.com/gfm/#example-137
2298 | ================================================================================
2299 | <del>
2300 | 
2301 | *foo*
2302 | 
2303 | </del>
2304 | 
2305 | --------------------------------------------------------------------------------
2306 | 
2307 | (document
2308 |   (section
2309 |     (html_block
2310 |       (block_continuation))
2311 |     (paragraph
2312 |       (inline))
2313 |     (html_block)))
2314 | 
2315 | ================================================================================
2316 | Example 138 - https://github.github.com/gfm/#example-138
2317 | ================================================================================
2318 | <del>*foo*</del>
2319 | 
2320 | --------------------------------------------------------------------------------
2321 | 
2322 | (document
2323 |   (section
2324 |     (paragraph
2325 |       (inline))))
2326 | 
2327 | ================================================================================
2328 | Example 139 - https://github.github.com/gfm/#example-139
2329 | ================================================================================
2330 | <pre language="haskell"><code>
2331 | import Text.HTML.TagSoup
2332 | 
2333 | main :: IO ()
2334 | main = print $ parseTags tags
2335 | </code></pre>
2336 | okay
2337 | 
2338 | --------------------------------------------------------------------------------
2339 | 
2340 | (document
2341 |   (section
2342 |     (html_block
2343 |       (block_continuation)
2344 |       (block_continuation)
2345 |       (block_continuation)
2346 |       (block_continuation)
2347 |       (block_continuation))
2348 |     (paragraph
2349 |       (inline))))
2350 | 
2351 | ================================================================================
2352 | Example 140 - https://github.github.com/gfm/#example-140
2353 | ================================================================================
2354 | <script type="text/javascript">
2355 | // JavaScript example
2356 | 
2357 | document.getElementById("demo").innerHTML = "Hello JavaScript!";
2358 | </script>
2359 | okay
2360 | 
2361 | --------------------------------------------------------------------------------
2362 | 
2363 | (document
2364 |   (section
2365 |     (html_block
2366 |       (block_continuation)
2367 |       (block_continuation)
2368 |       (block_continuation)
2369 |       (block_continuation))
2370 |     (paragraph
2371 |       (inline))))
2372 | 
2373 | ================================================================================
2374 | Example 141 - https://github.github.com/gfm/#example-141
2375 | ================================================================================
2376 | <style
2377 |   type="text/css">
2378 | h1 {color:red;}
2379 | 
2380 | p {color:blue;}
2381 | </style>
2382 | okay
2383 | 
2384 | --------------------------------------------------------------------------------
2385 | 
2386 | (document
2387 |   (section
2388 |     (html_block
2389 |       (block_continuation)
2390 |       (block_continuation)
2391 |       (block_continuation)
2392 |       (block_continuation)
2393 |       (block_continuation))
2394 |     (paragraph
2395 |       (inline))))
2396 | 
2397 | ================================================================================
2398 | Example 142 - https://github.github.com/gfm/#example-142
2399 | ================================================================================
2400 | <style
2401 |   type="text/css">
2402 | 
2403 | foo
2404 | 
2405 | --------------------------------------------------------------------------------
2406 | 
2407 | (document
2408 |   (section
2409 |     (html_block
2410 |       (block_continuation)
2411 |       (block_continuation)
2412 |       (block_continuation))))
2413 | 
2414 | ================================================================================
2415 | Example 143 - https://github.github.com/gfm/#example-143
2416 | ================================================================================
2417 | > <div>
2418 | > foo
2419 | 
2420 | bar
2421 | 
2422 | --------------------------------------------------------------------------------
2423 | 
2424 | (document
2425 |   (section
2426 |     (block_quote
2427 |       (block_quote_marker)
2428 |       (html_block
2429 |         (block_continuation)))
2430 |     (paragraph
2431 |       (inline))))
2432 | 
2433 | ================================================================================
2434 | Example 144 - https://github.github.com/gfm/#example-144
2435 | ================================================================================
2436 | - <div>
2437 | - foo
2438 | 
2439 | --------------------------------------------------------------------------------
2440 | 
2441 | (document
2442 |   (section
2443 |     (list
2444 |       (list_item
2445 |         (list_marker_minus)
2446 |         (html_block))
2447 |       (list_item
2448 |         (list_marker_minus)
2449 |         (paragraph
2450 |           (inline))))))
2451 | 
2452 | ================================================================================
2453 | Example 145 - https://github.github.com/gfm/#example-145
2454 | ================================================================================
2455 | <style>p{color:red;}</style>
2456 | *foo*
2457 | 
2458 | --------------------------------------------------------------------------------
2459 | 
2460 | (document
2461 |   (section
2462 |     (html_block)
2463 |     (paragraph
2464 |       (inline))))
2465 | 
2466 | ================================================================================
2467 | Example 146 - https://github.github.com/gfm/#example-146
2468 | ================================================================================
2469 | <!-- foo -->*bar*
2470 | *baz*
2471 | 
2472 | --------------------------------------------------------------------------------
2473 | 
2474 | (document
2475 |   (section
2476 |     (html_block)
2477 |     (paragraph
2478 |       (inline))))
2479 | 
2480 | ================================================================================
2481 | Example 147 - https://github.github.com/gfm/#example-147
2482 | ================================================================================
2483 | <script>
2484 | foo
2485 | </script>1. *bar*
2486 | 
2487 | --------------------------------------------------------------------------------
2488 | 
2489 | (document
2490 |   (section
2491 |     (html_block
2492 |       (block_continuation)
2493 |       (block_continuation))))
2494 | 
2495 | ================================================================================
2496 | Example 148 - https://github.github.com/gfm/#example-148
2497 | ================================================================================
2498 | <!-- Foo
2499 | 
2500 | bar
2501 |    baz -->
2502 | okay
2503 | 
2504 | --------------------------------------------------------------------------------
2505 | 
2506 | (document
2507 |   (section
2508 |     (html_block
2509 |       (block_continuation)
2510 |       (block_continuation)
2511 |       (block_continuation))
2512 |     (paragraph
2513 |       (inline))))
2514 | 
2515 | ================================================================================
2516 | Example 149 - https://github.github.com/gfm/#example-149
2517 | ================================================================================
2518 | <?php
2519 | 
2520 |   echo '>';
2521 | 
2522 | ?>
2523 | okay
2524 | 
2525 | --------------------------------------------------------------------------------
2526 | 
2527 | (document
2528 |   (section
2529 |     (html_block
2530 |       (block_continuation)
2531 |       (block_continuation)
2532 |       (block_continuation)
2533 |       (block_continuation))
2534 |     (paragraph
2535 |       (inline))))
2536 | 
2537 | ================================================================================
2538 | Example 150 - https://github.github.com/gfm/#example-150
2539 | ================================================================================
2540 | <!DOCTYPE html>
2541 | 
2542 | --------------------------------------------------------------------------------
2543 | 
2544 | (document
2545 |   (section
2546 |     (html_block)))
2547 | 
2548 | ================================================================================
2549 | Example 151 - https://github.github.com/gfm/#example-151
2550 | ================================================================================
2551 | <![CDATA[
2552 | function matchwo(a,b)
2553 | {
2554 |   if (a < b && a < 0) then {
2555 |     return 1;
2556 | 
2557 |   } else {
2558 | 
2559 |     return 0;
2560 |   }
2561 | }
2562 | ]]>
2563 | okay
2564 | 
2565 | --------------------------------------------------------------------------------
2566 | 
2567 | (document
2568 |   (section
2569 |     (html_block
2570 |       (block_continuation)
2571 |       (block_continuation)
2572 |       (block_continuation)
2573 |       (block_continuation)
2574 |       (block_continuation)
2575 |       (block_continuation)
2576 |       (block_continuation)
2577 |       (block_continuation)
2578 |       (block_continuation)
2579 |       (block_continuation)
2580 |       (block_continuation))
2581 |     (paragraph
2582 |       (inline))))
2583 | 
2584 | ================================================================================
2585 | Example 152 - https://github.github.com/gfm/#example-152
2586 | ================================================================================
2587 |   <!-- foo -->
2588 | 
2589 |     <!-- foo -->
2590 | 
2591 | --------------------------------------------------------------------------------
2592 | 
2593 | (document
2594 |   (section
2595 |     (html_block)
2596 |     (indented_code_block)))
2597 | 
2598 | ================================================================================
2599 | Example 153 - https://github.github.com/gfm/#example-153
2600 | ================================================================================
2601 |   <div>
2602 | 
2603 |     <div>
2604 | 
2605 | --------------------------------------------------------------------------------
2606 | 
2607 | (document
2608 |   (section
2609 |     (html_block
2610 |       (block_continuation))
2611 |     (indented_code_block)))
2612 | 
2613 | ================================================================================
2614 | Example 154 - https://github.github.com/gfm/#example-154
2615 | ================================================================================
2616 | Foo
2617 | <div>
2618 | bar
2619 | </div>
2620 | 
2621 | --------------------------------------------------------------------------------
2622 | 
2623 | (document
2624 |   (section
2625 |     (paragraph
2626 |       (inline))
2627 |     (html_block
2628 |       (block_continuation)
2629 |       (block_continuation))))
2630 | 
2631 | ================================================================================
2632 | Example 155 - https://github.github.com/gfm/#example-155
2633 | ================================================================================
2634 | <div>
2635 | bar
2636 | </div>
2637 | *foo*
2638 | 
2639 | --------------------------------------------------------------------------------
2640 | 
2641 | (document
2642 |   (section
2643 |     (html_block
2644 |       (block_continuation)
2645 |       (block_continuation)
2646 |       (block_continuation))))
2647 | 
2648 | ================================================================================
2649 | Example 156 - https://github.github.com/gfm/#example-156
2650 | ================================================================================
2651 | Foo
2652 | <a href="bar">
2653 | baz
2654 | 
2655 | --------------------------------------------------------------------------------
2656 | 
2657 | (document
2658 |   (section
2659 |     (paragraph
2660 |       (inline))))
2661 | 
2662 | ================================================================================
2663 | Example 157 - https://github.github.com/gfm/#example-157
2664 | ================================================================================
2665 | <div>
2666 | 
2667 | *Emphasized* text.
2668 | 
2669 | </div>
2670 | 
2671 | --------------------------------------------------------------------------------
2672 | 
2673 | (document
2674 |   (section
2675 |     (html_block
2676 |       (block_continuation))
2677 |     (paragraph
2678 |       (inline))
2679 |     (html_block)))
2680 | 
2681 | ================================================================================
2682 | Example 158 - https://github.github.com/gfm/#example-158
2683 | ================================================================================
2684 | <div>
2685 | *Emphasized* text.
2686 | </div>
2687 | 
2688 | --------------------------------------------------------------------------------
2689 | 
2690 | (document
2691 |   (section
2692 |     (html_block
2693 |       (block_continuation)
2694 |       (block_continuation))))
2695 | 
2696 | ================================================================================
2697 | Example 159 - https://github.github.com/gfm/#example-159
2698 | ================================================================================
2699 | <table>
2700 | 
2701 | <tr>
2702 | 
2703 | <td>
2704 | Hi
2705 | </td>
2706 | 
2707 | </tr>
2708 | 
2709 | </table>
2710 | 
2711 | --------------------------------------------------------------------------------
2712 | 
2713 | (document
2714 |   (section
2715 |     (html_block
2716 |       (block_continuation))
2717 |     (html_block
2718 |       (block_continuation))
2719 |     (html_block
2720 |       (block_continuation)
2721 |       (block_continuation)
2722 |       (block_continuation))
2723 |     (html_block
2724 |       (block_continuation))
2725 |     (html_block)))
2726 | 
2727 | ================================================================================
2728 | Example 160 - https://github.github.com/gfm/#example-160
2729 | ================================================================================
2730 | <table>
2731 | 
2732 |   <tr>
2733 | 
2734 |     <td>
2735 |       Hi
2736 |     </td>
2737 | 
2738 |   </tr>
2739 | 
2740 | </table>
2741 | 
2742 | --------------------------------------------------------------------------------
2743 | 
2744 | (document
2745 |   (section
2746 |     (html_block
2747 |       (block_continuation))
2748 |     (html_block
2749 |       (block_continuation))
2750 |     (indented_code_block
2751 |       (block_continuation)
2752 |       (block_continuation))
2753 |     (html_block
2754 |       (block_continuation))
2755 |     (html_block)))
2756 | 
2757 | ================================================================================
2758 | Example 161 - https://github.github.com/gfm/#example-161
2759 | ================================================================================
2760 | [foo]: /url "title"
2761 | 
2762 | [foo]
2763 | 
2764 | --------------------------------------------------------------------------------
2765 | 
2766 | (document
2767 |   (section
2768 |     (link_reference_definition
2769 |       (link_label)
2770 |       (link_destination)
2771 |       (link_title))
2772 |     (paragraph
2773 |       (inline))))
2774 | 
2775 | ================================================================================
2776 | Example 162 - https://github.github.com/gfm/#example-162
2777 | ================================================================================
2778 |    [foo]:
2779 |       /url
2780 |            'the title'
2781 | 
2782 | [foo]
2783 | 
2784 | --------------------------------------------------------------------------------
2785 | 
2786 | (document
2787 |   (section
2788 |     (link_reference_definition
2789 |       (link_label)
2790 |       (link_destination)
2791 |       (link_title))
2792 |     (paragraph
2793 |       (inline))))
2794 | 
2795 | ================================================================================
2796 | Example 163 - https://github.github.com/gfm/#example-163
2797 | ================================================================================
2798 | [Foo*bar\]]:my_(url) 'title (with parens)'
2799 | 
2800 | [Foo*bar\]]
2801 | 
2802 | --------------------------------------------------------------------------------
2803 | 
2804 | (document
2805 |   (section
2806 |     (link_reference_definition
2807 |       (link_label
2808 |         (backslash_escape))
2809 |       (link_destination)
2810 |       (link_title))
2811 |     (paragraph
2812 |       (inline))))
2813 | 
2814 | ================================================================================
2815 | Example 164 - https://github.github.com/gfm/#example-164
2816 | ================================================================================
2817 | [Foo bar]:
2818 | <my url>
2819 | 'title'
2820 | 
2821 | [Foo bar]
2822 | 
2823 | --------------------------------------------------------------------------------
2824 | 
2825 | (document
2826 |   (section
2827 |     (link_reference_definition
2828 |       (link_label)
2829 |       (link_destination)
2830 |       (link_title))
2831 |     (paragraph
2832 |       (inline))))
2833 | 
2834 | ================================================================================
2835 | Example 165 - https://github.github.com/gfm/#example-165
2836 | ================================================================================
2837 | [foo]: /url '
2838 | title
2839 | line1
2840 | line2
2841 | '
2842 | 
2843 | [foo]
2844 | 
2845 | --------------------------------------------------------------------------------
2846 | 
2847 | (document
2848 |   (section
2849 |     (link_reference_definition
2850 |       (link_label)
2851 |       (link_destination)
2852 |       (link_title))
2853 |     (paragraph
2854 |       (inline))))
2855 | 
2856 | ================================================================================
2857 | Example 166 - https://github.github.com/gfm/#example-166
2858 | ================================================================================
2859 | [foo]: /url 'title
2860 | 
2861 | with blank line'
2862 | 
2863 | [foo]
2864 | 
2865 | --------------------------------------------------------------------------------
2866 | 
2867 | (document
2868 |   (section
2869 |     (paragraph
2870 |       (inline))
2871 |     (paragraph
2872 |       (inline))
2873 |     (paragraph
2874 |       (inline))))
2875 | 
2876 | ================================================================================
2877 | Example 167 - https://github.github.com/gfm/#example-167
2878 | ================================================================================
2879 | [foo]:
2880 | /url
2881 | 
2882 | [foo]
2883 | 
2884 | --------------------------------------------------------------------------------
2885 | 
2886 | (document
2887 |   (section
2888 |     (link_reference_definition
2889 |       (link_label)
2890 |       (link_destination))
2891 |     (paragraph
2892 |       (inline))))
2893 | 
2894 | ================================================================================
2895 | Example 168 - https://github.github.com/gfm/#example-168
2896 | ================================================================================
2897 | [foo]:
2898 | 
2899 | [foo]
2900 | 
2901 | --------------------------------------------------------------------------------
2902 | 
2903 | (document
2904 |   (section
2905 |     (paragraph
2906 |       (inline))
2907 |     (paragraph
2908 |       (inline))))
2909 | 
2910 | ================================================================================
2911 | Example 169 - https://github.github.com/gfm/#example-169
2912 | ================================================================================
2913 | [foo]: <>
2914 | 
2915 | [foo]
2916 | 
2917 | --------------------------------------------------------------------------------
2918 | 
2919 | (document
2920 |   (section
2921 |     (link_reference_definition
2922 |       (link_label)
2923 |       (link_destination))
2924 |     (paragraph
2925 |       (inline))))
2926 | 
2927 | ================================================================================
2928 | Example 170 - https://github.github.com/gfm/#example-170
2929 | ================================================================================
2930 | [foo]: <bar>(baz)
2931 | 
2932 | [foo]
2933 | 
2934 | --------------------------------------------------------------------------------
2935 | 
2936 | (document
2937 |   (section
2938 |     (paragraph
2939 |       (inline))
2940 |     (paragraph
2941 |       (inline))))
2942 | 
2943 | ================================================================================
2944 | Example 171 - https://github.github.com/gfm/#example-171
2945 | ================================================================================
2946 | [foo]: /url\bar\*baz "foo\"bar\baz"
2947 | 
2948 | [foo]
2949 | 
2950 | --------------------------------------------------------------------------------
2951 | 
2952 | (document
2953 |   (section
2954 |     (link_reference_definition
2955 |       (link_label)
2956 |       (link_destination
2957 |         (backslash_escape))
2958 |       (link_title
2959 |         (backslash_escape)))
2960 |     (paragraph
2961 |       (inline))))
2962 | 
2963 | ================================================================================
2964 | Example 172 - https://github.github.com/gfm/#example-172
2965 | ================================================================================
2966 | [foo]
2967 | 
2968 | [foo]: url
2969 | 
2970 | --------------------------------------------------------------------------------
2971 | 
2972 | (document
2973 |   (section
2974 |     (paragraph
2975 |       (inline))
2976 |     (link_reference_definition
2977 |       (link_label)
2978 |       (link_destination))))
2979 | 
2980 | ================================================================================
2981 | Example 173 - https://github.github.com/gfm/#example-173
2982 | ================================================================================
2983 | [foo]
2984 | 
2985 | [foo]: first
2986 | [foo]: second
2987 | 
2988 | --------------------------------------------------------------------------------
2989 | 
2990 | (document
2991 |   (section
2992 |     (paragraph
2993 |       (inline))
2994 |     (link_reference_definition
2995 |       (link_label)
2996 |       (link_destination))
2997 |     (link_reference_definition
2998 |       (link_label)
2999 |       (link_destination))))
3000 | 
3001 | ================================================================================
3002 | Example 174 - https://github.github.com/gfm/#example-174
3003 | ================================================================================
3004 | [FOO]: /url
3005 | 
3006 | [Foo]
3007 | 
3008 | --------------------------------------------------------------------------------
3009 | 
3010 | (document
3011 |   (section
3012 |     (link_reference_definition
3013 |       (link_label)
3014 |       (link_destination))
3015 |     (paragraph
3016 |       (inline))))
3017 | 
3018 | ================================================================================
3019 | Example 175 - https://github.github.com/gfm/#example-175
3020 | ================================================================================
3021 | [ΑΓΩ]: /φου
3022 | 
3023 | [αγω]
3024 | 
3025 | --------------------------------------------------------------------------------
3026 | 
3027 | (document
3028 |   (section
3029 |     (link_reference_definition
3030 |       (link_label)
3031 |       (link_destination))
3032 |     (paragraph
3033 |       (inline))))
3034 | 
3035 | ================================================================================
3036 | Example 176 - https://github.github.com/gfm/#example-176
3037 | ================================================================================
3038 | [foo]: /url
3039 | 
3040 | --------------------------------------------------------------------------------
3041 | 
3042 | (document
3043 |   (section
3044 |     (link_reference_definition
3045 |       (link_label)
3046 |       (link_destination))))
3047 | 
3048 | ================================================================================
3049 | Example 177 - https://github.github.com/gfm/#example-177
3050 | ================================================================================
3051 | [
3052 | foo
3053 | ]: /url
3054 | bar
3055 | 
3056 | --------------------------------------------------------------------------------
3057 | 
3058 | (document
3059 |   (section
3060 |     (link_reference_definition
3061 |       (link_label)
3062 |       (link_destination))
3063 |     (paragraph
3064 |       (inline))))
3065 | 
3066 | ================================================================================
3067 | Example 178 - https://github.github.com/gfm/#example-178
3068 | ================================================================================
3069 | [foo]: /url "title" ok
3070 | 
3071 | --------------------------------------------------------------------------------
3072 | 
3073 | (document
3074 |   (section
3075 |     (paragraph
3076 |       (inline))))
3077 | 
3078 | ================================================================================
3079 | Example 179 - https://github.github.com/gfm/#example-179
3080 | ================================================================================
3081 | [foo]: /url
3082 | "title" ok
3083 | 
3084 | --------------------------------------------------------------------------------
3085 | 
3086 | (document
3087 |   (section
3088 |     (link_reference_definition
3089 |       (link_label)
3090 |       (link_destination))
3091 |     (paragraph
3092 |       (inline))))
3093 | 
3094 | ================================================================================
3095 | Example 180 - https://github.github.com/gfm/#example-180
3096 | ================================================================================
3097 |     [foo]: /url "title"
3098 | 
3099 | [foo]
3100 | 
3101 | --------------------------------------------------------------------------------
3102 | 
3103 | (document
3104 |   (section
3105 |     (indented_code_block)
3106 |     (paragraph
3107 |       (inline))))
3108 | 
3109 | ================================================================================
3110 | Example 181 - https://github.github.com/gfm/#example-181
3111 | ================================================================================
3112 | ```
3113 | [foo]: /url
3114 | ```
3115 | 
3116 | [foo]
3117 | 
3118 | --------------------------------------------------------------------------------
3119 | 
3120 | (document
3121 |   (section
3122 |     (fenced_code_block
3123 |       (fenced_code_block_delimiter)
3124 |       (block_continuation)
3125 |       (code_fence_content
3126 |         (block_continuation))
3127 |       (fenced_code_block_delimiter))
3128 |     (paragraph
3129 |       (inline))))
3130 | 
3131 | ================================================================================
3132 | Example 182 - https://github.github.com/gfm/#example-182
3133 | ================================================================================
3134 | Foo
3135 | [bar]: /baz
3136 | 
3137 | [bar]
3138 | 
3139 | --------------------------------------------------------------------------------
3140 | 
3141 | (document
3142 |   (section
3143 |     (paragraph
3144 |       (inline))
3145 |     (paragraph
3146 |       (inline))))
3147 | 
3148 | ================================================================================
3149 | Example 183 - https://github.github.com/gfm/#example-183
3150 | ================================================================================
3151 | # [Foo]
3152 | [foo]: /url
3153 | > bar
3154 | 
3155 | --------------------------------------------------------------------------------
3156 | 
3157 | (document
3158 |   (section
3159 |     (atx_heading
3160 |       (atx_h1_marker)
3161 |       (inline))
3162 |     (link_reference_definition
3163 |       (link_label)
3164 |       (link_destination))
3165 |     (block_quote
3166 |       (block_quote_marker)
3167 |       (paragraph
3168 |         (inline)))))
3169 | 
3170 | ================================================================================
3171 | Example 184 - https://github.github.com/gfm/#example-184
3172 | ================================================================================
3173 | [foo]: /url
3174 | bar
3175 | =
3176 | [foo]
3177 | 
3178 | --------------------------------------------------------------------------------
3179 | 
3180 | (document
3181 |   (section
3182 |     (link_reference_definition
3183 |       (link_label)
3184 |       (link_destination))
3185 |     (setext_heading
3186 |       (paragraph
3187 |         (inline))
3188 |       (setext_h1_underline))
3189 |     (paragraph
3190 |       (inline))))
3191 | 
3192 | ================================================================================
3193 | Example 185 - https://github.github.com/gfm/#example-185
3194 | ================================================================================
3195 | [foo]: /url
3196 | =
3197 | [foo]
3198 | 
3199 | --------------------------------------------------------------------------------
3200 | 
3201 | (document
3202 |   (section
3203 |     (link_reference_definition
3204 |       (link_label)
3205 |       (link_destination))
3206 |     (paragraph
3207 |       (inline))))
3208 | 
3209 | ================================================================================
3210 | Example 186 - https://github.github.com/gfm/#example-186
3211 | ================================================================================
3212 | [foo]: /foo-url "foo"
3213 | [bar]: /bar-url
3214 |   "bar"
3215 | [baz]: /baz-url
3216 | 
3217 | [foo],
3218 | [bar],
3219 | [baz]
3220 | 
3221 | --------------------------------------------------------------------------------
3222 | 
3223 | (document
3224 |   (section
3225 |     (link_reference_definition
3226 |       (link_label)
3227 |       (link_destination)
3228 |       (link_title))
3229 |     (link_reference_definition
3230 |       (link_label)
3231 |       (link_destination)
3232 |       (link_title))
3233 |     (link_reference_definition
3234 |       (link_label)
3235 |       (link_destination))
3236 |     (paragraph
3237 |       (inline))))
3238 | 
3239 | ================================================================================
3240 | Example 187 - https://github.github.com/gfm/#example-187
3241 | ================================================================================
3242 | [foo]
3243 | 
3244 | > [foo]: /url
3245 | 
3246 | --------------------------------------------------------------------------------
3247 | 
3248 | (document
3249 |   (section
3250 |     (paragraph
3251 |       (inline))
3252 |     (block_quote
3253 |       (block_quote_marker)
3254 |       (link_reference_definition
3255 |         (link_label)
3256 |         (link_destination)))))
3257 | 
3258 | ================================================================================
3259 | Example 188 - https://github.github.com/gfm/#example-188
3260 | ================================================================================
3261 | [foo]: /url
3262 | 
3263 | --------------------------------------------------------------------------------
3264 | 
3265 | (document
3266 |   (section
3267 |     (link_reference_definition
3268 |       (link_label)
3269 |       (link_destination))))
3270 | 
3271 | ================================================================================
3272 | Example 189 - https://github.github.com/gfm/#example-189
3273 | ================================================================================
3274 | aaa
3275 | 
3276 | bbb
3277 | 
3278 | --------------------------------------------------------------------------------
3279 | 
3280 | (document
3281 |   (section
3282 |     (paragraph
3283 |       (inline))
3284 |     (paragraph
3285 |       (inline))))
3286 | 
3287 | ================================================================================
3288 | Example 190 - https://github.github.com/gfm/#example-190
3289 | ================================================================================
3290 | aaa
3291 | bbb
3292 | 
3293 | ccc
3294 | ddd
3295 | 
3296 | --------------------------------------------------------------------------------
3297 | 
3298 | (document
3299 |   (section
3300 |     (paragraph
3301 |       (inline))
3302 |     (paragraph
3303 |       (inline))))
3304 | 
3305 | ================================================================================
3306 | Example 191 - https://github.github.com/gfm/#example-191
3307 | ================================================================================
3308 | aaa
3309 | 
3310 | 
3311 | bbb
3312 | 
3313 | --------------------------------------------------------------------------------
3314 | 
3315 | (document
3316 |   (section
3317 |     (paragraph
3318 |       (inline))
3319 |     (paragraph
3320 |       (inline))))
3321 | 
3322 | ================================================================================
3323 | Example 192 - https://github.github.com/gfm/#example-192
3324 | ================================================================================
3325 |   aaa
3326 |  bbb
3327 | 
3328 | --------------------------------------------------------------------------------
3329 | 
3330 | (document
3331 |   (section
3332 |     (paragraph
3333 |       (inline))))
3334 | 
3335 | ================================================================================
3336 | Example 193 - https://github.github.com/gfm/#example-193
3337 | ================================================================================
3338 | aaa
3339 |              bbb
3340 |                                        ccc
3341 | 
3342 | --------------------------------------------------------------------------------
3343 | 
3344 | (document
3345 |   (section
3346 |     (paragraph
3347 |       (inline))))
3348 | 
3349 | ================================================================================
3350 | Example 194 - https://github.github.com/gfm/#example-194
3351 | ================================================================================
3352 |    aaa
3353 | bbb
3354 | 
3355 | --------------------------------------------------------------------------------
3356 | 
3357 | (document
3358 |   (section
3359 |     (paragraph
3360 |       (inline))))
3361 | 
3362 | ================================================================================
3363 | Example 195 - https://github.github.com/gfm/#example-195
3364 | ================================================================================
3365 |     aaa
3366 | bbb
3367 | 
3368 | --------------------------------------------------------------------------------
3369 | 
3370 | (document
3371 |   (section
3372 |     (indented_code_block)
3373 |     (paragraph
3374 |       (inline))))
3375 | 
3376 | ================================================================================
3377 | Example 196 - https://github.github.com/gfm/#example-196
3378 | ================================================================================
3379 | aaa  
3380 | bbb
3381 | 
3382 | --------------------------------------------------------------------------------
3383 | 
3384 | (document
3385 |   (section
3386 |     (paragraph
3387 |       (inline))))
3388 | 
3389 | ================================================================================
3390 | Example 197 - https://github.github.com/gfm/#example-197
3391 | ================================================================================
3392 | 
3393 | 
3394 | aaa
3395 | 
3396 | 
3397 | # aaa
3398 | 
3399 | 
3400 | 
3401 | --------------------------------------------------------------------------------
3402 | 
3403 | (document
3404 |   (section
3405 |     (paragraph
3406 |       (inline)))
3407 |   (section
3408 |     (atx_heading
3409 |       (atx_h1_marker)
3410 |       (inline))))
3411 | 
3412 | ================================================================================
3413 | Example 206 - https://github.github.com/gfm/#example-206
3414 | ================================================================================
3415 | > # Foo
3416 | > bar
3417 | > baz
3418 | 
3419 | --------------------------------------------------------------------------------
3420 | 
3421 | (document
3422 |   (section
3423 |     (block_quote
3424 |       (block_quote_marker)
3425 |       (section
3426 |         (atx_heading
3427 |           (atx_h1_marker)
3428 |           (inline)
3429 |           (block_continuation))
3430 |         (paragraph
3431 |           (inline
3432 |             (block_continuation)))))))
3433 | 
3434 | ================================================================================
3435 | Example 207 - https://github.github.com/gfm/#example-207
3436 | ================================================================================
3437 | ># Foo
3438 | >bar
3439 | > baz
3440 | 
3441 | --------------------------------------------------------------------------------
3442 | 
3443 | (document
3444 |   (section
3445 |     (block_quote
3446 |       (block_quote_marker)
3447 |       (section
3448 |         (atx_heading
3449 |           (atx_h1_marker)
3450 |           (inline)
3451 |           (block_continuation))
3452 |         (paragraph
3453 |           (inline
3454 |             (block_continuation)))))))
3455 | 
3456 | ================================================================================
3457 | Example 208 - https://github.github.com/gfm/#example-208
3458 | ================================================================================
3459 |    > # Foo
3460 |    > bar
3461 |  > baz
3462 | 
3463 | --------------------------------------------------------------------------------
3464 | 
3465 | (document
3466 |   (section
3467 |     (block_quote
3468 |       (block_quote_marker)
3469 |       (section
3470 |         (atx_heading
3471 |           (atx_h1_marker)
3472 |           (inline)
3473 |           (block_continuation))
3474 |         (paragraph
3475 |           (inline
3476 |             (block_continuation)))))))
3477 | 
3478 | ================================================================================
3479 | Example 209 - https://github.github.com/gfm/#example-209
3480 | ================================================================================
3481 |     > # Foo
3482 |     > bar
3483 |     > baz
3484 | 
3485 | --------------------------------------------------------------------------------
3486 | 
3487 | (document
3488 |   (section
3489 |     (indented_code_block
3490 |       (block_continuation)
3491 |       (block_continuation))))
3492 | 
3493 | ================================================================================
3494 | Example 210 - https://github.github.com/gfm/#example-210
3495 | ================================================================================
3496 | > # Foo
3497 | > bar
3498 | baz
3499 | 
3500 | --------------------------------------------------------------------------------
3501 | 
3502 | (document
3503 |   (section
3504 |     (block_quote
3505 |       (block_quote_marker)
3506 |       (section
3507 |         (atx_heading
3508 |           (atx_h1_marker)
3509 |           (inline)
3510 |           (block_continuation))
3511 |         (paragraph
3512 |           (inline))))))
3513 | 
3514 | ================================================================================
3515 | Example 211 - https://github.github.com/gfm/#example-211
3516 | ================================================================================
3517 | > bar
3518 | baz
3519 | > foo
3520 | 
3521 | --------------------------------------------------------------------------------
3522 | 
3523 | (document
3524 |   (section
3525 |     (block_quote
3526 |       (block_quote_marker)
3527 |       (paragraph
3528 |         (inline
3529 |           (block_continuation))))))
3530 | 
3531 | ================================================================================
3532 | Example 212 - https://github.github.com/gfm/#example-212
3533 | ================================================================================
3534 | > foo
3535 | ---
3536 | 
3537 | --------------------------------------------------------------------------------
3538 | 
3539 | (document
3540 |   (section
3541 |     (block_quote
3542 |       (block_quote_marker)
3543 |       (paragraph
3544 |         (inline)))
3545 |     (thematic_break)))
3546 | 
3547 | ================================================================================
3548 | Example 213 - https://github.github.com/gfm/#example-213
3549 | ================================================================================
3550 | > - foo
3551 | - bar
3552 | 
3553 | --------------------------------------------------------------------------------
3554 | 
3555 | (document
3556 |   (section
3557 |     (block_quote
3558 |       (block_quote_marker)
3559 |       (list
3560 |         (list_item
3561 |           (list_marker_minus)
3562 |           (paragraph
3563 |             (inline)))))
3564 |     (list
3565 |       (list_item
3566 |         (list_marker_minus)
3567 |         (paragraph
3568 |           (inline))))))
3569 | 
3570 | ================================================================================
3571 | Example 214 - https://github.github.com/gfm/#example-214
3572 | ================================================================================
3573 | >     foo
3574 |     bar
3575 | 
3576 | --------------------------------------------------------------------------------
3577 | 
3578 | (document
3579 |   (section
3580 |     (block_quote
3581 |       (block_quote_marker)
3582 |       (indented_code_block))
3583 |     (indented_code_block)))
3584 | 
3585 | ================================================================================
3586 | Example 215 - https://github.github.com/gfm/#example-215
3587 | ================================================================================
3588 | > ```
3589 | foo
3590 | ```
3591 | 
3592 | --------------------------------------------------------------------------------
3593 | 
3594 | (document
3595 |   (section
3596 |     (block_quote
3597 |       (block_quote_marker)
3598 |       (fenced_code_block
3599 |         (fenced_code_block_delimiter)))
3600 |     (paragraph
3601 |       (inline))
3602 |     (fenced_code_block
3603 |       (fenced_code_block_delimiter))))
3604 | 
3605 | ================================================================================
3606 | Example 216 - https://github.github.com/gfm/#example-216
3607 | ================================================================================
3608 | > foo
3609 |     - bar
3610 | 
3611 | --------------------------------------------------------------------------------
3612 | 
3613 | (document
3614 |   (section
3615 |     (block_quote
3616 |       (block_quote_marker)
3617 |       (paragraph
3618 |         (inline)))))
3619 | 
3620 | ================================================================================
3621 | Example 217 - https://github.github.com/gfm/#example-217
3622 | ================================================================================
3623 | >
3624 | 
3625 | --------------------------------------------------------------------------------
3626 | 
3627 | (document
3628 |   (section
3629 |     (block_quote
3630 |       (block_quote_marker))))
3631 | 
3632 | ================================================================================
3633 | Example 218 - https://github.github.com/gfm/#example-218
3634 | ================================================================================
3635 | >
3636 | >
3637 | >
3638 | 
3639 | --------------------------------------------------------------------------------
3640 | 
3641 | (document
3642 |   (section
3643 |     (block_quote
3644 |       (block_quote_marker)
3645 |       (block_continuation)
3646 |       (block_continuation))))
3647 | 
3648 | ================================================================================
3649 | Example 219 - https://github.github.com/gfm/#example-219
3650 | ================================================================================
3651 | >
3652 | > foo
3653 | >
3654 | 
3655 | --------------------------------------------------------------------------------
3656 | 
3657 | (document
3658 |   (section
3659 |     (block_quote
3660 |       (block_quote_marker)
3661 |       (block_continuation)
3662 |       (paragraph
3663 |         (inline)
3664 |         (block_continuation)))))
3665 | 
3666 | ================================================================================
3667 | Example 220 - https://github.github.com/gfm/#example-220
3668 | ================================================================================
3669 | > foo
3670 | 
3671 | > bar
3672 | 
3673 | --------------------------------------------------------------------------------
3674 | 
3675 | (document
3676 |   (section
3677 |     (block_quote
3678 |       (block_quote_marker)
3679 |       (paragraph
3680 |         (inline)))
3681 |     (block_quote
3682 |       (block_quote_marker)
3683 |       (paragraph
3684 |         (inline)))))
3685 | 
3686 | ================================================================================
3687 | Example 221 - https://github.github.com/gfm/#example-221
3688 | ================================================================================
3689 | > foo
3690 | > bar
3691 | 
3692 | --------------------------------------------------------------------------------
3693 | 
3694 | (document
3695 |   (section
3696 |     (block_quote
3697 |       (block_quote_marker)
3698 |       (paragraph
3699 |         (inline
3700 |           (block_continuation))))))
3701 | 
3702 | ================================================================================
3703 | Example 222 - https://github.github.com/gfm/#example-222
3704 | ================================================================================
3705 | > foo
3706 | >
3707 | > bar
3708 | 
3709 | --------------------------------------------------------------------------------
3710 | 
3711 | (document
3712 |   (section
3713 |     (block_quote
3714 |       (block_quote_marker)
3715 |       (paragraph
3716 |         (inline)
3717 |         (block_continuation))
3718 |       (block_continuation)
3719 |       (paragraph
3720 |         (inline)))))
3721 | 
3722 | ================================================================================
3723 | Example 223 - https://github.github.com/gfm/#example-223
3724 | ================================================================================
3725 | foo
3726 | > bar
3727 | 
3728 | --------------------------------------------------------------------------------
3729 | 
3730 | (document
3731 |   (section
3732 |     (paragraph
3733 |       (inline))
3734 |     (block_quote
3735 |       (block_quote_marker)
3736 |       (paragraph
3737 |         (inline)))))
3738 | 
3739 | ================================================================================
3740 | Example 224 - https://github.github.com/gfm/#example-224
3741 | ================================================================================
3742 | > aaa
3743 | ***
3744 | > bbb
3745 | 
3746 | --------------------------------------------------------------------------------
3747 | 
3748 | (document
3749 |   (section
3750 |     (block_quote
3751 |       (block_quote_marker)
3752 |       (paragraph
3753 |         (inline)))
3754 |     (thematic_break)
3755 |     (block_quote
3756 |       (block_quote_marker)
3757 |       (paragraph
3758 |         (inline)))))
3759 | 
3760 | ================================================================================
3761 | Example 225 - https://github.github.com/gfm/#example-225
3762 | ================================================================================
3763 | > bar
3764 | baz
3765 | 
3766 | --------------------------------------------------------------------------------
3767 | 
3768 | (document
3769 |   (section
3770 |     (block_quote
3771 |       (block_quote_marker)
3772 |       (paragraph
3773 |         (inline)))))
3774 | 
3775 | ================================================================================
3776 | Example 226 - https://github.github.com/gfm/#example-226
3777 | ================================================================================
3778 | > bar
3779 | 
3780 | baz
3781 | 
3782 | --------------------------------------------------------------------------------
3783 | 
3784 | (document
3785 |   (section
3786 |     (block_quote
3787 |       (block_quote_marker)
3788 |       (paragraph
3789 |         (inline)))
3790 |     (paragraph
3791 |       (inline))))
3792 | 
3793 | ================================================================================
3794 | Example 227 - https://github.github.com/gfm/#example-227
3795 | ================================================================================
3796 | > bar
3797 | >
3798 | baz
3799 | 
3800 | --------------------------------------------------------------------------------
3801 | 
3802 | (document
3803 |   (section
3804 |     (block_quote
3805 |       (block_quote_marker)
3806 |       (paragraph
3807 |         (inline)
3808 |         (block_continuation)))
3809 |     (paragraph
3810 |       (inline))))
3811 | 
3812 | ================================================================================
3813 | Example 228 - https://github.github.com/gfm/#example-228
3814 | ================================================================================
3815 | > > > foo
3816 | bar
3817 | 
3818 | --------------------------------------------------------------------------------
3819 | 
3820 | (document
3821 |   (section
3822 |     (block_quote
3823 |       (block_quote_marker)
3824 |       (block_quote
3825 |         (block_quote_marker)
3826 |         (block_quote
3827 |           (block_quote_marker)
3828 |           (paragraph
3829 |             (inline)))))))
3830 | 
3831 | ================================================================================
3832 | Example 229 - https://github.github.com/gfm/#example-229
3833 | ================================================================================
3834 | >>> foo
3835 | > bar
3836 | >>baz
3837 | 
3838 | --------------------------------------------------------------------------------
3839 | 
3840 | (document
3841 |   (section
3842 |     (block_quote
3843 |       (block_quote_marker)
3844 |       (block_quote
3845 |         (block_quote_marker)
3846 |         (block_quote
3847 |           (block_quote_marker)
3848 |           (paragraph
3849 |             (inline
3850 |               (block_continuation)
3851 |               (block_continuation))))))))
3852 | 
3853 | ================================================================================
3854 | Example 230 - https://github.github.com/gfm/#example-230
3855 | ================================================================================
3856 | >     code
3857 | 
3858 | >    not code
3859 | 
3860 | --------------------------------------------------------------------------------
3861 | 
3862 | (document
3863 |   (section
3864 |     (block_quote
3865 |       (block_quote_marker)
3866 |       (indented_code_block))
3867 |     (block_quote
3868 |       (block_quote_marker)
3869 |       (paragraph
3870 |         (inline)))))
3871 | 
3872 | ================================================================================
3873 | Example 231 - https://github.github.com/gfm/#example-231
3874 | ================================================================================
3875 | A paragraph
3876 | with two lines.
3877 | 
3878 |     indented code
3879 | 
3880 | > A block quote.
3881 | 
3882 | --------------------------------------------------------------------------------
3883 | 
3884 | (document
3885 |   (section
3886 |     (paragraph
3887 |       (inline))
3888 |     (indented_code_block)
3889 |     (block_quote
3890 |       (block_quote_marker)
3891 |       (paragraph
3892 |         (inline)))))
3893 | 
3894 | ================================================================================
3895 | Example 232 - https://github.github.com/gfm/#example-232
3896 | ================================================================================
3897 | 1.  A paragraph
3898 |     with two lines.
3899 | 
3900 |         indented code
3901 | 
3902 |     > A block quote.
3903 | 
3904 | --------------------------------------------------------------------------------
3905 | 
3906 | (document
3907 |   (section
3908 |     (list
3909 |       (list_item
3910 |         (list_marker_dot)
3911 |         (paragraph
3912 |           (inline
3913 |             (block_continuation))
3914 |           (block_continuation))
3915 |         (block_continuation)
3916 |         (indented_code_block
3917 |           (block_continuation)
3918 |           (block_continuation))
3919 |         (block_quote
3920 |           (block_quote_marker)
3921 |           (paragraph
3922 |             (inline)))))))
3923 | 
3924 | ================================================================================
3925 | Example 233 - https://github.github.com/gfm/#example-233
3926 | ================================================================================
3927 | - one
3928 | 
3929 |  two
3930 | 
3931 | --------------------------------------------------------------------------------
3932 | 
3933 | (document
3934 |   (section
3935 |     (list
3936 |       (list_item
3937 |         (list_marker_minus)
3938 |         (paragraph
3939 |           (inline)
3940 |           (block_continuation))))
3941 |     (paragraph
3942 |       (inline))))
3943 | 
3944 | ================================================================================
3945 | Example 234 - https://github.github.com/gfm/#example-234
3946 | ================================================================================
3947 | - one
3948 | 
3949 |   two
3950 | 
3951 | --------------------------------------------------------------------------------
3952 | 
3953 | (document
3954 |   (section
3955 |     (list
3956 |       (list_item
3957 |         (list_marker_minus)
3958 |         (paragraph
3959 |           (inline)
3960 |           (block_continuation))
3961 |         (block_continuation)
3962 |         (paragraph
3963 |           (inline))))))
3964 | 
3965 | ================================================================================
3966 | Example 235 - https://github.github.com/gfm/#example-235
3967 | ================================================================================
3968 |  -    one
3969 | 
3970 |      two
3971 | 
3972 | --------------------------------------------------------------------------------
3973 | 
3974 | (document
3975 |   (section
3976 |     (list
3977 |       (list_item
3978 |         (list_marker_minus)
3979 |         (paragraph
3980 |           (inline)
3981 |           (block_continuation))))
3982 |     (indented_code_block)))
3983 | 
3984 | ================================================================================
3985 | Example 236 - https://github.github.com/gfm/#example-236
3986 | ================================================================================
3987 |  -    one
3988 | 
3989 |       two
3990 | 
3991 | --------------------------------------------------------------------------------
3992 | 
3993 | (document
3994 |   (section
3995 |     (list
3996 |       (list_item
3997 |         (list_marker_minus)
3998 |         (paragraph
3999 |           (inline)
4000 |           (block_continuation))
4001 |         (block_continuation)
4002 |         (paragraph
4003 |           (inline))))))
4004 | 
4005 | ================================================================================
4006 | Example 237 - https://github.github.com/gfm/#example-237
4007 | ================================================================================
4008 |    > > 1.  one
4009 | >>
4010 | >>     two
4011 | 
4012 | --------------------------------------------------------------------------------
4013 | 
4014 | (document
4015 |   (section
4016 |     (block_quote
4017 |       (block_quote_marker)
4018 |       (block_quote
4019 |         (block_quote_marker)
4020 |         (list
4021 |           (list_item
4022 |             (list_marker_dot)
4023 |             (paragraph
4024 |               (inline)
4025 |               (block_continuation))
4026 |             (block_continuation)
4027 |             (paragraph
4028 |               (inline))))))))
4029 | 
4030 | ================================================================================
4031 | Example 238 - https://github.github.com/gfm/#example-238
4032 | ================================================================================
4033 | >>- one
4034 | >>
4035 |   >  > two
4036 | 
4037 | --------------------------------------------------------------------------------
4038 | 
4039 | (document
4040 |   (section
4041 |     (block_quote
4042 |       (block_quote_marker)
4043 |       (block_quote
4044 |         (block_quote_marker)
4045 |         (list
4046 |           (list_item
4047 |             (list_marker_minus)
4048 |             (paragraph
4049 |               (inline)
4050 |               (block_continuation))
4051 |             (block_continuation)))
4052 |         (paragraph
4053 |           (inline))))))
4054 | 
4055 | ================================================================================
4056 | Example 239 - https://github.github.com/gfm/#example-239
4057 | ================================================================================
4058 | -one
4059 | 
4060 | 2.two
4061 | 
4062 | --------------------------------------------------------------------------------
4063 | 
4064 | (document
4065 |   (section
4066 |     (paragraph
4067 |       (inline))
4068 |     (paragraph
4069 |       (inline))))
4070 | 
4071 | ================================================================================
4072 | Example 240 - https://github.github.com/gfm/#example-240
4073 | ================================================================================
4074 | - foo
4075 | 
4076 | 
4077 |   bar
4078 | 
4079 | --------------------------------------------------------------------------------
4080 | 
4081 | (document
4082 |   (section
4083 |     (list
4084 |       (list_item
4085 |         (list_marker_minus)
4086 |         (paragraph
4087 |           (inline)
4088 |           (block_continuation))
4089 |         (block_continuation)
4090 |         (block_continuation)
4091 |         (paragraph
4092 |           (inline))))))
4093 | 
4094 | ================================================================================
4095 | Example 241 - https://github.github.com/gfm/#example-241
4096 | ================================================================================
4097 | 1.  foo
4098 | 
4099 |     ```
4100 |     bar
4101 |     ```
4102 | 
4103 |     baz
4104 | 
4105 |     > bam
4106 | 
4107 | --------------------------------------------------------------------------------
4108 | 
4109 | (document
4110 |   (section
4111 |     (list
4112 |       (list_item
4113 |         (list_marker_dot)
4114 |         (paragraph
4115 |           (inline)
4116 |           (block_continuation))
4117 |         (block_continuation)
4118 |         (fenced_code_block
4119 |           (fenced_code_block_delimiter)
4120 |           (block_continuation)
4121 |           (code_fence_content
4122 |             (block_continuation))
4123 |           (fenced_code_block_delimiter)
4124 |           (block_continuation))
4125 |         (block_continuation)
4126 |         (paragraph
4127 |           (inline)
4128 |           (block_continuation))
4129 |         (block_continuation)
4130 |         (block_quote
4131 |           (block_quote_marker)
4132 |           (paragraph
4133 |             (inline)))))))
4134 | 
4135 | ================================================================================
4136 | Example 242 - https://github.github.com/gfm/#example-242
4137 | ================================================================================
4138 | - Foo
4139 | 
4140 |       bar
4141 | 
4142 | 
4143 |       baz
4144 | 
4145 | --------------------------------------------------------------------------------
4146 | 
4147 | (document
4148 |   (section
4149 |     (list
4150 |       (list_item
4151 |         (list_marker_minus)
4152 |         (paragraph
4153 |           (inline)
4154 |           (block_continuation))
4155 |         (block_continuation)
4156 |         (indented_code_block
4157 |           (block_continuation)
4158 |           (block_continuation)
4159 |           (block_continuation))))))
4160 | 
4161 | ================================================================================
4162 | Example 243 - https://github.github.com/gfm/#example-243
4163 | ================================================================================
4164 | 123456789. ok
4165 | 
4166 | --------------------------------------------------------------------------------
4167 | 
4168 | (document
4169 |   (section
4170 |     (list
4171 |       (list_item
4172 |         (list_marker_dot)
4173 |         (paragraph
4174 |           (inline))))))
4175 | 
4176 | ================================================================================
4177 | Example 244 - https://github.github.com/gfm/#example-244
4178 | ================================================================================
4179 | 1234567890. not ok
4180 | 
4181 | --------------------------------------------------------------------------------
4182 | 
4183 | (document
4184 |   (section
4185 |     (paragraph
4186 |       (inline))))
4187 | 
4188 | ================================================================================
4189 | Example 245 - https://github.github.com/gfm/#example-245
4190 | ================================================================================
4191 | 0. ok
4192 | 
4193 | --------------------------------------------------------------------------------
4194 | 
4195 | (document
4196 |   (section
4197 |     (list
4198 |       (list_item
4199 |         (list_marker_dot)
4200 |         (paragraph
4201 |           (inline))))))
4202 | 
4203 | ================================================================================
4204 | Example 246 - https://github.github.com/gfm/#example-246
4205 | ================================================================================
4206 | 003. ok
4207 | 
4208 | --------------------------------------------------------------------------------
4209 | 
4210 | (document
4211 |   (section
4212 |     (list
4213 |       (list_item
4214 |         (list_marker_dot)
4215 |         (paragraph
4216 |           (inline))))))
4217 | 
4218 | ================================================================================
4219 | Example 247 - https://github.github.com/gfm/#example-247
4220 | ================================================================================
4221 | -1. not ok
4222 | 
4223 | --------------------------------------------------------------------------------
4224 | 
4225 | (document
4226 |   (section
4227 |     (paragraph
4228 |       (inline))))
4229 | 
4230 | ================================================================================
4231 | Example 248 - https://github.github.com/gfm/#example-248
4232 | ================================================================================
4233 | - foo
4234 | 
4235 |       bar
4236 | 
4237 | --------------------------------------------------------------------------------
4238 | 
4239 | (document
4240 |   (section
4241 |     (list
4242 |       (list_item
4243 |         (list_marker_minus)
4244 |         (paragraph
4245 |           (inline)
4246 |           (block_continuation))
4247 |         (block_continuation)
4248 |         (indented_code_block)))))
4249 | 
4250 | ================================================================================
4251 | Example 249 - https://github.github.com/gfm/#example-249
4252 | ================================================================================
4253 |   10.  foo
4254 | 
4255 |            bar
4256 | 
4257 | --------------------------------------------------------------------------------
4258 | 
4259 | (document
4260 |   (section
4261 |     (list
4262 |       (list_item
4263 |         (list_marker_dot)
4264 |         (paragraph
4265 |           (inline)
4266 |           (block_continuation))
4267 |         (block_continuation)
4268 |         (indented_code_block)))))
4269 | 
4270 | ================================================================================
4271 | Example 250 - https://github.github.com/gfm/#example-250
4272 | ================================================================================
4273 |     indented code
4274 | 
4275 | paragraph
4276 | 
4277 |     more code
4278 | 
4279 | --------------------------------------------------------------------------------
4280 | 
4281 | (document
4282 |   (section
4283 |     (indented_code_block)
4284 |     (paragraph
4285 |       (inline))
4286 |     (indented_code_block)))
4287 | 
4288 | ================================================================================
4289 | Example 251 - https://github.github.com/gfm/#example-251
4290 | ================================================================================
4291 | 1.     indented code
4292 | 
4293 |    paragraph
4294 | 
4295 |        more code
4296 | 
4297 | --------------------------------------------------------------------------------
4298 | 
4299 | (document
4300 |   (section
4301 |     (list
4302 |       (list_item
4303 |         (list_marker_dot)
4304 |         (indented_code_block
4305 |           (block_continuation)
4306 |           (block_continuation))
4307 |         (paragraph
4308 |           (inline)
4309 |           (block_continuation))
4310 |         (block_continuation)
4311 |         (indented_code_block)))))
4312 | 
4313 | ================================================================================
4314 | Example 252 - https://github.github.com/gfm/#example-252
4315 | ================================================================================
4316 | 1.      indented code
4317 | 
4318 |    paragraph
4319 | 
4320 |        more code
4321 | 
4322 | --------------------------------------------------------------------------------
4323 | 
4324 | (document
4325 |   (section
4326 |     (list
4327 |       (list_item
4328 |         (list_marker_dot)
4329 |         (indented_code_block
4330 |           (block_continuation)
4331 |           (block_continuation))
4332 |         (paragraph
4333 |           (inline)
4334 |           (block_continuation))
4335 |         (block_continuation)
4336 |         (indented_code_block)))))
4337 | 
4338 | ================================================================================
4339 | Example 253 - https://github.github.com/gfm/#example-253
4340 | ================================================================================
4341 |    foo
4342 | 
4343 | bar
4344 | 
4345 | --------------------------------------------------------------------------------
4346 | 
4347 | (document
4348 |   (section
4349 |     (paragraph
4350 |       (inline))
4351 |     (paragraph
4352 |       (inline))))
4353 | 
4354 | ================================================================================
4355 | Example 254 - https://github.github.com/gfm/#example-254
4356 | ================================================================================
4357 | -    foo
4358 | 
4359 |   bar
4360 | 
4361 | --------------------------------------------------------------------------------
4362 | 
4363 | (document
4364 |   (section
4365 |     (list
4366 |       (list_item
4367 |         (list_marker_minus)
4368 |         (paragraph
4369 |           (inline)
4370 |           (block_continuation))))
4371 |     (paragraph
4372 |       (inline))))
4373 | 
4374 | ================================================================================
4375 | Example 255 - https://github.github.com/gfm/#example-255
4376 | ================================================================================
4377 | -  foo
4378 | 
4379 |    bar
4380 | 
4381 | --------------------------------------------------------------------------------
4382 | 
4383 | (document
4384 |   (section
4385 |     (list
4386 |       (list_item
4387 |         (list_marker_minus)
4388 |         (paragraph
4389 |           (inline)
4390 |           (block_continuation))
4391 |         (block_continuation)
4392 |         (paragraph
4393 |           (inline))))))
4394 | 
4395 | ================================================================================
4396 | Example 256 - https://github.github.com/gfm/#example-256
4397 | ================================================================================
4398 | -
4399 |   foo
4400 | -
4401 |   ```
4402 |   bar
4403 |   ```
4404 | -
4405 |       baz
4406 | 
4407 | --------------------------------------------------------------------------------
4408 | 
4409 | (document
4410 |   (section
4411 |     (list
4412 |       (list_item
4413 |         (list_marker_minus)
4414 |         (block_continuation)
4415 |         (paragraph
4416 |           (inline)))
4417 |       (list_item
4418 |         (list_marker_minus)
4419 |         (block_continuation)
4420 |         (fenced_code_block
4421 |           (fenced_code_block_delimiter)
4422 |           (block_continuation)
4423 |           (code_fence_content
4424 |             (block_continuation))
4425 |           (fenced_code_block_delimiter)))
4426 |       (list_item
4427 |         (list_marker_minus)
4428 |         (block_continuation)
4429 |         (indented_code_block)))))
4430 | 
4431 | ================================================================================
4432 | Example 257 - https://github.github.com/gfm/#example-257
4433 | ================================================================================
4434 | -
4435 |   foo
4436 | 
4437 | --------------------------------------------------------------------------------
4438 | 
4439 | (document
4440 |   (section
4441 |     (list
4442 |       (list_item
4443 |         (list_marker_minus)
4444 |         (block_continuation)
4445 |         (paragraph
4446 |           (inline))))))
4447 | 
4448 | ================================================================================
4449 | Example 258 - https://github.github.com/gfm/#example-258
4450 | ================================================================================
4451 | -
4452 | 
4453 |   foo
4454 | 
4455 | --------------------------------------------------------------------------------
4456 | 
4457 | (document
4458 |   (section
4459 |     (list
4460 |       (list_item
4461 |         (list_marker_minus)
4462 |         (block_continuation)))
4463 |     (paragraph
4464 |       (inline))))
4465 | 
4466 | ================================================================================
4467 | Example 259 - https://github.github.com/gfm/#example-259
4468 | ================================================================================
4469 | - foo
4470 | -
4471 | - bar
4472 | 
4473 | --------------------------------------------------------------------------------
4474 | 
4475 | (document
4476 |   (section
4477 |     (list
4478 |       (list_item
4479 |         (list_marker_minus)
4480 |         (paragraph
4481 |           (inline)))
4482 |       (list_item
4483 |         (list_marker_minus))
4484 |       (list_item
4485 |         (list_marker_minus)
4486 |         (paragraph
4487 |           (inline))))))
4488 | 
4489 | ================================================================================
4490 | Example 260 - https://github.github.com/gfm/#example-260
4491 | ================================================================================
4492 | - foo
4493 | -
4494 | - bar
4495 | 
4496 | --------------------------------------------------------------------------------
4497 | 
4498 | (document
4499 |   (section
4500 |     (list
4501 |       (list_item
4502 |         (list_marker_minus)
4503 |         (paragraph
4504 |           (inline)))
4505 |       (list_item
4506 |         (list_marker_minus))
4507 |       (list_item
4508 |         (list_marker_minus)
4509 |         (paragraph
4510 |           (inline))))))
4511 | 
4512 | ================================================================================
4513 | Example 261 - https://github.github.com/gfm/#example-261
4514 | ================================================================================
4515 | 1. foo
4516 | 2.
4517 | 3. bar
4518 | 
4519 | --------------------------------------------------------------------------------
4520 | 
4521 | (document
4522 |   (section
4523 |     (list
4524 |       (list_item
4525 |         (list_marker_dot)
4526 |         (paragraph
4527 |           (inline)))
4528 |       (list_item
4529 |         (list_marker_dot))
4530 |       (list_item
4531 |         (list_marker_dot)
4532 |         (paragraph
4533 |           (inline))))))
4534 | 
4535 | ================================================================================
4536 | Example 262 - https://github.github.com/gfm/#example-262
4537 | ================================================================================
4538 | *
4539 | 
4540 | --------------------------------------------------------------------------------
4541 | 
4542 | (document
4543 |   (section
4544 |     (list
4545 |       (list_item
4546 |         (list_marker_star)))))
4547 | 
4548 | ================================================================================
4549 | Example 263 - https://github.github.com/gfm/#example-263
4550 | ================================================================================
4551 | foo
4552 | *
4553 | 
4554 | foo
4555 | 1.
4556 | 
4557 | --------------------------------------------------------------------------------
4558 | 
4559 | (document
4560 |   (section
4561 |     (paragraph
4562 |       (inline))
4563 |     (paragraph
4564 |       (inline))))
4565 | 
4566 | ================================================================================
4567 | Example 264 - https://github.github.com/gfm/#example-264
4568 | ================================================================================
4569 |  1.  A paragraph
4570 |      with two lines.
4571 | 
4572 |          indented code
4573 | 
4574 |      > A block quote.
4575 | 
4576 | --------------------------------------------------------------------------------
4577 | 
4578 | (document
4579 |   (section
4580 |     (list
4581 |       (list_item
4582 |         (list_marker_dot)
4583 |         (paragraph
4584 |           (inline
4585 |             (block_continuation))
4586 |           (block_continuation))
4587 |         (block_continuation)
4588 |         (indented_code_block
4589 |           (block_continuation)
4590 |           (block_continuation))
4591 |         (block_quote
4592 |           (block_quote_marker)
4593 |           (paragraph
4594 |             (inline)))))))
4595 | 
4596 | ================================================================================
4597 | Example 265 - https://github.github.com/gfm/#example-265
4598 | ================================================================================
4599 |   1.  A paragraph
4600 |       with two lines.
4601 | 
4602 |           indented code
4603 | 
4604 |       > A block quote.
4605 | 
4606 | --------------------------------------------------------------------------------
4607 | 
4608 | (document
4609 |   (section
4610 |     (list
4611 |       (list_item
4612 |         (list_marker_dot)
4613 |         (paragraph
4614 |           (inline
4615 |             (block_continuation))
4616 |           (block_continuation))
4617 |         (block_continuation)
4618 |         (indented_code_block
4619 |           (block_continuation)
4620 |           (block_continuation))
4621 |         (block_quote
4622 |           (block_quote_marker)
4623 |           (paragraph
4624 |             (inline)))))))
4625 | 
4626 | ================================================================================
4627 | Example 266 - https://github.github.com/gfm/#example-266
4628 | ================================================================================
4629 |    1.  A paragraph
4630 |        with two lines.
4631 | 
4632 |            indented code
4633 | 
4634 |        > A block quote.
4635 | 
4636 | --------------------------------------------------------------------------------
4637 | 
4638 | (document
4639 |   (section
4640 |     (list
4641 |       (list_item
4642 |         (list_marker_dot)
4643 |         (paragraph
4644 |           (inline
4645 |             (block_continuation))
4646 |           (block_continuation))
4647 |         (block_continuation)
4648 |         (indented_code_block
4649 |           (block_continuation)
4650 |           (block_continuation))
4651 |         (block_quote
4652 |           (block_quote_marker)
4653 |           (paragraph
4654 |             (inline)))))))
4655 | 
4656 | ================================================================================
4657 | Example 267 - https://github.github.com/gfm/#example-267
4658 | ================================================================================
4659 |     1.  A paragraph
4660 |         with two lines.
4661 | 
4662 |             indented code
4663 | 
4664 |         > A block quote.
4665 | 
4666 | --------------------------------------------------------------------------------
4667 | 
4668 | (document
4669 |   (section
4670 |     (indented_code_block
4671 |       (block_continuation))))
4672 | 
4673 | ================================================================================
4674 | Example 268 - https://github.github.com/gfm/#example-268
4675 | ================================================================================
4676 |   1.  A paragraph
4677 | with two lines.
4678 | 
4679 |           indented code
4680 | 
4681 |       > A block quote.
4682 | 
4683 | --------------------------------------------------------------------------------
4684 | 
4685 | (document
4686 |   (section
4687 |     (list
4688 |       (list_item
4689 |         (list_marker_dot)
4690 |         (paragraph
4691 |           (inline)
4692 |           (block_continuation))
4693 |         (block_continuation)
4694 |         (indented_code_block
4695 |           (block_continuation)
4696 |           (block_continuation))
4697 |         (block_quote
4698 |           (block_quote_marker)
4699 |           (paragraph
4700 |             (inline)))))))
4701 | 
4702 | ================================================================================
4703 | Example 269 - https://github.github.com/gfm/#example-269
4704 | ================================================================================
4705 |   1.  A paragraph
4706 |     with two lines.
4707 | 
4708 | --------------------------------------------------------------------------------
4709 | 
4710 | (document
4711 |   (section
4712 |     (list
4713 |       (list_item
4714 |         (list_marker_dot)
4715 |         (paragraph
4716 |           (inline))))))
4717 | 
4718 | ================================================================================
4719 | Example 270 - https://github.github.com/gfm/#example-270
4720 | ================================================================================
4721 | > 1. > Blockquote
4722 | continued here.
4723 | 
4724 | --------------------------------------------------------------------------------
4725 | 
4726 | (document
4727 |   (section
4728 |     (block_quote
4729 |       (block_quote_marker)
4730 |       (list
4731 |         (list_item
4732 |           (list_marker_dot)
4733 |           (block_quote
4734 |             (block_quote_marker)
4735 |             (paragraph
4736 |               (inline))))))))
4737 | 
4738 | ================================================================================
4739 | Example 271 - https://github.github.com/gfm/#example-271
4740 | ================================================================================
4741 | > 1. > Blockquote
4742 | > continued here.
4743 | 
4744 | --------------------------------------------------------------------------------
4745 | 
4746 | (document
4747 |   (section
4748 |     (block_quote
4749 |       (block_quote_marker)
4750 |       (list
4751 |         (list_item
4752 |           (list_marker_dot)
4753 |           (block_quote
4754 |             (block_quote_marker)
4755 |             (paragraph
4756 |               (inline
4757 |                 (block_continuation)))))))))
4758 | 
4759 | ================================================================================
4760 | Example 272 - https://github.github.com/gfm/#example-272
4761 | ================================================================================
4762 | - foo
4763 |   - bar
4764 |     - baz
4765 |       - boo
4766 | 
4767 | --------------------------------------------------------------------------------
4768 | 
4769 | (document
4770 |   (section
4771 |     (list
4772 |       (list_item
4773 |         (list_marker_minus)
4774 |         (paragraph
4775 |           (inline)
4776 |           (block_continuation))
4777 |         (list
4778 |           (list_item
4779 |             (list_marker_minus)
4780 |             (paragraph
4781 |               (inline)
4782 |               (block_continuation))
4783 |             (list
4784 |               (list_item
4785 |                 (list_marker_minus)
4786 |                 (paragraph
4787 |                   (inline)
4788 |                   (block_continuation))
4789 |                 (list
4790 |                   (list_item
4791 |                     (list_marker_minus)
4792 |                     (paragraph
4793 |                       (inline))))))))))))
4794 | 
4795 | ================================================================================
4796 | Example 273 - https://github.github.com/gfm/#example-273
4797 | ================================================================================
4798 | - foo
4799 |  - bar
4800 |   - baz
4801 |    - boo
4802 | 
4803 | --------------------------------------------------------------------------------
4804 | 
4805 | (document
4806 |   (section
4807 |     (list
4808 |       (list_item
4809 |         (list_marker_minus)
4810 |         (paragraph
4811 |           (inline)))
4812 |       (list_item
4813 |         (list_marker_minus)
4814 |         (paragraph
4815 |           (inline)))
4816 |       (list_item
4817 |         (list_marker_minus)
4818 |         (paragraph
4819 |           (inline)))
4820 |       (list_item
4821 |         (list_marker_minus)
4822 |         (paragraph
4823 |           (inline))))))
4824 | 
4825 | ================================================================================
4826 | Example 274 - https://github.github.com/gfm/#example-274
4827 | ================================================================================
4828 | 10) foo
4829 |     - bar
4830 | 
4831 | --------------------------------------------------------------------------------
4832 | 
4833 | (document
4834 |   (section
4835 |     (list
4836 |       (list_item
4837 |         (list_marker_parenthesis)
4838 |         (paragraph
4839 |           (inline)
4840 |           (block_continuation))
4841 |         (list
4842 |           (list_item
4843 |             (list_marker_minus)
4844 |             (paragraph
4845 |               (inline))))))))
4846 | 
4847 | ================================================================================
4848 | Example 275 - https://github.github.com/gfm/#example-275
4849 | ================================================================================
4850 | 10) foo
4851 |    - bar
4852 | 
4853 | --------------------------------------------------------------------------------
4854 | 
4855 | (document
4856 |   (section
4857 |     (list
4858 |       (list_item
4859 |         (list_marker_parenthesis)
4860 |         (paragraph
4861 |           (inline))))
4862 |     (list
4863 |       (list_item
4864 |         (list_marker_minus)
4865 |         (paragraph
4866 |           (inline))))))
4867 | 
4868 | ================================================================================
4869 | Example 276 - https://github.github.com/gfm/#example-276
4870 | ================================================================================
4871 | - - foo
4872 | 
4873 | --------------------------------------------------------------------------------
4874 | 
4875 | (document
4876 |   (section
4877 |     (list
4878 |       (list_item
4879 |         (list_marker_minus)
4880 |         (list
4881 |           (list_item
4882 |             (list_marker_minus)
4883 |             (paragraph
4884 |               (inline))))))))
4885 | 
4886 | ================================================================================
4887 | Example 277 - https://github.github.com/gfm/#example-277
4888 | ================================================================================
4889 | 1. - 2. foo
4890 | 
4891 | --------------------------------------------------------------------------------
4892 | 
4893 | (document
4894 |   (section
4895 |     (list
4896 |       (list_item
4897 |         (list_marker_dot)
4898 |         (list
4899 |           (list_item
4900 |             (list_marker_minus)
4901 |             (list
4902 |               (list_item
4903 |                 (list_marker_dot)
4904 |                 (paragraph
4905 |                   (inline))))))))))
4906 | 
4907 | ================================================================================
4908 | Example 278 - https://github.github.com/gfm/#example-278
4909 | ================================================================================
4910 | - # Foo
4911 | - Bar
4912 |   ---
4913 |   baz
4914 | 
4915 | --------------------------------------------------------------------------------
4916 | 
4917 | (document
4918 |   (section
4919 |     (list
4920 |       (list_item
4921 |         (list_marker_minus)
4922 |         (section
4923 |           (atx_heading
4924 |             (atx_h1_marker)
4925 |             (inline))))
4926 |       (list_item
4927 |         (list_marker_minus)
4928 |         (setext_heading
4929 |           (paragraph
4930 |             (inline)
4931 |             (block_continuation))
4932 |           (setext_h2_underline)
4933 |           (block_continuation))
4934 |         (paragraph
4935 |           (inline))))))
4936 | 
4937 | ================================================================================
4938 | Example 281 - https://github.github.com/gfm/#example-281
4939 | ================================================================================
4940 | - foo
4941 | - bar
4942 | + baz
4943 | 
4944 | --------------------------------------------------------------------------------
4945 | 
4946 | (document
4947 |   (section
4948 |     (list
4949 |       (list_item
4950 |         (list_marker_minus)
4951 |         (paragraph
4952 |           (inline)))
4953 |       (list_item
4954 |         (list_marker_minus)
4955 |         (paragraph
4956 |           (inline))))
4957 |     (list
4958 |       (list_item
4959 |         (list_marker_plus)
4960 |         (paragraph
4961 |           (inline))))))
4962 | 
4963 | ================================================================================
4964 | Example 282 - https://github.github.com/gfm/#example-282
4965 | ================================================================================
4966 | 1. foo
4967 | 2. bar
4968 | 3) baz
4969 | 
4970 | --------------------------------------------------------------------------------
4971 | 
4972 | (document
4973 |   (section
4974 |     (list
4975 |       (list_item
4976 |         (list_marker_dot)
4977 |         (paragraph
4978 |           (inline)))
4979 |       (list_item
4980 |         (list_marker_dot)
4981 |         (paragraph
4982 |           (inline))))
4983 |     (list
4984 |       (list_item
4985 |         (list_marker_parenthesis)
4986 |         (paragraph
4987 |           (inline))))))
4988 | 
4989 | ================================================================================
4990 | Example 283 - https://github.github.com/gfm/#example-283
4991 | ================================================================================
4992 | Foo
4993 | - bar
4994 | - baz
4995 | 
4996 | --------------------------------------------------------------------------------
4997 | 
4998 | (document
4999 |   (section
5000 |     (paragraph
5001 |       (inline))
5002 |     (list
5003 |       (list_item
5004 |         (list_marker_minus)
5005 |         (paragraph
5006 |           (inline)))
5007 |       (list_item
5008 |         (list_marker_minus)
5009 |         (paragraph
5010 |           (inline))))))
5011 | 
5012 | ================================================================================
5013 | Example 284 - https://github.github.com/gfm/#example-284
5014 | ================================================================================
5015 | The number of windows in my house is
5016 | 14.  The number of doors is 6.
5017 | 
5018 | --------------------------------------------------------------------------------
5019 | 
5020 | (document
5021 |   (section
5022 |     (paragraph
5023 |       (inline))))
5024 | 
5025 | ================================================================================
5026 | Example 285 - https://github.github.com/gfm/#example-285
5027 | ================================================================================
5028 | The number of windows in my house is
5029 | 1.  The number of doors is 6.
5030 | 
5031 | --------------------------------------------------------------------------------
5032 | 
5033 | (document
5034 |   (section
5035 |     (paragraph
5036 |       (inline))
5037 |     (list
5038 |       (list_item
5039 |         (list_marker_dot)
5040 |         (paragraph
5041 |           (inline))))))
5042 | 
5043 | ================================================================================
5044 | Example 286 - https://github.github.com/gfm/#example-286
5045 | ================================================================================
5046 | - foo
5047 | 
5048 | - bar
5049 | 
5050 | 
5051 | - baz
5052 | 
5053 | --------------------------------------------------------------------------------
5054 | 
5055 | (document
5056 |   (section
5057 |     (list
5058 |       (list_item
5059 |         (list_marker_minus)
5060 |         (paragraph
5061 |           (inline)
5062 |           (block_continuation)))
5063 |       (list_item
5064 |         (list_marker_minus)
5065 |         (paragraph
5066 |           (inline)
5067 |           (block_continuation))
5068 |         (block_continuation))
5069 |       (list_item
5070 |         (list_marker_minus)
5071 |         (paragraph
5072 |           (inline))))))
5073 | 
5074 | ================================================================================
5075 | Example 287 - https://github.github.com/gfm/#example-287
5076 | ================================================================================
5077 | - foo
5078 |   - bar
5079 |     - baz
5080 | 
5081 | 
5082 |       bim
5083 | 
5084 | --------------------------------------------------------------------------------
5085 | 
5086 | (document
5087 |   (section
5088 |     (list
5089 |       (list_item
5090 |         (list_marker_minus)
5091 |         (paragraph
5092 |           (inline)
5093 |           (block_continuation))
5094 |         (list
5095 |           (list_item
5096 |             (list_marker_minus)
5097 |             (paragraph
5098 |               (inline)
5099 |               (block_continuation))
5100 |             (list
5101 |               (list_item
5102 |                 (list_marker_minus)
5103 |                 (paragraph
5104 |                   (inline)
5105 |                   (block_continuation))
5106 |                 (block_continuation)
5107 |                 (block_continuation)
5108 |                 (paragraph
5109 |                   (inline))))))))))
5110 | 
5111 | ================================================================================
5112 | Example 288 - https://github.github.com/gfm/#example-288
5113 | ================================================================================
5114 | - foo
5115 | - bar
5116 | 
5117 | <!-- -->
5118 | 
5119 | - baz
5120 | - bim
5121 | 
5122 | --------------------------------------------------------------------------------
5123 | 
5124 | (document
5125 |   (section
5126 |     (list
5127 |       (list_item
5128 |         (list_marker_minus)
5129 |         (paragraph
5130 |           (inline)))
5131 |       (list_item
5132 |         (list_marker_minus)
5133 |         (paragraph
5134 |           (inline)
5135 |           (block_continuation))))
5136 |     (html_block)
5137 |     (list
5138 |       (list_item
5139 |         (list_marker_minus)
5140 |         (paragraph
5141 |           (inline)))
5142 |       (list_item
5143 |         (list_marker_minus)
5144 |         (paragraph
5145 |           (inline))))))
5146 | 
5147 | ================================================================================
5148 | Example 289 - https://github.github.com/gfm/#example-289
5149 | ================================================================================
5150 | -   foo
5151 | 
5152 |     notcode
5153 | 
5154 | -   foo
5155 | 
5156 | <!-- -->
5157 | 
5158 |     code
5159 | 
5160 | --------------------------------------------------------------------------------
5161 | 
5162 | (document
5163 |   (section
5164 |     (list
5165 |       (list_item
5166 |         (list_marker_minus)
5167 |         (paragraph
5168 |           (inline)
5169 |           (block_continuation))
5170 |         (block_continuation)
5171 |         (paragraph
5172 |           (inline)
5173 |           (block_continuation)))
5174 |       (list_item
5175 |         (list_marker_minus)
5176 |         (paragraph
5177 |           (inline)
5178 |           (block_continuation))))
5179 |     (html_block)
5180 |     (indented_code_block)))
5181 | 
5182 | ================================================================================
5183 | Example 290 - https://github.github.com/gfm/#example-290
5184 | ================================================================================
5185 | - a
5186 |  - b
5187 |   - c
5188 |    - d
5189 |   - e
5190 |  - f
5191 | - g
5192 | 
5193 | --------------------------------------------------------------------------------
5194 | 
5195 | (document
5196 |   (section
5197 |     (list
5198 |       (list_item
5199 |         (list_marker_minus)
5200 |         (paragraph
5201 |           (inline)))
5202 |       (list_item
5203 |         (list_marker_minus)
5204 |         (paragraph
5205 |           (inline)))
5206 |       (list_item
5207 |         (list_marker_minus)
5208 |         (paragraph
5209 |           (inline)))
5210 |       (list_item
5211 |         (list_marker_minus)
5212 |         (paragraph
5213 |           (inline)))
5214 |       (list_item
5215 |         (list_marker_minus)
5216 |         (paragraph
5217 |           (inline)))
5218 |       (list_item
5219 |         (list_marker_minus)
5220 |         (paragraph
5221 |           (inline)))
5222 |       (list_item
5223 |         (list_marker_minus)
5224 |         (paragraph
5225 |           (inline))))))
5226 | 
5227 | ================================================================================
5228 | Example 291 - https://github.github.com/gfm/#example-291
5229 | ================================================================================
5230 | 1. a
5231 | 
5232 |   2. b
5233 | 
5234 |    3. c
5235 | 
5236 | --------------------------------------------------------------------------------
5237 | 
5238 | (document
5239 |   (section
5240 |     (list
5241 |       (list_item
5242 |         (list_marker_dot)
5243 |         (paragraph
5244 |           (inline)
5245 |           (block_continuation)))
5246 |       (list_item
5247 |         (list_marker_dot)
5248 |         (paragraph
5249 |           (inline)
5250 |           (block_continuation)))
5251 |       (list_item
5252 |         (list_marker_dot)
5253 |         (paragraph
5254 |           (inline))))))
5255 | 
5256 | ================================================================================
5257 | Example 292 - https://github.github.com/gfm/#example-292
5258 | ================================================================================
5259 | - a
5260 |  - b
5261 |   - c
5262 |    - d
5263 |     - e
5264 | 
5265 | --------------------------------------------------------------------------------
5266 | 
5267 | (document
5268 |   (section
5269 |     (list
5270 |       (list_item
5271 |         (list_marker_minus)
5272 |         (paragraph
5273 |           (inline)))
5274 |       (list_item
5275 |         (list_marker_minus)
5276 |         (paragraph
5277 |           (inline)))
5278 |       (list_item
5279 |         (list_marker_minus)
5280 |         (paragraph
5281 |           (inline)))
5282 |       (list_item
5283 |         (list_marker_minus)
5284 |         (paragraph
5285 |           (inline))))))
5286 | 
5287 | ================================================================================
5288 | Example 293 - https://github.github.com/gfm/#example-293
5289 | ================================================================================
5290 | 1. a
5291 | 
5292 |   2. b
5293 | 
5294 |     3. c
5295 | 
5296 | --------------------------------------------------------------------------------
5297 | 
5298 | (document
5299 |   (section
5300 |     (list
5301 |       (list_item
5302 |         (list_marker_dot)
5303 |         (paragraph
5304 |           (inline)
5305 |           (block_continuation)))
5306 |       (list_item
5307 |         (list_marker_dot)
5308 |         (paragraph
5309 |           (inline)
5310 |           (block_continuation))))
5311 |     (indented_code_block)))
5312 | 
5313 | ================================================================================
5314 | Example 294 - https://github.github.com/gfm/#example-294
5315 | ================================================================================
5316 | - a
5317 | - b
5318 | 
5319 | - c
5320 | 
5321 | --------------------------------------------------------------------------------
5322 | 
5323 | (document
5324 |   (section
5325 |     (list
5326 |       (list_item
5327 |         (list_marker_minus)
5328 |         (paragraph
5329 |           (inline)))
5330 |       (list_item
5331 |         (list_marker_minus)
5332 |         (paragraph
5333 |           (inline)
5334 |           (block_continuation)))
5335 |       (list_item
5336 |         (list_marker_minus)
5337 |         (paragraph
5338 |           (inline))))))
5339 | 
5340 | ================================================================================
5341 | Example 295 - https://github.github.com/gfm/#example-295
5342 | ================================================================================
5343 | * a
5344 | *
5345 | 
5346 | * c
5347 | 
5348 | --------------------------------------------------------------------------------
5349 | 
5350 | (document
5351 |   (section
5352 |     (list
5353 |       (list_item
5354 |         (list_marker_star)
5355 |         (paragraph
5356 |           (inline)))
5357 |       (list_item
5358 |         (list_marker_star)
5359 |         (block_continuation))
5360 |       (list_item
5361 |         (list_marker_star)
5362 |         (paragraph
5363 |           (inline))))))
5364 | 
5365 | ================================================================================
5366 | Example 296 - https://github.github.com/gfm/#example-296
5367 | ================================================================================
5368 | - a
5369 | - b
5370 | 
5371 |   c
5372 | - d
5373 | 
5374 | --------------------------------------------------------------------------------
5375 | 
5376 | (document
5377 |   (section
5378 |     (list
5379 |       (list_item
5380 |         (list_marker_minus)
5381 |         (paragraph
5382 |           (inline)))
5383 |       (list_item
5384 |         (list_marker_minus)
5385 |         (paragraph
5386 |           (inline)
5387 |           (block_continuation))
5388 |         (block_continuation)
5389 |         (paragraph
5390 |           (inline)))
5391 |       (list_item
5392 |         (list_marker_minus)
5393 |         (paragraph
5394 |           (inline))))))
5395 | 
5396 | ================================================================================
5397 | Example 297 - https://github.github.com/gfm/#example-297
5398 | ================================================================================
5399 | - a
5400 | - b
5401 | 
5402 |   [ref]: /url
5403 | - d
5404 | 
5405 | --------------------------------------------------------------------------------
5406 | 
5407 | (document
5408 |   (section
5409 |     (list
5410 |       (list_item
5411 |         (list_marker_minus)
5412 |         (paragraph
5413 |           (inline)))
5414 |       (list_item
5415 |         (list_marker_minus)
5416 |         (paragraph
5417 |           (inline)
5418 |           (block_continuation))
5419 |         (block_continuation)
5420 |         (link_reference_definition
5421 |           (link_label)
5422 |           (link_destination)))
5423 |       (list_item
5424 |         (list_marker_minus)
5425 |         (paragraph
5426 |           (inline))))))
5427 | 
5428 | ================================================================================
5429 | Example 298 - https://github.github.com/gfm/#example-298
5430 | ================================================================================
5431 | - a
5432 | - ```
5433 |   b
5434 | 
5435 | 
5436 |   ```
5437 | - c
5438 | 
5439 | --------------------------------------------------------------------------------
5440 | 
5441 | (document
5442 |   (section
5443 |     (list
5444 |       (list_item
5445 |         (list_marker_minus)
5446 |         (paragraph
5447 |           (inline)))
5448 |       (list_item
5449 |         (list_marker_minus)
5450 |         (fenced_code_block
5451 |           (fenced_code_block_delimiter)
5452 |           (block_continuation)
5453 |           (code_fence_content
5454 |             (block_continuation)
5455 |             (block_continuation)
5456 |             (block_continuation))
5457 |           (fenced_code_block_delimiter)))
5458 |       (list_item
5459 |         (list_marker_minus)
5460 |         (paragraph
5461 |           (inline))))))
5462 | 
5463 | ================================================================================
5464 | Example 299 - https://github.github.com/gfm/#example-299
5465 | ================================================================================
5466 | - a
5467 |   - b
5468 | 
5469 |     c
5470 | - d
5471 | 
5472 | --------------------------------------------------------------------------------
5473 | 
5474 | (document
5475 |   (section
5476 |     (list
5477 |       (list_item
5478 |         (list_marker_minus)
5479 |         (paragraph
5480 |           (inline)
5481 |           (block_continuation))
5482 |         (list
5483 |           (list_item
5484 |             (list_marker_minus)
5485 |             (paragraph
5486 |               (inline)
5487 |               (block_continuation))
5488 |             (block_continuation)
5489 |             (paragraph
5490 |               (inline)))))
5491 |       (list_item
5492 |         (list_marker_minus)
5493 |         (paragraph
5494 |           (inline))))))
5495 | 
5496 | ================================================================================
5497 | Example 300 - https://github.github.com/gfm/#example-300
5498 | ================================================================================
5499 | * a
5500 |   > b
5501 |   >
5502 | * c
5503 | 
5504 | --------------------------------------------------------------------------------
5505 | 
5506 | (document
5507 |   (section
5508 |     (list
5509 |       (list_item
5510 |         (list_marker_star)
5511 |         (paragraph
5512 |           (inline)
5513 |           (block_continuation))
5514 |         (block_quote
5515 |           (block_quote_marker)
5516 |           (paragraph
5517 |             (inline)
5518 |             (block_continuation))))
5519 |       (list_item
5520 |         (list_marker_star)
5521 |         (paragraph
5522 |           (inline))))))
5523 | 
5524 | ================================================================================
5525 | Example 301 - https://github.github.com/gfm/#example-301
5526 | ================================================================================
5527 | - a
5528 |   > b
5529 |   ```
5530 |   c
5531 |   ```
5532 | - d
5533 | 
5534 | --------------------------------------------------------------------------------
5535 | 
5536 | (document
5537 |   (section
5538 |     (list
5539 |       (list_item
5540 |         (list_marker_minus)
5541 |         (paragraph
5542 |           (inline)
5543 |           (block_continuation))
5544 |         (block_quote
5545 |           (block_quote_marker)
5546 |           (paragraph
5547 |             (inline)
5548 |             (block_continuation)))
5549 |         (fenced_code_block
5550 |           (fenced_code_block_delimiter)
5551 |           (block_continuation)
5552 |           (code_fence_content
5553 |             (block_continuation))
5554 |           (fenced_code_block_delimiter)))
5555 |       (list_item
5556 |         (list_marker_minus)
5557 |         (paragraph
5558 |           (inline))))))
5559 | 
5560 | ================================================================================
5561 | Example 302 - https://github.github.com/gfm/#example-302
5562 | ================================================================================
5563 | - a
5564 | 
5565 | --------------------------------------------------------------------------------
5566 | 
5567 | (document
5568 |   (section
5569 |     (list
5570 |       (list_item
5571 |         (list_marker_minus)
5572 |         (paragraph
5573 |           (inline))))))
5574 | 
5575 | ================================================================================
5576 | Example 303 - https://github.github.com/gfm/#example-303
5577 | ================================================================================
5578 | - a
5579 |   - b
5580 | 
5581 | --------------------------------------------------------------------------------
5582 | 
5583 | (document
5584 |   (section
5585 |     (list
5586 |       (list_item
5587 |         (list_marker_minus)
5588 |         (paragraph
5589 |           (inline)
5590 |           (block_continuation))
5591 |         (list
5592 |           (list_item
5593 |             (list_marker_minus)
5594 |             (paragraph
5595 |               (inline))))))))
5596 | 
5597 | ================================================================================
5598 | Example 304 - https://github.github.com/gfm/#example-304
5599 | ================================================================================
5600 | 1. ```
5601 |    foo
5602 |    ```
5603 | 
5604 |    bar
5605 | 
5606 | --------------------------------------------------------------------------------
5607 | 
5608 | (document
5609 |   (section
5610 |     (list
5611 |       (list_item
5612 |         (list_marker_dot)
5613 |         (fenced_code_block
5614 |           (fenced_code_block_delimiter)
5615 |           (block_continuation)
5616 |           (code_fence_content
5617 |             (block_continuation))
5618 |           (fenced_code_block_delimiter)
5619 |           (block_continuation))
5620 |         (block_continuation)
5621 |         (paragraph
5622 |           (inline))))))
5623 | 
5624 | ================================================================================
5625 | Example 305 - https://github.github.com/gfm/#example-305
5626 | ================================================================================
5627 | * foo
5628 |   * bar
5629 | 
5630 |   baz
5631 | 
5632 | --------------------------------------------------------------------------------
5633 | 
5634 | (document
5635 |   (section
5636 |     (list
5637 |       (list_item
5638 |         (list_marker_star)
5639 |         (paragraph
5640 |           (inline)
5641 |           (block_continuation))
5642 |         (list
5643 |           (list_item
5644 |             (list_marker_star)
5645 |             (paragraph
5646 |               (inline)
5647 |               (block_continuation))
5648 |             (block_continuation)))
5649 |         (paragraph
5650 |           (inline))))))
5651 | 
5652 | ================================================================================
5653 | Example 306 - https://github.github.com/gfm/#example-306
5654 | ================================================================================
5655 | - a
5656 |   - b
5657 |   - c
5658 | 
5659 | - d
5660 |   - e
5661 |   - f
5662 | 
5663 | --------------------------------------------------------------------------------
5664 | 
5665 | (document
5666 |   (section
5667 |     (list
5668 |       (list_item
5669 |         (list_marker_minus)
5670 |         (paragraph
5671 |           (inline)
5672 |           (block_continuation))
5673 |         (list
5674 |           (list_item
5675 |             (list_marker_minus)
5676 |             (paragraph
5677 |               (inline)
5678 |               (block_continuation)))
5679 |           (list_item
5680 |             (list_marker_minus)
5681 |             (paragraph
5682 |               (inline)
5683 |               (block_continuation)))))
5684 |       (list_item
5685 |         (list_marker_minus)
5686 |         (paragraph
5687 |           (inline)
5688 |           (block_continuation))
5689 |         (list
5690 |           (list_item
5691 |             (list_marker_minus)
5692 |             (paragraph
5693 |               (inline)
5694 |               (block_continuation)))
5695 |           (list_item
5696 |             (list_marker_minus)
5697 |             (paragraph
5698 |               (inline))))))))
5699 | 
5700 | ================================================================================
5701 | Example 314 - https://github.github.com/gfm/#example-314
5702 | ================================================================================
5703 |     \[\]
5704 | 
5705 | --------------------------------------------------------------------------------
5706 | 
5707 | (document
5708 |   (section
5709 |     (indented_code_block)))
5710 | 
5711 | ================================================================================
5712 | Example 315 - https://github.github.com/gfm/#example-315
5713 | ================================================================================
5714 | ~~~
5715 | \[\]
5716 | ~~~
5717 | 
5718 | --------------------------------------------------------------------------------
5719 | 
5720 | (document
5721 |   (section
5722 |     (fenced_code_block
5723 |       (fenced_code_block_delimiter)
5724 |       (block_continuation)
5725 |       (code_fence_content
5726 |         (block_continuation))
5727 |       (fenced_code_block_delimiter))))
5728 | 
5729 | ================================================================================
5730 | Example 319 - https://github.github.com/gfm/#example-319
5731 | ================================================================================
5732 | [foo]
5733 | 
5734 | [foo]: /bar\* "ti\*tle"
5735 | 
5736 | --------------------------------------------------------------------------------
5737 | 
5738 | (document
5739 |   (section
5740 |     (paragraph
5741 |       (inline))
5742 |     (link_reference_definition
5743 |       (link_label)
5744 |       (link_destination
5745 |         (backslash_escape))
5746 |       (link_title
5747 |         (backslash_escape)))))
5748 | 
5749 | ================================================================================
5750 | Example 320 - https://github.github.com/gfm/#example-320
5751 | ================================================================================
5752 | ``` foo\+bar
5753 | foo
5754 | ```
5755 | 
5756 | --------------------------------------------------------------------------------
5757 | 
5758 | (document
5759 |   (section
5760 |     (fenced_code_block
5761 |       (fenced_code_block_delimiter)
5762 |       (info_string
5763 |         (language
5764 |           (backslash_escape)))
5765 |       (block_continuation)
5766 |       (code_fence_content
5767 |         (block_continuation))
5768 |       (fenced_code_block_delimiter))))
5769 | 
5770 | ================================================================================
5771 | Example 329 - https://github.github.com/gfm/#example-329
5772 | ================================================================================
5773 | [foo]
5774 | 
5775 | [foo]: /f&ouml;&ouml; "f&ouml;&ouml;"
5776 | 
5777 | --------------------------------------------------------------------------------
5778 | 
5779 | (document
5780 |   (section
5781 |     (paragraph
5782 |       (inline))
5783 |     (link_reference_definition
5784 |       (link_label)
5785 |       (link_destination
5786 |         (entity_reference)
5787 |         (entity_reference))
5788 |       (link_title
5789 |         (entity_reference)
5790 |         (entity_reference)))))
5791 | 
5792 | ================================================================================
5793 | Example 330 - https://github.github.com/gfm/#example-330
5794 | ================================================================================
5795 | ``` f&ouml;&ouml;
5796 | foo
5797 | ```
5798 | 
5799 | --------------------------------------------------------------------------------
5800 | 
5801 | (document
5802 |   (section
5803 |     (fenced_code_block
5804 |       (fenced_code_block_delimiter)
5805 |       (info_string
5806 |         (language
5807 |           (entity_reference)
5808 |           (entity_reference)))
5809 |       (block_continuation)
5810 |       (code_fence_content
5811 |         (block_continuation))
5812 |       (fenced_code_block_delimiter))))
5813 | 
5814 | ================================================================================
5815 | Example 332 - https://github.github.com/gfm/#example-332
5816 | ================================================================================
5817 |     f&ouml;f&ouml;
5818 | 
5819 | --------------------------------------------------------------------------------
5820 | 
5821 | (document
5822 |   (section
5823 |     (indented_code_block)))
5824 | 
5825 | ================================================================================
5826 | Example 334 - https://github.github.com/gfm/#example-334
5827 | ================================================================================
5828 | &#42; foo
5829 | 
5830 | * foo
5831 | 
5832 | --------------------------------------------------------------------------------
5833 | 
5834 | (document
5835 |   (section
5836 |     (paragraph
5837 |       (inline))
5838 |     (list
5839 |       (list_item
5840 |         (list_marker_star)
5841 |         (paragraph
5842 |           (inline))))))
5843 | 
```
Page 8/10FirstPrevNextLast