#
tokens: 19124/50000 1/104 files (page 4/8)
lines: off (toggle) GitHub
raw markdown copy
This is page 4 of 8. Use http://codebase.md/moisnx/arc?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-inline/test/corpus/spec.txt:
--------------------------------------------------------------------------------

```
================================================================================
Example 307 - https://github.github.com/gfm/#example-307
================================================================================
`hi`lo`

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 308 - https://github.github.com/gfm/#example-308
================================================================================
\!\"\#\$\%\&\'\(\)\*\+\,\-\.\/\:\;\<\=\>\?\@\[\\\]\^\_\`\{\|\}\~

--------------------------------------------------------------------------------

(inline
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape))

================================================================================
Example 309 - https://github.github.com/gfm/#example-309
================================================================================
\	\A\a\ \3\φ\«

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 310 - https://github.github.com/gfm/#example-310
================================================================================
\*not emphasized*
\<br/> not a tag
\[not a link](/foo)
\`not code`
1\. not a list
\* not a list
\# not a heading
\[foo]: /url "not a reference"
\&ouml; not a character entity

--------------------------------------------------------------------------------

(inline
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape)
  (backslash_escape))

================================================================================
Example 311 - https://github.github.com/gfm/#example-311
================================================================================
\\*emphasis*

--------------------------------------------------------------------------------

(inline
  (backslash_escape)
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 312 - https://github.github.com/gfm/#example-312
================================================================================
foo\
bar

--------------------------------------------------------------------------------

(inline
  (hard_line_break))

================================================================================
Example 313 - https://github.github.com/gfm/#example-313
================================================================================
`` \[\` ``

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 316 - https://github.github.com/gfm/#example-316
================================================================================
<http://example.com?find=\*>

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 317 - https://github.github.com/gfm/#example-317
================================================================================
<a href="/bar\/)">

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 318 - https://github.github.com/gfm/#example-318
================================================================================
[foo](/bar\* "ti\*tle")

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination
      (backslash_escape))
    (link_title
      (backslash_escape))))

================================================================================
Example 321 - https://github.github.com/gfm/#example-321
================================================================================
&nbsp; &amp; &copy; &AElig; &Dcaron;
&frac34; &HilbertSpace; &DifferentialD;
&ClockwiseContourIntegral; &ngE;

--------------------------------------------------------------------------------

(inline
  (entity_reference)
  (entity_reference)
  (entity_reference)
  (entity_reference)
  (entity_reference)
  (entity_reference)
  (entity_reference)
  (entity_reference)
  (entity_reference)
  (entity_reference))

================================================================================
Example 322 - https://github.github.com/gfm/#example-322
================================================================================
&#35; &#1234; &#992; &#0;

--------------------------------------------------------------------------------

(inline
  (numeric_character_reference)
  (numeric_character_reference)
  (numeric_character_reference)
  (numeric_character_reference))

================================================================================
Example 323 - https://github.github.com/gfm/#example-323
================================================================================
&#X22; &#XD06; &#xcab;

--------------------------------------------------------------------------------

(inline
  (numeric_character_reference)
  (numeric_character_reference)
  (numeric_character_reference))

================================================================================
Example 324 - https://github.github.com/gfm/#example-324
================================================================================
&nbsp &x; &#; &#x;
&#87654321;
&#abcdef0;
&ThisIsNotDefined; &hi?;

--------------------------------------------------------------------------------

(inline
  (tag)
  (tag))

================================================================================
Example 325 - https://github.github.com/gfm/#example-325
================================================================================
&copy

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 326 - https://github.github.com/gfm/#example-326
================================================================================
&MadeUpEntity;

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 327 - https://github.github.com/gfm/#example-327
================================================================================
<a href="&ouml;&ouml;.html">

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 328 - https://github.github.com/gfm/#example-328
================================================================================
[foo](/f&ouml;&ouml; "f&ouml;&ouml;")

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination
      (entity_reference)
      (entity_reference))
    (link_title
      (entity_reference)
      (entity_reference))))

================================================================================
Example 331 - https://github.github.com/gfm/#example-331
================================================================================
`f&ouml;&ouml;`

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 333 - https://github.github.com/gfm/#example-333
================================================================================
&#42;foo&#42;
*foo*

--------------------------------------------------------------------------------

(inline
  (numeric_character_reference)
  (numeric_character_reference)
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 335 - https://github.github.com/gfm/#example-335
================================================================================
foo&#10;&#10;bar

--------------------------------------------------------------------------------

(inline
  (numeric_character_reference)
  (numeric_character_reference))

================================================================================
Example 336 - https://github.github.com/gfm/#example-336
================================================================================
&#9;foo

--------------------------------------------------------------------------------

(inline
  (numeric_character_reference))

================================================================================
Example 337 - https://github.github.com/gfm/#example-337
================================================================================
[a](url &quot;tit&quot;)

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text))
  (entity_reference)
  (entity_reference))

================================================================================
Example 338 - https://github.github.com/gfm/#example-338
================================================================================
`foo`

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 339 - https://github.github.com/gfm/#example-339
================================================================================
`` foo ` bar ``

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 340 - https://github.github.com/gfm/#example-340
================================================================================
` `` `

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 341 - https://github.github.com/gfm/#example-341
================================================================================
`  ``  `

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 342 - https://github.github.com/gfm/#example-342
================================================================================
` a`

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 343 - https://github.github.com/gfm/#example-343
================================================================================
` b `

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 344 - https://github.github.com/gfm/#example-344
================================================================================
` `
`  `

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter))
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 345 - https://github.github.com/gfm/#example-345
================================================================================
``
foo
bar
baz
``

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 346 - https://github.github.com/gfm/#example-346
================================================================================
``
foo
``

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 347 - https://github.github.com/gfm/#example-347
================================================================================
`foo   bar
baz`

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 348 - https://github.github.com/gfm/#example-348
================================================================================
`foo\`bar`

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 349 - https://github.github.com/gfm/#example-349
================================================================================
``foo`bar``

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 350 - https://github.github.com/gfm/#example-350
================================================================================
` foo `` bar `

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 351 - https://github.github.com/gfm/#example-351
================================================================================
*foo`*`

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 352 - https://github.github.com/gfm/#example-352
================================================================================
[not a `link](/foo`)

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 353 - https://github.github.com/gfm/#example-353
================================================================================
`<a href="`">`

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 354 - https://github.github.com/gfm/#example-354
================================================================================
<a href="`">`

--------------------------------------------------------------------------------

(inline
  (html_tag))


================================================================================
Example 356 - https://github.github.com/gfm/#example-356
================================================================================
<http://foo.bar.`baz>`

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 357 - https://github.github.com/gfm/#example-357
================================================================================
```foo``

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 358 - https://github.github.com/gfm/#example-358
================================================================================
`foo

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 359 - https://github.github.com/gfm/#example-359
================================================================================
`foo``bar``

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 360 - https://github.github.com/gfm/#example-360
================================================================================
*foo bar*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 361 - https://github.github.com/gfm/#example-361
================================================================================
a * foo bar*

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 362 - https://github.github.com/gfm/#example-362
================================================================================
a*"foo"*

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 364 - https://github.github.com/gfm/#example-364
================================================================================
foo*bar*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 365 - https://github.github.com/gfm/#example-365
================================================================================
5*6*78

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 366 - https://github.github.com/gfm/#example-366
================================================================================
_foo bar_

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 367 - https://github.github.com/gfm/#example-367
================================================================================
_ foo bar_

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 368 - https://github.github.com/gfm/#example-368
================================================================================
a_"foo"_

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 369 - https://github.github.com/gfm/#example-369
================================================================================
foo_bar_

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 370 - https://github.github.com/gfm/#example-370
================================================================================
5_6_78

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 371 - https://github.github.com/gfm/#example-371
================================================================================
пристаням_стремятся_

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 372 - https://github.github.com/gfm/#example-372
================================================================================
aa_"bb"_cc

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 373 - https://github.github.com/gfm/#example-373
================================================================================
foo-_(bar)_

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 374 - https://github.github.com/gfm/#example-374
================================================================================
_foo*

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 375 - https://github.github.com/gfm/#example-375
================================================================================
*foo bar *

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 376 - https://github.github.com/gfm/#example-376
================================================================================
*foo bar
*

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 377 - https://github.github.com/gfm/#example-377
================================================================================
*(*foo)

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 378 - https://github.github.com/gfm/#example-378
================================================================================
*(*foo*)*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 379 - https://github.github.com/gfm/#example-379
================================================================================
*foo*bar

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 380 - https://github.github.com/gfm/#example-380
================================================================================
_foo bar _

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 381 - https://github.github.com/gfm/#example-381
================================================================================
_(_foo)

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 382 - https://github.github.com/gfm/#example-382
================================================================================
_(_foo_)_

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 383 - https://github.github.com/gfm/#example-383
================================================================================
_foo_bar

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 384 - https://github.github.com/gfm/#example-384
================================================================================
_пристаням_стремятся

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 385 - https://github.github.com/gfm/#example-385
================================================================================
_foo_bar_baz_

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 386 - https://github.github.com/gfm/#example-386
================================================================================
_(bar)_.

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 387 - https://github.github.com/gfm/#example-387
================================================================================
**foo bar**

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 388 - https://github.github.com/gfm/#example-388
================================================================================
** foo bar**

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 390 - https://github.github.com/gfm/#example-390
================================================================================
foo**bar**

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 391 - https://github.github.com/gfm/#example-391
================================================================================
__foo bar__

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 392 - https://github.github.com/gfm/#example-392
================================================================================
__ foo bar__

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 393 - https://github.github.com/gfm/#example-393
================================================================================
__
foo bar__

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 395 - https://github.github.com/gfm/#example-395
================================================================================
foo__bar__

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 396 - https://github.github.com/gfm/#example-396
================================================================================
5__6__78

================================================================================
Example 397 - https://github.github.com/gfm/#example-397
================================================================================
пристаням__стремятся__

--------------------------------------------------------------------------------

(inline)

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 398 - https://github.github.com/gfm/#example-398
================================================================================
__foo, __bar__, baz__

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 399 - https://github.github.com/gfm/#example-399
================================================================================
foo-__(bar)__

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 402 - https://github.github.com/gfm/#example-402
================================================================================
*(**foo**)*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 403 - https://github.github.com/gfm/#example-403
================================================================================
**Gomphocarpus (*Gomphocarpus physocarpus*, syn.
*Asclepias physocarpa*)**

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 404 - https://github.github.com/gfm/#example-404
================================================================================
**foo "*bar*" foo**

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 405 - https://github.github.com/gfm/#example-405
================================================================================
**foo**bar

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 408 - https://github.github.com/gfm/#example-408
================================================================================
_(__foo__)_

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 409 - https://github.github.com/gfm/#example-409
================================================================================
__foo__bar

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 410 - https://github.github.com/gfm/#example-410
================================================================================
__пристаням__стремятся

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 412 - https://github.github.com/gfm/#example-412
================================================================================
__(bar)__.

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 413 - https://github.github.com/gfm/#example-413
================================================================================
*foo [bar](/url)*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (inline_link
      (link_text)
      (link_destination))
    (emphasis_delimiter)))

================================================================================
Example 414 - https://github.github.com/gfm/#example-414
================================================================================
*foo
bar*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 415 - https://github.github.com/gfm/#example-415
================================================================================
_foo __bar__ baz_

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 416 - https://github.github.com/gfm/#example-416
================================================================================
_foo _bar_ baz_

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 417 - https://github.github.com/gfm/#example-417
================================================================================
__foo_ bar_

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 418 - https://github.github.com/gfm/#example-418
================================================================================
*foo *bar**

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 419 - https://github.github.com/gfm/#example-419
================================================================================
*foo **bar** baz*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 422 - https://github.github.com/gfm/#example-422
================================================================================
***foo** bar*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 423 - https://github.github.com/gfm/#example-423
================================================================================
*foo **bar***

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 425 - https://github.github.com/gfm/#example-425
================================================================================
foo***bar***baz

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 426 - https://github.github.com/gfm/#example-426
================================================================================
foo******bar*********baz

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (strong_emphasis
        (emphasis_delimiter)
        (emphasis_delimiter)
        (emphasis_delimiter)
        (emphasis_delimiter))
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 427 - https://github.github.com/gfm/#example-427
================================================================================
*foo **bar *baz* bim** bop*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis
        (emphasis_delimiter)
        (emphasis_delimiter))
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 428 - https://github.github.com/gfm/#example-428
================================================================================
*foo [*bar*](/url)*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (inline_link
      (link_text
        (emphasis
          (emphasis_delimiter)
          (emphasis_delimiter)))
      (link_destination))
    (emphasis_delimiter)))

================================================================================
Example 429 - https://github.github.com/gfm/#example-429
================================================================================
** is not an empty emphasis

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 430 - https://github.github.com/gfm/#example-430
================================================================================
**** is not an empty strong emphasis

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 431 - https://github.github.com/gfm/#example-431
================================================================================
**foo [bar](/url)**

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (inline_link
      (link_text)
      (link_destination))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 432 - https://github.github.com/gfm/#example-432
================================================================================
**foo
bar**

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 433 - https://github.github.com/gfm/#example-433
================================================================================
__foo _bar_ baz__

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 434 - https://github.github.com/gfm/#example-434
================================================================================
__foo __bar__ baz__

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 435 - https://github.github.com/gfm/#example-435
================================================================================
____foo__ bar__

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 436 - https://github.github.com/gfm/#example-436
================================================================================
**foo **bar****

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 437 - https://github.github.com/gfm/#example-437
================================================================================
**foo *bar* baz**

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 439 - https://github.github.com/gfm/#example-439
================================================================================
***foo* bar**

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 440 - https://github.github.com/gfm/#example-440
================================================================================
**foo *bar***

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 441 - https://github.github.com/gfm/#example-441
================================================================================
**foo *bar **baz**
bim* bop**

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis
      (emphasis_delimiter)
      (strong_emphasis
        (emphasis_delimiter)
        (emphasis_delimiter)
        (emphasis_delimiter)
        (emphasis_delimiter))
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 442 - https://github.github.com/gfm/#example-442
================================================================================
**foo [*bar*](/url)**

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (inline_link
      (link_text
        (emphasis
          (emphasis_delimiter)
          (emphasis_delimiter)))
      (link_destination))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 443 - https://github.github.com/gfm/#example-443
================================================================================
__ is not an empty emphasis

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 444 - https://github.github.com/gfm/#example-444
================================================================================
____ is not an empty strong emphasis

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 445 - https://github.github.com/gfm/#example-445
================================================================================
foo ***

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 446 - https://github.github.com/gfm/#example-446
================================================================================
foo *\**

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (backslash_escape)
    (emphasis_delimiter)))

================================================================================
Example 447 - https://github.github.com/gfm/#example-447
================================================================================
foo *_*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 448 - https://github.github.com/gfm/#example-448
================================================================================
foo *****

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 449 - https://github.github.com/gfm/#example-449
================================================================================
foo **\***

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (backslash_escape)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 450 - https://github.github.com/gfm/#example-450
================================================================================
foo **_**

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 451 - https://github.github.com/gfm/#example-451
================================================================================
**foo*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 452 - https://github.github.com/gfm/#example-452
================================================================================
*foo**

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 453 - https://github.github.com/gfm/#example-453
================================================================================
***foo**

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 454 - https://github.github.com/gfm/#example-454
================================================================================
****foo*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 455 - https://github.github.com/gfm/#example-455
================================================================================
**foo***

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 456 - https://github.github.com/gfm/#example-456
================================================================================
*foo****

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 457 - https://github.github.com/gfm/#example-457
================================================================================
foo ___

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 458 - https://github.github.com/gfm/#example-458
================================================================================
foo _\__

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (backslash_escape)
    (emphasis_delimiter)))

================================================================================
Example 459 - https://github.github.com/gfm/#example-459
================================================================================
foo _*_

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 460 - https://github.github.com/gfm/#example-460
================================================================================
foo _____

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 461 - https://github.github.com/gfm/#example-461
================================================================================
foo __\___

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (backslash_escape)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 462 - https://github.github.com/gfm/#example-462
================================================================================
foo __*__

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 463 - https://github.github.com/gfm/#example-463
================================================================================
__foo_

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 464 - https://github.github.com/gfm/#example-464
================================================================================
_foo__

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 465 - https://github.github.com/gfm/#example-465
================================================================================
___foo__

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 466 - https://github.github.com/gfm/#example-466
================================================================================
____foo_

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 467 - https://github.github.com/gfm/#example-467
================================================================================
__foo___

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 468 - https://github.github.com/gfm/#example-468
================================================================================
_foo____

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 469 - https://github.github.com/gfm/#example-469
================================================================================
**foo**

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 470 - https://github.github.com/gfm/#example-470
================================================================================
*_foo_*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 471 - https://github.github.com/gfm/#example-471
================================================================================
__foo__

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 472 - https://github.github.com/gfm/#example-472
================================================================================
_*foo*_

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 473 - https://github.github.com/gfm/#example-473
================================================================================
****foo****

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 474 - https://github.github.com/gfm/#example-474
================================================================================
____foo____

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 475 - https://github.github.com/gfm/#example-475
================================================================================
******foo******

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (strong_emphasis
        (emphasis_delimiter)
        (emphasis_delimiter)
        (emphasis_delimiter)
        (emphasis_delimiter))
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 476 - https://github.github.com/gfm/#example-476
================================================================================
***foo***

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 477 - https://github.github.com/gfm/#example-477
================================================================================
_____foo_____

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (strong_emphasis
        (emphasis_delimiter)
        (emphasis_delimiter)
        (emphasis_delimiter)
        (emphasis_delimiter))
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 478 - https://github.github.com/gfm/#example-478
================================================================================
*foo _bar* baz_

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 479 - https://github.github.com/gfm/#example-479
================================================================================
*foo __bar *baz bim__ bam*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (strong_emphasis
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter)
      (emphasis_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 480 - https://github.github.com/gfm/#example-480
================================================================================
**foo **bar baz**

--------------------------------------------------------------------------------

(inline
  (strong_emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 481 - https://github.github.com/gfm/#example-481
================================================================================
*foo *bar baz*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (emphasis_delimiter)))

================================================================================
Example 482 - https://github.github.com/gfm/#example-482
================================================================================
*[bar*](/url)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 483 - https://github.github.com/gfm/#example-483
================================================================================
_foo [bar_](/url)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 484 - https://github.github.com/gfm/#example-484
================================================================================
*<img src="foo" title="*"/>

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 485 - https://github.github.com/gfm/#example-485
================================================================================
**<a href="**">

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 486 - https://github.github.com/gfm/#example-486
================================================================================
__<a href="__">

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 487 - https://github.github.com/gfm/#example-487
================================================================================
*a `*`*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (code_span
      (code_span_delimiter)
      (code_span_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 488 - https://github.github.com/gfm/#example-488
================================================================================
_a `_`_

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (code_span
      (code_span_delimiter)
      (code_span_delimiter))
    (emphasis_delimiter)))

================================================================================
Example 489 - https://github.github.com/gfm/#example-489
================================================================================
**a<http://foo.bar/?q=**>

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 490 - https://github.github.com/gfm/#example-490
================================================================================
__a<http://foo.bar/?q=__>

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 493 - https://github.github.com/gfm/#example-493
================================================================================
[link](/uri "title")

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)
    (link_title)))

================================================================================
Example 494 - https://github.github.com/gfm/#example-494
================================================================================
[link](/uri)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 495 - https://github.github.com/gfm/#example-495
================================================================================
[link]()

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)))

================================================================================
Example 496 - https://github.github.com/gfm/#example-496
================================================================================
[link](<>)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 497 - https://github.github.com/gfm/#example-497
================================================================================
[link](/my uri)

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 498 - https://github.github.com/gfm/#example-498
================================================================================
[link](</my uri>)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 499 - https://github.github.com/gfm/#example-499
================================================================================
[link](foo
bar)

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 500 - https://github.github.com/gfm/#example-500
================================================================================
[link](<foo
bar>)

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 501 - https://github.github.com/gfm/#example-501
================================================================================
[a](<b)c>)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 502 - https://github.github.com/gfm/#example-502
================================================================================
[link](<foo\>)

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text))
  (backslash_escape))

================================================================================
Example 503 - https://github.github.com/gfm/#example-503
================================================================================
[a](<b)c
[a](<b)c>
[a](<b>c)

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text))
  (shortcut_link
    (link_text))
  (shortcut_link
    (link_text))
  (html_tag))

================================================================================
Example 504 - https://github.github.com/gfm/#example-504
================================================================================
[link](\(foo\))

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination
      (backslash_escape)
      (backslash_escape))))

================================================================================
Example 505 - https://github.github.com/gfm/#example-505
================================================================================
[link](foo(and(bar)))

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 506 - https://github.github.com/gfm/#example-506
================================================================================
[link](foo\(and\(bar\))

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination
      (backslash_escape)
      (backslash_escape)
      (backslash_escape))))

================================================================================
Example 507 - https://github.github.com/gfm/#example-507
================================================================================
[link](<foo(and(bar)>)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 508 - https://github.github.com/gfm/#example-508
================================================================================
[link](foo\)\:)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination
      (backslash_escape)
      (backslash_escape))))

================================================================================
Example 509 - https://github.github.com/gfm/#example-509
================================================================================
[link](#fragment)
[link](http://example.com#fragment)
[link](http://example.com?foo=3#frag)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination))
  (inline_link
    (link_text)
    (link_destination))
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 510 - https://github.github.com/gfm/#example-510
================================================================================
[link](foo\bar)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 511 - https://github.github.com/gfm/#example-511
================================================================================
[link](foo%20b&auml;)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination
      (entity_reference))))

================================================================================
Example 512 - https://github.github.com/gfm/#example-512
================================================================================
[link]("title")

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 513 - https://github.github.com/gfm/#example-513
================================================================================
[link](/url "title")
[link](/url 'title')
[link](/url (title))

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)
    (link_title))
  (inline_link
    (link_text)
    (link_destination)
    (link_title))
  (inline_link
    (link_text)
    (link_destination)
    (link_title)))

================================================================================
Example 514 - https://github.github.com/gfm/#example-514
================================================================================
[link](/url "title \"&quot;")

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)
    (link_title
      (backslash_escape)
      (entity_reference))))

================================================================================
Example 515 - https://github.github.com/gfm/#example-515
================================================================================
[link](/url "title")

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 516 - https://github.github.com/gfm/#example-516
================================================================================
[link](/url "title "and" title")

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 517 - https://github.github.com/gfm/#example-517
================================================================================
[link](/url 'title "and" title')

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)
    (link_title)))

================================================================================
Example 518 - https://github.github.com/gfm/#example-518
================================================================================
[link](   /uri
  "title"  )

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)
    (link_title)))

================================================================================
Example 519 - https://github.github.com/gfm/#example-519
================================================================================
[link] (/uri)

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 520 - https://github.github.com/gfm/#example-520
================================================================================
[link [foo [bar]]](/uri)

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 521 - https://github.github.com/gfm/#example-521
================================================================================
[link] bar](/uri)

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 522 - https://github.github.com/gfm/#example-522
================================================================================
[link [bar](/uri)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 523 - https://github.github.com/gfm/#example-523
================================================================================
[link \[bar](/uri)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text
      (backslash_escape))
    (link_destination)))

================================================================================
Example 525 - https://github.github.com/gfm/#example-525
================================================================================
[![moon](moon.jpg)](/uri)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text
      (image
        (image_description)
        (link_destination)))
    (link_destination)))

================================================================================
Example 526 - https://github.github.com/gfm/#example-526
================================================================================
[foo [bar](/uri)](/uri)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 527 - https://github.github.com/gfm/#example-527
================================================================================
[foo *[bar [baz](/uri)](/uri)*](/uri)

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (inline_link
      (link_text)
      (link_destination))
    (emphasis_delimiter)))

================================================================================
Example 528 - https://github.github.com/gfm/#example-528
================================================================================
![[[foo](uri1)](uri2)](uri3)

--------------------------------------------------------------------------------

(inline
  (image
    (image_description
      (inline_link
        (link_text)
        (link_destination)))
    (link_destination)))

================================================================================
Example 529 - https://github.github.com/gfm/#example-529
================================================================================
*[foo*](/uri)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 530 - https://github.github.com/gfm/#example-530
================================================================================
[foo *bar](baz*)

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination)))

================================================================================
Example 531 - https://github.github.com/gfm/#example-531
================================================================================
*foo [bar* baz]

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 532 - https://github.github.com/gfm/#example-532
================================================================================
[foo <bar attr="](baz)">

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 533 - https://github.github.com/gfm/#example-533
================================================================================
[foo`](/uri)`

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 534 - https://github.github.com/gfm/#example-534
================================================================================
[foo<http://example.com/?search=](uri)>

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 535 - https://github.github.com/gfm/#example-535
================================================================================
[foo][bar]

--------------------------------------------------------------------------------

(inline
  (full_reference_link
    (link_text)
    (link_label)))

================================================================================
Example 536 - https://github.github.com/gfm/#example-536
================================================================================
[link [foo [bar]]][ref]

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text))
  (shortcut_link
    (link_text)))
================================================================================
Example 537 - https://github.github.com/gfm/#example-537
================================================================================
[link \[bar][ref]

--------------------------------------------------------------------------------

(inline
  (full_reference_link
    (link_text
      (backslash_escape))
    (link_label)))

================================================================================
Example 539 - https://github.github.com/gfm/#example-539
================================================================================
[![moon](moon.jpg)][ref]

--------------------------------------------------------------------------------

(inline
  (full_reference_link
    (link_text
      (image
        (image_description)
        (link_destination)))
    (link_label)))

================================================================================
Example 540 - https://github.github.com/gfm/#example-540
================================================================================
[foo [bar](/uri)][ref]

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)
    (link_destination))
  (shortcut_link
    (link_text)))

================================================================================
Example 541 - https://github.github.com/gfm/#example-541
================================================================================
[foo *bar [baz][ref]*][ref]

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (full_reference_link
      (link_text)
      (link_label))
    (emphasis_delimiter))
  (shortcut_link
    (link_text)))

================================================================================
Example 542 - https://github.github.com/gfm/#example-542
================================================================================
*[foo*][ref]

--------------------------------------------------------------------------------

(inline
  (full_reference_link
    (link_text)
    (link_label)))

================================================================================
Example 543 - https://github.github.com/gfm/#example-543
================================================================================
[foo *bar][ref]*

--------------------------------------------------------------------------------

(inline
  (full_reference_link
    (link_text)
    (link_label)))

================================================================================
Example 544 - https://github.github.com/gfm/#example-544
================================================================================
[foo <bar attr="][ref]">

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 545 - https://github.github.com/gfm/#example-545
================================================================================
[foo`][ref]`

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 546 - https://github.github.com/gfm/#example-546
================================================================================
[foo<http://example.com/?search=][ref]>

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 547 - https://github.github.com/gfm/#example-547
================================================================================
[foo][BaR]

--------------------------------------------------------------------------------

(inline
  (full_reference_link
    (link_text)
    (link_label)))

================================================================================
Example 548 - https://github.github.com/gfm/#example-548
================================================================================
[ẞ]

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 549 - https://github.github.com/gfm/#example-549
================================================================================

[Baz][Foo bar]

--------------------------------------------------------------------------------

(inline
  (full_reference_link
    (link_text)
    (link_label)))

================================================================================
Example 550 - https://github.github.com/gfm/#example-550
================================================================================
[foo] [bar]

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text))
  (shortcut_link
    (link_text)))

================================================================================
Example 551 - https://github.github.com/gfm/#example-551
================================================================================
[foo]
[bar]

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text))
  (shortcut_link
    (link_text)))

================================================================================
Example 552 - https://github.github.com/gfm/#example-552
================================================================================
[bar][foo]

--------------------------------------------------------------------------------

(inline
  (full_reference_link
    (link_text)
    (link_label)))

================================================================================
Example 553 - https://github.github.com/gfm/#example-553
================================================================================
[bar][foo\!]

--------------------------------------------------------------------------------

(inline
  (full_reference_link
    (link_text)
    (link_label
      (backslash_escape))))

================================================================================
Example 554 - https://github.github.com/gfm/#example-554
================================================================================
[foo][ref[]

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 555 - https://github.github.com/gfm/#example-555
================================================================================
[foo][ref[bar]]

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text))
  (shortcut_link
    (link_text)))

================================================================================
Example 557 - https://github.github.com/gfm/#example-557
================================================================================
[foo][ref\[]

--------------------------------------------------------------------------------

(inline
  (full_reference_link
    (link_text)
    (link_label
      (backslash_escape))))

================================================================================
Example 558 - https://github.github.com/gfm/#example-558
================================================================================
[bar\\]

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text
      (backslash_escape))))

================================================================================
Example 559 - https://github.github.com/gfm/#example-559
================================================================================
[]

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 561 - https://github.github.com/gfm/#example-561
================================================================================
[foo][]

--------------------------------------------------------------------------------

(inline
  (collapsed_reference_link
    (link_text)))

================================================================================
Example 562 - https://github.github.com/gfm/#example-562
================================================================================
[*foo* bar][]

--------------------------------------------------------------------------------

(inline
  (collapsed_reference_link
    (link_text
      (emphasis
        (emphasis_delimiter)
        (emphasis_delimiter)))))

================================================================================
Example 563 - https://github.github.com/gfm/#example-563
================================================================================
[Foo][]

--------------------------------------------------------------------------------

(inline
  (collapsed_reference_link
    (link_text)))

================================================================================
Example 564 - https://github.github.com/gfm/#example-564
================================================================================
[foo]
[]


--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 565 - https://github.github.com/gfm/#example-565
================================================================================
[foo]

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 566 - https://github.github.com/gfm/#example-566
================================================================================
[*foo* bar]

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text
      (emphasis
        (emphasis_delimiter)
        (emphasis_delimiter)))))

================================================================================
Example 568 - https://github.github.com/gfm/#example-568
================================================================================
[[bar [foo]

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 569 - https://github.github.com/gfm/#example-569
================================================================================
[Foo]

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 570 - https://github.github.com/gfm/#example-570
================================================================================
[foo] bar

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 571 - https://github.github.com/gfm/#example-571
================================================================================
\[foo]

--------------------------------------------------------------------------------

(inline
  (backslash_escape))

================================================================================
Example 572 - https://github.github.com/gfm/#example-572
================================================================================
*[foo*]

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 573 - https://github.github.com/gfm/#example-573
================================================================================
[foo][bar]

--------------------------------------------------------------------------------

(inline
  (full_reference_link
    (link_text)
    (link_label)))

================================================================================
Example 574 - https://github.github.com/gfm/#example-574
================================================================================
[foo][]

--------------------------------------------------------------------------------

(inline
  (collapsed_reference_link
    (link_text)))

================================================================================
Example 575 - https://github.github.com/gfm/#example-575
================================================================================
[foo]()

--------------------------------------------------------------------------------

(inline
  (inline_link
    (link_text)))

================================================================================
Example 576 - https://github.github.com/gfm/#example-576
================================================================================
[foo](not a link)

--------------------------------------------------------------------------------

(inline
  (shortcut_link
    (link_text)))

================================================================================
Example 577 - https://github.github.com/gfm/#example-577
================================================================================
[foo][bar][baz]

--------------------------------------------------------------------------------

(inline
  (full_reference_link
    (link_text)
    (link_label))
  (shortcut_link
    (link_text)))

================================================================================
Example 578 - https://github.github.com/gfm/#example-578
================================================================================
[foo][bar][baz]

--------------------------------------------------------------------------------

(inline
  (full_reference_link
    (link_text)
    (link_label))
  (shortcut_link
    (link_text)))

================================================================================
Example 579 - https://github.github.com/gfm/#example-579
================================================================================
[foo][bar][baz]

--------------------------------------------------------------------------------

(inline
  (full_reference_link
    (link_text)
    (link_label))
  (shortcut_link
    (link_text)))

================================================================================
Example 580 - https://github.github.com/gfm/#example-580
================================================================================
![foo](/url "title")

--------------------------------------------------------------------------------

(inline
  (image
    (image_description)
    (link_destination)
    (link_title)))

================================================================================
Example 581 - https://github.github.com/gfm/#example-581
================================================================================
![foo *bar*]

--------------------------------------------------------------------------------

(inline
  (image
    (image_description
      (emphasis
        (emphasis_delimiter)
        (emphasis_delimiter)))))

================================================================================
Example 582 - https://github.github.com/gfm/#example-582
================================================================================
![foo ![bar](/url)](/url2)

--------------------------------------------------------------------------------

(inline
  (image
    (image_description
      (image
        (image_description)
        (link_destination)))
    (link_destination)))

================================================================================
Example 583 - https://github.github.com/gfm/#example-583
================================================================================
![foo [bar](/url)](/url2)

--------------------------------------------------------------------------------

(inline
  (image
    (image_description
      (inline_link
        (link_text)
        (link_destination)))
    (link_destination)))

================================================================================
Example 584 - https://github.github.com/gfm/#example-584
================================================================================
![foo *bar*][]

--------------------------------------------------------------------------------

(inline
  (image
    (image_description
      (emphasis
        (emphasis_delimiter)
        (emphasis_delimiter)))))

================================================================================
Example 585 - https://github.github.com/gfm/#example-585
================================================================================
![foo *bar*][foobar]

--------------------------------------------------------------------------------

(inline
  (image
    (image_description
      (emphasis
        (emphasis_delimiter)
        (emphasis_delimiter)))
    (link_label)))

================================================================================
Example 586 - https://github.github.com/gfm/#example-586
================================================================================
![foo](train.jpg)

--------------------------------------------------------------------------------

(inline
  (image
    (image_description)
    (link_destination)))

================================================================================
Example 587 - https://github.github.com/gfm/#example-587
================================================================================
My ![foo bar](/path/to/train.jpg  "title"   )

--------------------------------------------------------------------------------

(inline
  (image
    (image_description)
    (link_destination)
    (link_title)))

================================================================================
Example 589 - https://github.github.com/gfm/#example-589
================================================================================
![](/url)

--------------------------------------------------------------------------------

(inline
  (image
    (link_destination)))

================================================================================
Example 590 - https://github.github.com/gfm/#example-590
================================================================================
![foo][bar]

--------------------------------------------------------------------------------

(inline
  (image
    (image_description)
    (link_label)))

================================================================================
Example 591 - https://github.github.com/gfm/#example-591
================================================================================
![foo][bar]

--------------------------------------------------------------------------------

(inline
  (image
    (image_description)
    (link_label)))

================================================================================
Example 592 - https://github.github.com/gfm/#example-592
================================================================================
![foo][]

--------------------------------------------------------------------------------

(inline
  (image
    (image_description)))

================================================================================
Example 593 - https://github.github.com/gfm/#example-593
================================================================================
![*foo* bar][]

--------------------------------------------------------------------------------

(inline
  (image
    (image_description
      (emphasis
        (emphasis_delimiter)
        (emphasis_delimiter)))))

================================================================================
Example 594 - https://github.github.com/gfm/#example-594
================================================================================
![Foo][]

--------------------------------------------------------------------------------

(inline
  (image
    (image_description)))

================================================================================
Example 595 - https://github.github.com/gfm/#example-595
================================================================================
![foo]
[]

--------------------------------------------------------------------------------

(inline
  (image
    (image_description)))

================================================================================
Example 596 - https://github.github.com/gfm/#example-596
================================================================================
![foo]

--------------------------------------------------------------------------------

(inline
  (image
    (image_description)))

================================================================================
Example 597 - https://github.github.com/gfm/#example-597
================================================================================
![*foo* bar]

--------------------------------------------------------------------------------

(inline
  (image
    (image_description
      (emphasis
        (emphasis_delimiter)
        (emphasis_delimiter)))))

================================================================================
Example 598 - https://github.github.com/gfm/#example-598
================================================================================
![[foo]]

--------------------------------------------------------------------------------

(inline
  (image
    (image_description
      (shortcut_link
        (link_text)))))

================================================================================
Example 599 - https://github.github.com/gfm/#example-599
================================================================================
![Foo]

--------------------------------------------------------------------------------

(inline
  (image
    (image_description)))

================================================================================
Example 600 - https://github.github.com/gfm/#example-600
================================================================================
!\[foo]

--------------------------------------------------------------------------------

(inline
  (backslash_escape))

================================================================================
Example 601 - https://github.github.com/gfm/#example-601
================================================================================
\![foo]

--------------------------------------------------------------------------------

(inline
  (backslash_escape)
  (shortcut_link
    (link_text)))

================================================================================
Example 602 - https://github.github.com/gfm/#example-602
================================================================================
<http://foo.bar.baz>

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 603 - https://github.github.com/gfm/#example-603
================================================================================
<http://foo.bar.baz/test?q=hello&id=22&boolean>

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 604 - https://github.github.com/gfm/#example-604
================================================================================
<irc://foo.bar:2233/baz>

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 605 - https://github.github.com/gfm/#example-605
================================================================================
<MAILTO:[email protected]>

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 606 - https://github.github.com/gfm/#example-606
================================================================================
<a+b+c:d>

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 607 - https://github.github.com/gfm/#example-607
================================================================================
<made-up-scheme://foo,bar>

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 608 - https://github.github.com/gfm/#example-608
================================================================================
<http://../>

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 609 - https://github.github.com/gfm/#example-609
================================================================================
<localhost:5001/foo>

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 610 - https://github.github.com/gfm/#example-610
================================================================================
<http://foo.bar/baz bim>

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 611 - https://github.github.com/gfm/#example-611
================================================================================
<http://example.com/\[\>

--------------------------------------------------------------------------------

(inline
  (uri_autolink))

================================================================================
Example 612 - https://github.github.com/gfm/#example-612
================================================================================
<[email protected]>

--------------------------------------------------------------------------------

(inline
  (email_autolink))

================================================================================
Example 613 - https://github.github.com/gfm/#example-613
================================================================================
<[email protected]>

--------------------------------------------------------------------------------

(inline
  (email_autolink))

================================================================================
Example 614 - https://github.github.com/gfm/#example-614
================================================================================
<foo\[email protected]>

--------------------------------------------------------------------------------

(inline
  (backslash_escape))

================================================================================
Example 615 - https://github.github.com/gfm/#example-615
================================================================================
<>

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 616 - https://github.github.com/gfm/#example-616
================================================================================
< http://foo.bar >

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 617 - https://github.github.com/gfm/#example-617
================================================================================
<m:abc>

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 618 - https://github.github.com/gfm/#example-618
================================================================================
<foo.bar.baz>

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 619 - https://github.github.com/gfm/#example-619
================================================================================
http://example.com

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 620 - https://github.github.com/gfm/#example-620
================================================================================
[email protected]

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 632 - https://github.github.com/gfm/#example-632
================================================================================
<a><bab><c2c>

--------------------------------------------------------------------------------

(inline
  (html_tag)
  (html_tag)
  (html_tag))

================================================================================
Example 633 - https://github.github.com/gfm/#example-633
================================================================================
<a/><b2/>

--------------------------------------------------------------------------------

(inline
  (html_tag)
  (html_tag))

================================================================================
Example 634 - https://github.github.com/gfm/#example-634
================================================================================
<a  /><b2
data="foo" >

--------------------------------------------------------------------------------

(inline
  (html_tag)
  (html_tag))

================================================================================
Example 636 - https://github.github.com/gfm/#example-636
================================================================================
Foo <responsive-image src="foo.jpg" />

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 637 - https://github.github.com/gfm/#example-637
================================================================================
<33> <__>

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 638 - https://github.github.com/gfm/#example-638
================================================================================
<a h*#ref="hi">

--------------------------------------------------------------------------------

(inline
  (tag))

================================================================================
Example 639 - https://github.github.com/gfm/#example-639
================================================================================
<a href="hi'> <a href=hi'>

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 640 - https://github.github.com/gfm/#example-640
================================================================================
< a><
foo><bar/ >
<foo bar=baz
bim!bop />

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 641 - https://github.github.com/gfm/#example-641
================================================================================
<a href='bar'title=title>

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 642 - https://github.github.com/gfm/#example-642
================================================================================
</a></foo >

--------------------------------------------------------------------------------

(inline
  (html_tag)
  (html_tag))

================================================================================
Example 643 - https://github.github.com/gfm/#example-643
================================================================================
</a href="foo">

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 644 - https://github.github.com/gfm/#example-644
================================================================================
foo <!-- this is a
comment - with hyphen -->

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 645 - https://github.github.com/gfm/#example-645
================================================================================
foo <!-- not a comment -- two hyphens -->

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 646 - https://github.github.com/gfm/#example-646
================================================================================
foo <!--> foo -->
foo <!-- foo--->

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 647 - https://github.github.com/gfm/#example-647
================================================================================
foo <?php echo $a; ?>

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 648 - https://github.github.com/gfm/#example-648
================================================================================
foo <!ELEMENT br EMPTY>

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 649 - https://github.github.com/gfm/#example-649
================================================================================
foo <![CDATA[>&<]]>

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 650 - https://github.github.com/gfm/#example-650
================================================================================
foo <a href="&ouml;">

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 651 - https://github.github.com/gfm/#example-651
================================================================================
foo <a href="\*">

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 652 - https://github.github.com/gfm/#example-652
================================================================================
<a href="\"">

--------------------------------------------------------------------------------

(inline
  (backslash_escape))

================================================================================
Example 654 - https://github.github.com/gfm/#example-654
================================================================================
foo  
baz

--------------------------------------------------------------------------------

(inline
  (hard_line_break))

================================================================================
Example 655 - https://github.github.com/gfm/#example-655
================================================================================
foo\
baz

--------------------------------------------------------------------------------

(inline
  (hard_line_break))

================================================================================
Example 656 - https://github.github.com/gfm/#example-656
================================================================================
foo             
baz

--------------------------------------------------------------------------------

(inline
  (hard_line_break))

================================================================================
Example 657 - https://github.github.com/gfm/#example-657
================================================================================
foo  
     bar

--------------------------------------------------------------------------------

(inline
  (hard_line_break))

================================================================================
Example 658 - https://github.github.com/gfm/#example-658
================================================================================
foo\
     bar

--------------------------------------------------------------------------------

(inline
  (hard_line_break))

================================================================================
Example 659 - https://github.github.com/gfm/#example-659
================================================================================
*foo  
bar*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (hard_line_break)
    (emphasis_delimiter)))

================================================================================
Example 660 - https://github.github.com/gfm/#example-660
================================================================================
*foo\
bar*

--------------------------------------------------------------------------------

(inline
  (emphasis
    (emphasis_delimiter)
    (hard_line_break)
    (emphasis_delimiter)))

================================================================================
Example 661 - https://github.github.com/gfm/#example-661
================================================================================
`code
span`

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 662 - https://github.github.com/gfm/#example-662
================================================================================
`code\
span`

--------------------------------------------------------------------------------

(inline
  (code_span
    (code_span_delimiter)
    (code_span_delimiter)))

================================================================================
Example 663 - https://github.github.com/gfm/#example-663
================================================================================
<a href="foo
bar">

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 664 - https://github.github.com/gfm/#example-664
================================================================================
<a href="foo\
bar">

--------------------------------------------------------------------------------

(inline
  (html_tag))

================================================================================
Example 665 - https://github.github.com/gfm/#example-665
================================================================================
foo\
--------------------------------------------------------------------------------

(inline)

================================================================================
Example 666 - https://github.github.com/gfm/#example-666
================================================================================
foo  
--------------------------------------------------------------------------------

(inline)

================================================================================
Example 669 - https://github.github.com/gfm/#example-669
================================================================================
foo
baz

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 670 - https://github.github.com/gfm/#example-670
================================================================================
foo
 baz

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 671 - https://github.github.com/gfm/#example-671
================================================================================
hello $.;'there

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 672 - https://github.github.com/gfm/#example-672
================================================================================
Foo χρῆν

--------------------------------------------------------------------------------

(inline)

================================================================================
Example 673 - https://github.github.com/gfm/#example-673
================================================================================
Multiple     spaces

--------------------------------------------------------------------------------

(inline)


```
Page 4/8FirstPrevNextLast