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

# Directory Structure

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

# Files

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

```
   1 | ================================================================================
   2 | Example 307 - https://github.github.com/gfm/#example-307
   3 | ================================================================================
   4 | `hi`lo`
   5 | 
   6 | --------------------------------------------------------------------------------
   7 | 
   8 | (inline
   9 |   (code_span
  10 |     (code_span_delimiter)
  11 |     (code_span_delimiter)))
  12 | 
  13 | ================================================================================
  14 | Example 308 - https://github.github.com/gfm/#example-308
  15 | ================================================================================
  16 | \!\"\#\$\%\&\'\(\)\*\+\,\-\.\/\:\;\<\=\>\?\@\[\\\]\^\_\`\{\|\}\~
  17 | 
  18 | --------------------------------------------------------------------------------
  19 | 
  20 | (inline
  21 |   (backslash_escape)
  22 |   (backslash_escape)
  23 |   (backslash_escape)
  24 |   (backslash_escape)
  25 |   (backslash_escape)
  26 |   (backslash_escape)
  27 |   (backslash_escape)
  28 |   (backslash_escape)
  29 |   (backslash_escape)
  30 |   (backslash_escape)
  31 |   (backslash_escape)
  32 |   (backslash_escape)
  33 |   (backslash_escape)
  34 |   (backslash_escape)
  35 |   (backslash_escape)
  36 |   (backslash_escape)
  37 |   (backslash_escape)
  38 |   (backslash_escape)
  39 |   (backslash_escape)
  40 |   (backslash_escape)
  41 |   (backslash_escape)
  42 |   (backslash_escape)
  43 |   (backslash_escape)
  44 |   (backslash_escape)
  45 |   (backslash_escape)
  46 |   (backslash_escape)
  47 |   (backslash_escape)
  48 |   (backslash_escape)
  49 |   (backslash_escape)
  50 |   (backslash_escape)
  51 |   (backslash_escape)
  52 |   (backslash_escape))
  53 | 
  54 | ================================================================================
  55 | Example 309 - https://github.github.com/gfm/#example-309
  56 | ================================================================================
  57 | \	\A\a\ \3\φ\«
  58 | 
  59 | --------------------------------------------------------------------------------
  60 | 
  61 | (inline)
  62 | 
  63 | ================================================================================
  64 | Example 310 - https://github.github.com/gfm/#example-310
  65 | ================================================================================
  66 | \*not emphasized*
  67 | \<br/> not a tag
  68 | \[not a link](/foo)
  69 | \`not code`
  70 | 1\. not a list
  71 | \* not a list
  72 | \# not a heading
  73 | \[foo]: /url "not a reference"
  74 | \&ouml; not a character entity
  75 | 
  76 | --------------------------------------------------------------------------------
  77 | 
  78 | (inline
  79 |   (backslash_escape)
  80 |   (backslash_escape)
  81 |   (backslash_escape)
  82 |   (backslash_escape)
  83 |   (backslash_escape)
  84 |   (backslash_escape)
  85 |   (backslash_escape)
  86 |   (backslash_escape)
  87 |   (backslash_escape))
  88 | 
  89 | ================================================================================
  90 | Example 311 - https://github.github.com/gfm/#example-311
  91 | ================================================================================
  92 | \\*emphasis*
  93 | 
  94 | --------------------------------------------------------------------------------
  95 | 
  96 | (inline
  97 |   (backslash_escape)
  98 |   (emphasis
  99 |     (emphasis_delimiter)
 100 |     (emphasis_delimiter)))
 101 | 
 102 | ================================================================================
 103 | Example 312 - https://github.github.com/gfm/#example-312
 104 | ================================================================================
 105 | foo\
 106 | bar
 107 | 
 108 | --------------------------------------------------------------------------------
 109 | 
 110 | (inline
 111 |   (hard_line_break))
 112 | 
 113 | ================================================================================
 114 | Example 313 - https://github.github.com/gfm/#example-313
 115 | ================================================================================
 116 | `` \[\` ``
 117 | 
 118 | --------------------------------------------------------------------------------
 119 | 
 120 | (inline
 121 |   (code_span
 122 |     (code_span_delimiter)
 123 |     (code_span_delimiter)))
 124 | 
 125 | ================================================================================
 126 | Example 316 - https://github.github.com/gfm/#example-316
 127 | ================================================================================
 128 | <http://example.com?find=\*>
 129 | 
 130 | --------------------------------------------------------------------------------
 131 | 
 132 | (inline
 133 |   (uri_autolink))
 134 | 
 135 | ================================================================================
 136 | Example 317 - https://github.github.com/gfm/#example-317
 137 | ================================================================================
 138 | <a href="/bar\/)">
 139 | 
 140 | --------------------------------------------------------------------------------
 141 | 
 142 | (inline
 143 |   (html_tag))
 144 | 
 145 | ================================================================================
 146 | Example 318 - https://github.github.com/gfm/#example-318
 147 | ================================================================================
 148 | [foo](/bar\* "ti\*tle")
 149 | 
 150 | --------------------------------------------------------------------------------
 151 | 
 152 | (inline
 153 |   (inline_link
 154 |     (link_text)
 155 |     (link_destination
 156 |       (backslash_escape))
 157 |     (link_title
 158 |       (backslash_escape))))
 159 | 
 160 | ================================================================================
 161 | Example 321 - https://github.github.com/gfm/#example-321
 162 | ================================================================================
 163 | &nbsp; &amp; &copy; &AElig; &Dcaron;
 164 | &frac34; &HilbertSpace; &DifferentialD;
 165 | &ClockwiseContourIntegral; &ngE;
 166 | 
 167 | --------------------------------------------------------------------------------
 168 | 
 169 | (inline
 170 |   (entity_reference)
 171 |   (entity_reference)
 172 |   (entity_reference)
 173 |   (entity_reference)
 174 |   (entity_reference)
 175 |   (entity_reference)
 176 |   (entity_reference)
 177 |   (entity_reference)
 178 |   (entity_reference)
 179 |   (entity_reference))
 180 | 
 181 | ================================================================================
 182 | Example 322 - https://github.github.com/gfm/#example-322
 183 | ================================================================================
 184 | &#35; &#1234; &#992; &#0;
 185 | 
 186 | --------------------------------------------------------------------------------
 187 | 
 188 | (inline
 189 |   (numeric_character_reference)
 190 |   (numeric_character_reference)
 191 |   (numeric_character_reference)
 192 |   (numeric_character_reference))
 193 | 
 194 | ================================================================================
 195 | Example 323 - https://github.github.com/gfm/#example-323
 196 | ================================================================================
 197 | &#X22; &#XD06; &#xcab;
 198 | 
 199 | --------------------------------------------------------------------------------
 200 | 
 201 | (inline
 202 |   (numeric_character_reference)
 203 |   (numeric_character_reference)
 204 |   (numeric_character_reference))
 205 | 
 206 | ================================================================================
 207 | Example 324 - https://github.github.com/gfm/#example-324
 208 | ================================================================================
 209 | &nbsp &x; &#; &#x;
 210 | &#87654321;
 211 | &#abcdef0;
 212 | &ThisIsNotDefined; &hi?;
 213 | 
 214 | --------------------------------------------------------------------------------
 215 | 
 216 | (inline
 217 |   (tag)
 218 |   (tag))
 219 | 
 220 | ================================================================================
 221 | Example 325 - https://github.github.com/gfm/#example-325
 222 | ================================================================================
 223 | &copy
 224 | 
 225 | --------------------------------------------------------------------------------
 226 | 
 227 | (inline)
 228 | 
 229 | ================================================================================
 230 | Example 326 - https://github.github.com/gfm/#example-326
 231 | ================================================================================
 232 | &MadeUpEntity;
 233 | 
 234 | --------------------------------------------------------------------------------
 235 | 
 236 | (inline)
 237 | 
 238 | ================================================================================
 239 | Example 327 - https://github.github.com/gfm/#example-327
 240 | ================================================================================
 241 | <a href="&ouml;&ouml;.html">
 242 | 
 243 | --------------------------------------------------------------------------------
 244 | 
 245 | (inline
 246 |   (html_tag))
 247 | 
 248 | ================================================================================
 249 | Example 328 - https://github.github.com/gfm/#example-328
 250 | ================================================================================
 251 | [foo](/f&ouml;&ouml; "f&ouml;&ouml;")
 252 | 
 253 | --------------------------------------------------------------------------------
 254 | 
 255 | (inline
 256 |   (inline_link
 257 |     (link_text)
 258 |     (link_destination
 259 |       (entity_reference)
 260 |       (entity_reference))
 261 |     (link_title
 262 |       (entity_reference)
 263 |       (entity_reference))))
 264 | 
 265 | ================================================================================
 266 | Example 331 - https://github.github.com/gfm/#example-331
 267 | ================================================================================
 268 | `f&ouml;&ouml;`
 269 | 
 270 | --------------------------------------------------------------------------------
 271 | 
 272 | (inline
 273 |   (code_span
 274 |     (code_span_delimiter)
 275 |     (code_span_delimiter)))
 276 | 
 277 | ================================================================================
 278 | Example 333 - https://github.github.com/gfm/#example-333
 279 | ================================================================================
 280 | &#42;foo&#42;
 281 | *foo*
 282 | 
 283 | --------------------------------------------------------------------------------
 284 | 
 285 | (inline
 286 |   (numeric_character_reference)
 287 |   (numeric_character_reference)
 288 |   (emphasis
 289 |     (emphasis_delimiter)
 290 |     (emphasis_delimiter)))
 291 | 
 292 | ================================================================================
 293 | Example 335 - https://github.github.com/gfm/#example-335
 294 | ================================================================================
 295 | foo&#10;&#10;bar
 296 | 
 297 | --------------------------------------------------------------------------------
 298 | 
 299 | (inline
 300 |   (numeric_character_reference)
 301 |   (numeric_character_reference))
 302 | 
 303 | ================================================================================
 304 | Example 336 - https://github.github.com/gfm/#example-336
 305 | ================================================================================
 306 | &#9;foo
 307 | 
 308 | --------------------------------------------------------------------------------
 309 | 
 310 | (inline
 311 |   (numeric_character_reference))
 312 | 
 313 | ================================================================================
 314 | Example 337 - https://github.github.com/gfm/#example-337
 315 | ================================================================================
 316 | [a](url &quot;tit&quot;)
 317 | 
 318 | --------------------------------------------------------------------------------
 319 | 
 320 | (inline
 321 |   (shortcut_link
 322 |     (link_text))
 323 |   (entity_reference)
 324 |   (entity_reference))
 325 | 
 326 | ================================================================================
 327 | Example 338 - https://github.github.com/gfm/#example-338
 328 | ================================================================================
 329 | `foo`
 330 | 
 331 | --------------------------------------------------------------------------------
 332 | 
 333 | (inline
 334 |   (code_span
 335 |     (code_span_delimiter)
 336 |     (code_span_delimiter)))
 337 | 
 338 | ================================================================================
 339 | Example 339 - https://github.github.com/gfm/#example-339
 340 | ================================================================================
 341 | `` foo ` bar ``
 342 | 
 343 | --------------------------------------------------------------------------------
 344 | 
 345 | (inline
 346 |   (code_span
 347 |     (code_span_delimiter)
 348 |     (code_span_delimiter)))
 349 | 
 350 | ================================================================================
 351 | Example 340 - https://github.github.com/gfm/#example-340
 352 | ================================================================================
 353 | ` `` `
 354 | 
 355 | --------------------------------------------------------------------------------
 356 | 
 357 | (inline
 358 |   (code_span
 359 |     (code_span_delimiter)
 360 |     (code_span_delimiter)))
 361 | 
 362 | ================================================================================
 363 | Example 341 - https://github.github.com/gfm/#example-341
 364 | ================================================================================
 365 | `  ``  `
 366 | 
 367 | --------------------------------------------------------------------------------
 368 | 
 369 | (inline
 370 |   (code_span
 371 |     (code_span_delimiter)
 372 |     (code_span_delimiter)))
 373 | 
 374 | ================================================================================
 375 | Example 342 - https://github.github.com/gfm/#example-342
 376 | ================================================================================
 377 | ` a`
 378 | 
 379 | --------------------------------------------------------------------------------
 380 | 
 381 | (inline
 382 |   (code_span
 383 |     (code_span_delimiter)
 384 |     (code_span_delimiter)))
 385 | 
 386 | ================================================================================
 387 | Example 343 - https://github.github.com/gfm/#example-343
 388 | ================================================================================
 389 | ` b `
 390 | 
 391 | --------------------------------------------------------------------------------
 392 | 
 393 | (inline
 394 |   (code_span
 395 |     (code_span_delimiter)
 396 |     (code_span_delimiter)))
 397 | 
 398 | ================================================================================
 399 | Example 344 - https://github.github.com/gfm/#example-344
 400 | ================================================================================
 401 | ` `
 402 | `  `
 403 | 
 404 | --------------------------------------------------------------------------------
 405 | 
 406 | (inline
 407 |   (code_span
 408 |     (code_span_delimiter)
 409 |     (code_span_delimiter))
 410 |   (code_span
 411 |     (code_span_delimiter)
 412 |     (code_span_delimiter)))
 413 | 
 414 | ================================================================================
 415 | Example 345 - https://github.github.com/gfm/#example-345
 416 | ================================================================================
 417 | ``
 418 | foo
 419 | bar
 420 | baz
 421 | ``
 422 | 
 423 | --------------------------------------------------------------------------------
 424 | 
 425 | (inline
 426 |   (code_span
 427 |     (code_span_delimiter)
 428 |     (code_span_delimiter)))
 429 | 
 430 | ================================================================================
 431 | Example 346 - https://github.github.com/gfm/#example-346
 432 | ================================================================================
 433 | ``
 434 | foo
 435 | ``
 436 | 
 437 | --------------------------------------------------------------------------------
 438 | 
 439 | (inline
 440 |   (code_span
 441 |     (code_span_delimiter)
 442 |     (code_span_delimiter)))
 443 | 
 444 | ================================================================================
 445 | Example 347 - https://github.github.com/gfm/#example-347
 446 | ================================================================================
 447 | `foo   bar
 448 | baz`
 449 | 
 450 | --------------------------------------------------------------------------------
 451 | 
 452 | (inline
 453 |   (code_span
 454 |     (code_span_delimiter)
 455 |     (code_span_delimiter)))
 456 | 
 457 | ================================================================================
 458 | Example 348 - https://github.github.com/gfm/#example-348
 459 | ================================================================================
 460 | `foo\`bar`
 461 | 
 462 | --------------------------------------------------------------------------------
 463 | 
 464 | (inline
 465 |   (code_span
 466 |     (code_span_delimiter)
 467 |     (code_span_delimiter)))
 468 | 
 469 | ================================================================================
 470 | Example 349 - https://github.github.com/gfm/#example-349
 471 | ================================================================================
 472 | ``foo`bar``
 473 | 
 474 | --------------------------------------------------------------------------------
 475 | 
 476 | (inline
 477 |   (code_span
 478 |     (code_span_delimiter)
 479 |     (code_span_delimiter)))
 480 | 
 481 | ================================================================================
 482 | Example 350 - https://github.github.com/gfm/#example-350
 483 | ================================================================================
 484 | ` foo `` bar `
 485 | 
 486 | --------------------------------------------------------------------------------
 487 | 
 488 | (inline
 489 |   (code_span
 490 |     (code_span_delimiter)
 491 |     (code_span_delimiter)))
 492 | 
 493 | ================================================================================
 494 | Example 351 - https://github.github.com/gfm/#example-351
 495 | ================================================================================
 496 | *foo`*`
 497 | 
 498 | --------------------------------------------------------------------------------
 499 | 
 500 | (inline
 501 |   (code_span
 502 |     (code_span_delimiter)
 503 |     (code_span_delimiter)))
 504 | 
 505 | ================================================================================
 506 | Example 352 - https://github.github.com/gfm/#example-352
 507 | ================================================================================
 508 | [not a `link](/foo`)
 509 | 
 510 | --------------------------------------------------------------------------------
 511 | 
 512 | (inline
 513 |   (code_span
 514 |     (code_span_delimiter)
 515 |     (code_span_delimiter)))
 516 | 
 517 | ================================================================================
 518 | Example 353 - https://github.github.com/gfm/#example-353
 519 | ================================================================================
 520 | `<a href="`">`
 521 | 
 522 | --------------------------------------------------------------------------------
 523 | 
 524 | (inline
 525 |   (code_span
 526 |     (code_span_delimiter)
 527 |     (code_span_delimiter)))
 528 | 
 529 | ================================================================================
 530 | Example 354 - https://github.github.com/gfm/#example-354
 531 | ================================================================================
 532 | <a href="`">`
 533 | 
 534 | --------------------------------------------------------------------------------
 535 | 
 536 | (inline
 537 |   (html_tag))
 538 | 
 539 | 
 540 | ================================================================================
 541 | Example 356 - https://github.github.com/gfm/#example-356
 542 | ================================================================================
 543 | <http://foo.bar.`baz>`
 544 | 
 545 | --------------------------------------------------------------------------------
 546 | 
 547 | (inline
 548 |   (uri_autolink))
 549 | 
 550 | ================================================================================
 551 | Example 357 - https://github.github.com/gfm/#example-357
 552 | ================================================================================
 553 | ```foo``
 554 | 
 555 | --------------------------------------------------------------------------------
 556 | 
 557 | (inline)
 558 | 
 559 | ================================================================================
 560 | Example 358 - https://github.github.com/gfm/#example-358
 561 | ================================================================================
 562 | `foo
 563 | 
 564 | --------------------------------------------------------------------------------
 565 | 
 566 | (inline)
 567 | 
 568 | ================================================================================
 569 | Example 359 - https://github.github.com/gfm/#example-359
 570 | ================================================================================
 571 | `foo``bar``
 572 | 
 573 | --------------------------------------------------------------------------------
 574 | 
 575 | (inline
 576 |   (code_span
 577 |     (code_span_delimiter)
 578 |     (code_span_delimiter)))
 579 | 
 580 | ================================================================================
 581 | Example 360 - https://github.github.com/gfm/#example-360
 582 | ================================================================================
 583 | *foo bar*
 584 | 
 585 | --------------------------------------------------------------------------------
 586 | 
 587 | (inline
 588 |   (emphasis
 589 |     (emphasis_delimiter)
 590 |     (emphasis_delimiter)))
 591 | 
 592 | ================================================================================
 593 | Example 361 - https://github.github.com/gfm/#example-361
 594 | ================================================================================
 595 | a * foo bar*
 596 | 
 597 | --------------------------------------------------------------------------------
 598 | 
 599 | (inline)
 600 | 
 601 | ================================================================================
 602 | Example 362 - https://github.github.com/gfm/#example-362
 603 | ================================================================================
 604 | a*"foo"*
 605 | 
 606 | --------------------------------------------------------------------------------
 607 | 
 608 | (inline)
 609 | 
 610 | ================================================================================
 611 | Example 364 - https://github.github.com/gfm/#example-364
 612 | ================================================================================
 613 | foo*bar*
 614 | 
 615 | --------------------------------------------------------------------------------
 616 | 
 617 | (inline
 618 |   (emphasis
 619 |     (emphasis_delimiter)
 620 |     (emphasis_delimiter)))
 621 | 
 622 | ================================================================================
 623 | Example 365 - https://github.github.com/gfm/#example-365
 624 | ================================================================================
 625 | 5*6*78
 626 | 
 627 | --------------------------------------------------------------------------------
 628 | 
 629 | (inline
 630 |   (emphasis
 631 |     (emphasis_delimiter)
 632 |     (emphasis_delimiter)))
 633 | 
 634 | ================================================================================
 635 | Example 366 - https://github.github.com/gfm/#example-366
 636 | ================================================================================
 637 | _foo bar_
 638 | 
 639 | --------------------------------------------------------------------------------
 640 | 
 641 | (inline
 642 |   (emphasis
 643 |     (emphasis_delimiter)
 644 |     (emphasis_delimiter)))
 645 | 
 646 | ================================================================================
 647 | Example 367 - https://github.github.com/gfm/#example-367
 648 | ================================================================================
 649 | _ foo bar_
 650 | 
 651 | --------------------------------------------------------------------------------
 652 | 
 653 | (inline)
 654 | 
 655 | ================================================================================
 656 | Example 368 - https://github.github.com/gfm/#example-368
 657 | ================================================================================
 658 | a_"foo"_
 659 | 
 660 | --------------------------------------------------------------------------------
 661 | 
 662 | (inline)
 663 | 
 664 | ================================================================================
 665 | Example 369 - https://github.github.com/gfm/#example-369
 666 | ================================================================================
 667 | foo_bar_
 668 | 
 669 | --------------------------------------------------------------------------------
 670 | 
 671 | (inline)
 672 | 
 673 | ================================================================================
 674 | Example 370 - https://github.github.com/gfm/#example-370
 675 | ================================================================================
 676 | 5_6_78
 677 | 
 678 | --------------------------------------------------------------------------------
 679 | 
 680 | (inline)
 681 | 
 682 | ================================================================================
 683 | Example 371 - https://github.github.com/gfm/#example-371
 684 | ================================================================================
 685 | пристаням_стремятся_
 686 | 
 687 | --------------------------------------------------------------------------------
 688 | 
 689 | (inline)
 690 | 
 691 | ================================================================================
 692 | Example 372 - https://github.github.com/gfm/#example-372
 693 | ================================================================================
 694 | aa_"bb"_cc
 695 | 
 696 | --------------------------------------------------------------------------------
 697 | 
 698 | (inline)
 699 | 
 700 | ================================================================================
 701 | Example 373 - https://github.github.com/gfm/#example-373
 702 | ================================================================================
 703 | foo-_(bar)_
 704 | 
 705 | --------------------------------------------------------------------------------
 706 | 
 707 | (inline
 708 |   (emphasis
 709 |     (emphasis_delimiter)
 710 |     (emphasis_delimiter)))
 711 | 
 712 | ================================================================================
 713 | Example 374 - https://github.github.com/gfm/#example-374
 714 | ================================================================================
 715 | _foo*
 716 | 
 717 | --------------------------------------------------------------------------------
 718 | 
 719 | (inline)
 720 | 
 721 | ================================================================================
 722 | Example 375 - https://github.github.com/gfm/#example-375
 723 | ================================================================================
 724 | *foo bar *
 725 | 
 726 | --------------------------------------------------------------------------------
 727 | 
 728 | (inline)
 729 | 
 730 | ================================================================================
 731 | Example 376 - https://github.github.com/gfm/#example-376
 732 | ================================================================================
 733 | *foo bar
 734 | *
 735 | 
 736 | --------------------------------------------------------------------------------
 737 | 
 738 | (inline)
 739 | 
 740 | ================================================================================
 741 | Example 377 - https://github.github.com/gfm/#example-377
 742 | ================================================================================
 743 | *(*foo)
 744 | 
 745 | --------------------------------------------------------------------------------
 746 | 
 747 | (inline)
 748 | 
 749 | ================================================================================
 750 | Example 378 - https://github.github.com/gfm/#example-378
 751 | ================================================================================
 752 | *(*foo*)*
 753 | 
 754 | --------------------------------------------------------------------------------
 755 | 
 756 | (inline
 757 |   (emphasis
 758 |     (emphasis_delimiter)
 759 |     (emphasis
 760 |       (emphasis_delimiter)
 761 |       (emphasis_delimiter))
 762 |     (emphasis_delimiter)))
 763 | 
 764 | ================================================================================
 765 | Example 379 - https://github.github.com/gfm/#example-379
 766 | ================================================================================
 767 | *foo*bar
 768 | 
 769 | --------------------------------------------------------------------------------
 770 | 
 771 | (inline
 772 |   (emphasis
 773 |     (emphasis_delimiter)
 774 |     (emphasis_delimiter)))
 775 | 
 776 | ================================================================================
 777 | Example 380 - https://github.github.com/gfm/#example-380
 778 | ================================================================================
 779 | _foo bar _
 780 | 
 781 | --------------------------------------------------------------------------------
 782 | 
 783 | (inline)
 784 | 
 785 | ================================================================================
 786 | Example 381 - https://github.github.com/gfm/#example-381
 787 | ================================================================================
 788 | _(_foo)
 789 | 
 790 | --------------------------------------------------------------------------------
 791 | 
 792 | (inline)
 793 | 
 794 | ================================================================================
 795 | Example 382 - https://github.github.com/gfm/#example-382
 796 | ================================================================================
 797 | _(_foo_)_
 798 | 
 799 | --------------------------------------------------------------------------------
 800 | 
 801 | (inline
 802 |   (emphasis
 803 |     (emphasis_delimiter)
 804 |     (emphasis
 805 |       (emphasis_delimiter)
 806 |       (emphasis_delimiter))
 807 |     (emphasis_delimiter)))
 808 | 
 809 | ================================================================================
 810 | Example 383 - https://github.github.com/gfm/#example-383
 811 | ================================================================================
 812 | _foo_bar
 813 | 
 814 | --------------------------------------------------------------------------------
 815 | 
 816 | (inline)
 817 | 
 818 | ================================================================================
 819 | Example 384 - https://github.github.com/gfm/#example-384
 820 | ================================================================================
 821 | _пристаням_стремятся
 822 | 
 823 | --------------------------------------------------------------------------------
 824 | 
 825 | (inline)
 826 | 
 827 | ================================================================================
 828 | Example 385 - https://github.github.com/gfm/#example-385
 829 | ================================================================================
 830 | _foo_bar_baz_
 831 | 
 832 | --------------------------------------------------------------------------------
 833 | 
 834 | (inline
 835 |   (emphasis
 836 |     (emphasis_delimiter)
 837 |     (emphasis_delimiter)))
 838 | 
 839 | ================================================================================
 840 | Example 386 - https://github.github.com/gfm/#example-386
 841 | ================================================================================
 842 | _(bar)_.
 843 | 
 844 | --------------------------------------------------------------------------------
 845 | 
 846 | (inline
 847 |   (emphasis
 848 |     (emphasis_delimiter)
 849 |     (emphasis_delimiter)))
 850 | 
 851 | ================================================================================
 852 | Example 387 - https://github.github.com/gfm/#example-387
 853 | ================================================================================
 854 | **foo bar**
 855 | 
 856 | --------------------------------------------------------------------------------
 857 | 
 858 | (inline
 859 |   (strong_emphasis
 860 |     (emphasis_delimiter)
 861 |     (emphasis_delimiter)
 862 |     (emphasis_delimiter)
 863 |     (emphasis_delimiter)))
 864 | 
 865 | ================================================================================
 866 | Example 388 - https://github.github.com/gfm/#example-388
 867 | ================================================================================
 868 | ** foo bar**
 869 | 
 870 | --------------------------------------------------------------------------------
 871 | 
 872 | (inline)
 873 | 
 874 | ================================================================================
 875 | Example 390 - https://github.github.com/gfm/#example-390
 876 | ================================================================================
 877 | foo**bar**
 878 | 
 879 | --------------------------------------------------------------------------------
 880 | 
 881 | (inline
 882 |   (strong_emphasis
 883 |     (emphasis_delimiter)
 884 |     (emphasis_delimiter)
 885 |     (emphasis_delimiter)
 886 |     (emphasis_delimiter)))
 887 | 
 888 | ================================================================================
 889 | Example 391 - https://github.github.com/gfm/#example-391
 890 | ================================================================================
 891 | __foo bar__
 892 | 
 893 | --------------------------------------------------------------------------------
 894 | 
 895 | (inline
 896 |   (strong_emphasis
 897 |     (emphasis_delimiter)
 898 |     (emphasis_delimiter)
 899 |     (emphasis_delimiter)
 900 |     (emphasis_delimiter)))
 901 | 
 902 | ================================================================================
 903 | Example 392 - https://github.github.com/gfm/#example-392
 904 | ================================================================================
 905 | __ foo bar__
 906 | 
 907 | --------------------------------------------------------------------------------
 908 | 
 909 | (inline)
 910 | 
 911 | ================================================================================
 912 | Example 393 - https://github.github.com/gfm/#example-393
 913 | ================================================================================
 914 | __
 915 | foo bar__
 916 | 
 917 | --------------------------------------------------------------------------------
 918 | 
 919 | (inline)
 920 | 
 921 | ================================================================================
 922 | Example 395 - https://github.github.com/gfm/#example-395
 923 | ================================================================================
 924 | foo__bar__
 925 | 
 926 | --------------------------------------------------------------------------------
 927 | 
 928 | (inline)
 929 | 
 930 | ================================================================================
 931 | Example 396 - https://github.github.com/gfm/#example-396
 932 | ================================================================================
 933 | 5__6__78
 934 | 
 935 | ================================================================================
 936 | Example 397 - https://github.github.com/gfm/#example-397
 937 | ================================================================================
 938 | пристаням__стремятся__
 939 | 
 940 | --------------------------------------------------------------------------------
 941 | 
 942 | (inline)
 943 | 
 944 | --------------------------------------------------------------------------------
 945 | 
 946 | (inline)
 947 | 
 948 | ================================================================================
 949 | Example 398 - https://github.github.com/gfm/#example-398
 950 | ================================================================================
 951 | __foo, __bar__, baz__
 952 | 
 953 | --------------------------------------------------------------------------------
 954 | 
 955 | (inline
 956 |   (strong_emphasis
 957 |     (emphasis_delimiter)
 958 |     (emphasis_delimiter)
 959 |     (strong_emphasis
 960 |       (emphasis_delimiter)
 961 |       (emphasis_delimiter)
 962 |       (emphasis_delimiter)
 963 |       (emphasis_delimiter))
 964 |     (emphasis_delimiter)
 965 |     (emphasis_delimiter)))
 966 | 
 967 | ================================================================================
 968 | Example 399 - https://github.github.com/gfm/#example-399
 969 | ================================================================================
 970 | foo-__(bar)__
 971 | 
 972 | --------------------------------------------------------------------------------
 973 | 
 974 | (inline
 975 |   (strong_emphasis
 976 |     (emphasis_delimiter)
 977 |     (emphasis_delimiter)
 978 |     (emphasis_delimiter)
 979 |     (emphasis_delimiter)))
 980 | 
 981 | ================================================================================
 982 | Example 402 - https://github.github.com/gfm/#example-402
 983 | ================================================================================
 984 | *(**foo**)*
 985 | 
 986 | --------------------------------------------------------------------------------
 987 | 
 988 | (inline
 989 |   (emphasis
 990 |     (emphasis_delimiter)
 991 |     (strong_emphasis
 992 |       (emphasis_delimiter)
 993 |       (emphasis_delimiter)
 994 |       (emphasis_delimiter)
 995 |       (emphasis_delimiter))
 996 |     (emphasis_delimiter)))
 997 | 
 998 | ================================================================================
 999 | Example 403 - https://github.github.com/gfm/#example-403
1000 | ================================================================================
1001 | **Gomphocarpus (*Gomphocarpus physocarpus*, syn.
1002 | *Asclepias physocarpa*)**
1003 | 
1004 | --------------------------------------------------------------------------------
1005 | 
1006 | (inline
1007 |   (strong_emphasis
1008 |     (emphasis_delimiter)
1009 |     (emphasis_delimiter)
1010 |     (emphasis
1011 |       (emphasis_delimiter)
1012 |       (emphasis_delimiter))
1013 |     (emphasis
1014 |       (emphasis_delimiter)
1015 |       (emphasis_delimiter))
1016 |     (emphasis_delimiter)
1017 |     (emphasis_delimiter)))
1018 | 
1019 | ================================================================================
1020 | Example 404 - https://github.github.com/gfm/#example-404
1021 | ================================================================================
1022 | **foo "*bar*" foo**
1023 | 
1024 | --------------------------------------------------------------------------------
1025 | 
1026 | (inline
1027 |   (strong_emphasis
1028 |     (emphasis_delimiter)
1029 |     (emphasis_delimiter)
1030 |     (emphasis
1031 |       (emphasis_delimiter)
1032 |       (emphasis_delimiter))
1033 |     (emphasis_delimiter)
1034 |     (emphasis_delimiter)))
1035 | 
1036 | ================================================================================
1037 | Example 405 - https://github.github.com/gfm/#example-405
1038 | ================================================================================
1039 | **foo**bar
1040 | 
1041 | --------------------------------------------------------------------------------
1042 | 
1043 | (inline
1044 |   (strong_emphasis
1045 |     (emphasis_delimiter)
1046 |     (emphasis_delimiter)
1047 |     (emphasis_delimiter)
1048 |     (emphasis_delimiter)))
1049 | 
1050 | ================================================================================
1051 | Example 408 - https://github.github.com/gfm/#example-408
1052 | ================================================================================
1053 | _(__foo__)_
1054 | 
1055 | --------------------------------------------------------------------------------
1056 | 
1057 | (inline
1058 |   (emphasis
1059 |     (emphasis_delimiter)
1060 |     (strong_emphasis
1061 |       (emphasis_delimiter)
1062 |       (emphasis_delimiter)
1063 |       (emphasis_delimiter)
1064 |       (emphasis_delimiter))
1065 |     (emphasis_delimiter)))
1066 | 
1067 | ================================================================================
1068 | Example 409 - https://github.github.com/gfm/#example-409
1069 | ================================================================================
1070 | __foo__bar
1071 | 
1072 | --------------------------------------------------------------------------------
1073 | 
1074 | (inline)
1075 | 
1076 | ================================================================================
1077 | Example 410 - https://github.github.com/gfm/#example-410
1078 | ================================================================================
1079 | __пристаням__стремятся
1080 | 
1081 | --------------------------------------------------------------------------------
1082 | 
1083 | (inline)
1084 | 
1085 | ================================================================================
1086 | Example 412 - https://github.github.com/gfm/#example-412
1087 | ================================================================================
1088 | __(bar)__.
1089 | 
1090 | --------------------------------------------------------------------------------
1091 | 
1092 | (inline
1093 |   (strong_emphasis
1094 |     (emphasis_delimiter)
1095 |     (emphasis_delimiter)
1096 |     (emphasis_delimiter)
1097 |     (emphasis_delimiter)))
1098 | 
1099 | ================================================================================
1100 | Example 413 - https://github.github.com/gfm/#example-413
1101 | ================================================================================
1102 | *foo [bar](/url)*
1103 | 
1104 | --------------------------------------------------------------------------------
1105 | 
1106 | (inline
1107 |   (emphasis
1108 |     (emphasis_delimiter)
1109 |     (inline_link
1110 |       (link_text)
1111 |       (link_destination))
1112 |     (emphasis_delimiter)))
1113 | 
1114 | ================================================================================
1115 | Example 414 - https://github.github.com/gfm/#example-414
1116 | ================================================================================
1117 | *foo
1118 | bar*
1119 | 
1120 | --------------------------------------------------------------------------------
1121 | 
1122 | (inline
1123 |   (emphasis
1124 |     (emphasis_delimiter)
1125 |     (emphasis_delimiter)))
1126 | 
1127 | ================================================================================
1128 | Example 415 - https://github.github.com/gfm/#example-415
1129 | ================================================================================
1130 | _foo __bar__ baz_
1131 | 
1132 | --------------------------------------------------------------------------------
1133 | 
1134 | (inline
1135 |   (emphasis
1136 |     (emphasis_delimiter)
1137 |     (strong_emphasis
1138 |       (emphasis_delimiter)
1139 |       (emphasis_delimiter)
1140 |       (emphasis_delimiter)
1141 |       (emphasis_delimiter))
1142 |     (emphasis_delimiter)))
1143 | 
1144 | ================================================================================
1145 | Example 416 - https://github.github.com/gfm/#example-416
1146 | ================================================================================
1147 | _foo _bar_ baz_
1148 | 
1149 | --------------------------------------------------------------------------------
1150 | 
1151 | (inline
1152 |   (emphasis
1153 |     (emphasis_delimiter)
1154 |     (emphasis
1155 |       (emphasis_delimiter)
1156 |       (emphasis_delimiter))
1157 |     (emphasis_delimiter)))
1158 | 
1159 | ================================================================================
1160 | Example 417 - https://github.github.com/gfm/#example-417
1161 | ================================================================================
1162 | __foo_ bar_
1163 | 
1164 | --------------------------------------------------------------------------------
1165 | 
1166 | (inline
1167 |   (emphasis
1168 |     (emphasis_delimiter)
1169 |     (emphasis
1170 |       (emphasis_delimiter)
1171 |       (emphasis_delimiter))
1172 |     (emphasis_delimiter)))
1173 | 
1174 | ================================================================================
1175 | Example 418 - https://github.github.com/gfm/#example-418
1176 | ================================================================================
1177 | *foo *bar**
1178 | 
1179 | --------------------------------------------------------------------------------
1180 | 
1181 | (inline
1182 |   (emphasis
1183 |     (emphasis_delimiter)
1184 |     (emphasis
1185 |       (emphasis_delimiter)
1186 |       (emphasis_delimiter))
1187 |     (emphasis_delimiter)))
1188 | 
1189 | ================================================================================
1190 | Example 419 - https://github.github.com/gfm/#example-419
1191 | ================================================================================
1192 | *foo **bar** baz*
1193 | 
1194 | --------------------------------------------------------------------------------
1195 | 
1196 | (inline
1197 |   (emphasis
1198 |     (emphasis_delimiter)
1199 |     (strong_emphasis
1200 |       (emphasis_delimiter)
1201 |       (emphasis_delimiter)
1202 |       (emphasis_delimiter)
1203 |       (emphasis_delimiter))
1204 |     (emphasis_delimiter)))
1205 | 
1206 | ================================================================================
1207 | Example 422 - https://github.github.com/gfm/#example-422
1208 | ================================================================================
1209 | ***foo** bar*
1210 | 
1211 | --------------------------------------------------------------------------------
1212 | 
1213 | (inline
1214 |   (emphasis
1215 |     (emphasis_delimiter)
1216 |     (strong_emphasis
1217 |       (emphasis_delimiter)
1218 |       (emphasis_delimiter)
1219 |       (emphasis_delimiter)
1220 |       (emphasis_delimiter))
1221 |     (emphasis_delimiter)))
1222 | 
1223 | ================================================================================
1224 | Example 423 - https://github.github.com/gfm/#example-423
1225 | ================================================================================
1226 | *foo **bar***
1227 | 
1228 | --------------------------------------------------------------------------------
1229 | 
1230 | (inline
1231 |   (emphasis
1232 |     (emphasis_delimiter)
1233 |     (strong_emphasis
1234 |       (emphasis_delimiter)
1235 |       (emphasis_delimiter)
1236 |       (emphasis_delimiter)
1237 |       (emphasis_delimiter))
1238 |     (emphasis_delimiter)))
1239 | 
1240 | ================================================================================
1241 | Example 425 - https://github.github.com/gfm/#example-425
1242 | ================================================================================
1243 | foo***bar***baz
1244 | 
1245 | --------------------------------------------------------------------------------
1246 | 
1247 | (inline
1248 |   (emphasis
1249 |     (emphasis_delimiter)
1250 |     (strong_emphasis
1251 |       (emphasis_delimiter)
1252 |       (emphasis_delimiter)
1253 |       (emphasis_delimiter)
1254 |       (emphasis_delimiter))
1255 |     (emphasis_delimiter)))
1256 | 
1257 | ================================================================================
1258 | Example 426 - https://github.github.com/gfm/#example-426
1259 | ================================================================================
1260 | foo******bar*********baz
1261 | 
1262 | --------------------------------------------------------------------------------
1263 | 
1264 | (inline
1265 |   (strong_emphasis
1266 |     (emphasis_delimiter)
1267 |     (emphasis_delimiter)
1268 |     (strong_emphasis
1269 |       (emphasis_delimiter)
1270 |       (emphasis_delimiter)
1271 |       (strong_emphasis
1272 |         (emphasis_delimiter)
1273 |         (emphasis_delimiter)
1274 |         (emphasis_delimiter)
1275 |         (emphasis_delimiter))
1276 |       (emphasis_delimiter)
1277 |       (emphasis_delimiter))
1278 |     (emphasis_delimiter)
1279 |     (emphasis_delimiter)))
1280 | 
1281 | ================================================================================
1282 | Example 427 - https://github.github.com/gfm/#example-427
1283 | ================================================================================
1284 | *foo **bar *baz* bim** bop*
1285 | 
1286 | --------------------------------------------------------------------------------
1287 | 
1288 | (inline
1289 |   (emphasis
1290 |     (emphasis_delimiter)
1291 |     (strong_emphasis
1292 |       (emphasis_delimiter)
1293 |       (emphasis_delimiter)
1294 |       (emphasis
1295 |         (emphasis_delimiter)
1296 |         (emphasis_delimiter))
1297 |       (emphasis_delimiter)
1298 |       (emphasis_delimiter))
1299 |     (emphasis_delimiter)))
1300 | 
1301 | ================================================================================
1302 | Example 428 - https://github.github.com/gfm/#example-428
1303 | ================================================================================
1304 | *foo [*bar*](/url)*
1305 | 
1306 | --------------------------------------------------------------------------------
1307 | 
1308 | (inline
1309 |   (emphasis
1310 |     (emphasis_delimiter)
1311 |     (inline_link
1312 |       (link_text
1313 |         (emphasis
1314 |           (emphasis_delimiter)
1315 |           (emphasis_delimiter)))
1316 |       (link_destination))
1317 |     (emphasis_delimiter)))
1318 | 
1319 | ================================================================================
1320 | Example 429 - https://github.github.com/gfm/#example-429
1321 | ================================================================================
1322 | ** is not an empty emphasis
1323 | 
1324 | --------------------------------------------------------------------------------
1325 | 
1326 | (inline)
1327 | 
1328 | ================================================================================
1329 | Example 430 - https://github.github.com/gfm/#example-430
1330 | ================================================================================
1331 | **** is not an empty strong emphasis
1332 | 
1333 | --------------------------------------------------------------------------------
1334 | 
1335 | (inline)
1336 | 
1337 | ================================================================================
1338 | Example 431 - https://github.github.com/gfm/#example-431
1339 | ================================================================================
1340 | **foo [bar](/url)**
1341 | 
1342 | --------------------------------------------------------------------------------
1343 | 
1344 | (inline
1345 |   (strong_emphasis
1346 |     (emphasis_delimiter)
1347 |     (emphasis_delimiter)
1348 |     (inline_link
1349 |       (link_text)
1350 |       (link_destination))
1351 |     (emphasis_delimiter)
1352 |     (emphasis_delimiter)))
1353 | 
1354 | ================================================================================
1355 | Example 432 - https://github.github.com/gfm/#example-432
1356 | ================================================================================
1357 | **foo
1358 | bar**
1359 | 
1360 | --------------------------------------------------------------------------------
1361 | 
1362 | (inline
1363 |   (strong_emphasis
1364 |     (emphasis_delimiter)
1365 |     (emphasis_delimiter)
1366 |     (emphasis_delimiter)
1367 |     (emphasis_delimiter)))
1368 | 
1369 | ================================================================================
1370 | Example 433 - https://github.github.com/gfm/#example-433
1371 | ================================================================================
1372 | __foo _bar_ baz__
1373 | 
1374 | --------------------------------------------------------------------------------
1375 | 
1376 | (inline
1377 |   (strong_emphasis
1378 |     (emphasis_delimiter)
1379 |     (emphasis_delimiter)
1380 |     (emphasis
1381 |       (emphasis_delimiter)
1382 |       (emphasis_delimiter))
1383 |     (emphasis_delimiter)
1384 |     (emphasis_delimiter)))
1385 | 
1386 | ================================================================================
1387 | Example 434 - https://github.github.com/gfm/#example-434
1388 | ================================================================================
1389 | __foo __bar__ baz__
1390 | 
1391 | --------------------------------------------------------------------------------
1392 | 
1393 | (inline
1394 |   (strong_emphasis
1395 |     (emphasis_delimiter)
1396 |     (emphasis_delimiter)
1397 |     (strong_emphasis
1398 |       (emphasis_delimiter)
1399 |       (emphasis_delimiter)
1400 |       (emphasis_delimiter)
1401 |       (emphasis_delimiter))
1402 |     (emphasis_delimiter)
1403 |     (emphasis_delimiter)))
1404 | 
1405 | ================================================================================
1406 | Example 435 - https://github.github.com/gfm/#example-435
1407 | ================================================================================
1408 | ____foo__ bar__
1409 | 
1410 | --------------------------------------------------------------------------------
1411 | 
1412 | (inline
1413 |   (strong_emphasis
1414 |     (emphasis_delimiter)
1415 |     (emphasis_delimiter)
1416 |     (strong_emphasis
1417 |       (emphasis_delimiter)
1418 |       (emphasis_delimiter)
1419 |       (emphasis_delimiter)
1420 |       (emphasis_delimiter))
1421 |     (emphasis_delimiter)
1422 |     (emphasis_delimiter)))
1423 | 
1424 | ================================================================================
1425 | Example 436 - https://github.github.com/gfm/#example-436
1426 | ================================================================================
1427 | **foo **bar****
1428 | 
1429 | --------------------------------------------------------------------------------
1430 | 
1431 | (inline
1432 |   (strong_emphasis
1433 |     (emphasis_delimiter)
1434 |     (emphasis_delimiter)
1435 |     (strong_emphasis
1436 |       (emphasis_delimiter)
1437 |       (emphasis_delimiter)
1438 |       (emphasis_delimiter)
1439 |       (emphasis_delimiter))
1440 |     (emphasis_delimiter)
1441 |     (emphasis_delimiter)))
1442 | 
1443 | ================================================================================
1444 | Example 437 - https://github.github.com/gfm/#example-437
1445 | ================================================================================
1446 | **foo *bar* baz**
1447 | 
1448 | --------------------------------------------------------------------------------
1449 | 
1450 | (inline
1451 |   (strong_emphasis
1452 |     (emphasis_delimiter)
1453 |     (emphasis_delimiter)
1454 |     (emphasis
1455 |       (emphasis_delimiter)
1456 |       (emphasis_delimiter))
1457 |     (emphasis_delimiter)
1458 |     (emphasis_delimiter)))
1459 | 
1460 | ================================================================================
1461 | Example 439 - https://github.github.com/gfm/#example-439
1462 | ================================================================================
1463 | ***foo* bar**
1464 | 
1465 | --------------------------------------------------------------------------------
1466 | 
1467 | (inline
1468 |   (strong_emphasis
1469 |     (emphasis_delimiter)
1470 |     (emphasis_delimiter)
1471 |     (emphasis
1472 |       (emphasis_delimiter)
1473 |       (emphasis_delimiter))
1474 |     (emphasis_delimiter)
1475 |     (emphasis_delimiter)))
1476 | 
1477 | ================================================================================
1478 | Example 440 - https://github.github.com/gfm/#example-440
1479 | ================================================================================
1480 | **foo *bar***
1481 | 
1482 | --------------------------------------------------------------------------------
1483 | 
1484 | (inline
1485 |   (strong_emphasis
1486 |     (emphasis_delimiter)
1487 |     (emphasis_delimiter)
1488 |     (emphasis
1489 |       (emphasis_delimiter)
1490 |       (emphasis_delimiter))
1491 |     (emphasis_delimiter)
1492 |     (emphasis_delimiter)))
1493 | 
1494 | ================================================================================
1495 | Example 441 - https://github.github.com/gfm/#example-441
1496 | ================================================================================
1497 | **foo *bar **baz**
1498 | bim* bop**
1499 | 
1500 | --------------------------------------------------------------------------------
1501 | 
1502 | (inline
1503 |   (strong_emphasis
1504 |     (emphasis_delimiter)
1505 |     (emphasis_delimiter)
1506 |     (emphasis
1507 |       (emphasis_delimiter)
1508 |       (strong_emphasis
1509 |         (emphasis_delimiter)
1510 |         (emphasis_delimiter)
1511 |         (emphasis_delimiter)
1512 |         (emphasis_delimiter))
1513 |       (emphasis_delimiter))
1514 |     (emphasis_delimiter)
1515 |     (emphasis_delimiter)))
1516 | 
1517 | ================================================================================
1518 | Example 442 - https://github.github.com/gfm/#example-442
1519 | ================================================================================
1520 | **foo [*bar*](/url)**
1521 | 
1522 | --------------------------------------------------------------------------------
1523 | 
1524 | (inline
1525 |   (strong_emphasis
1526 |     (emphasis_delimiter)
1527 |     (emphasis_delimiter)
1528 |     (inline_link
1529 |       (link_text
1530 |         (emphasis
1531 |           (emphasis_delimiter)
1532 |           (emphasis_delimiter)))
1533 |       (link_destination))
1534 |     (emphasis_delimiter)
1535 |     (emphasis_delimiter)))
1536 | 
1537 | ================================================================================
1538 | Example 443 - https://github.github.com/gfm/#example-443
1539 | ================================================================================
1540 | __ is not an empty emphasis
1541 | 
1542 | --------------------------------------------------------------------------------
1543 | 
1544 | (inline)
1545 | 
1546 | ================================================================================
1547 | Example 444 - https://github.github.com/gfm/#example-444
1548 | ================================================================================
1549 | ____ is not an empty strong emphasis
1550 | 
1551 | --------------------------------------------------------------------------------
1552 | 
1553 | (inline)
1554 | 
1555 | ================================================================================
1556 | Example 445 - https://github.github.com/gfm/#example-445
1557 | ================================================================================
1558 | foo ***
1559 | 
1560 | --------------------------------------------------------------------------------
1561 | 
1562 | (inline)
1563 | 
1564 | ================================================================================
1565 | Example 446 - https://github.github.com/gfm/#example-446
1566 | ================================================================================
1567 | foo *\**
1568 | 
1569 | --------------------------------------------------------------------------------
1570 | 
1571 | (inline
1572 |   (emphasis
1573 |     (emphasis_delimiter)
1574 |     (backslash_escape)
1575 |     (emphasis_delimiter)))
1576 | 
1577 | ================================================================================
1578 | Example 447 - https://github.github.com/gfm/#example-447
1579 | ================================================================================
1580 | foo *_*
1581 | 
1582 | --------------------------------------------------------------------------------
1583 | 
1584 | (inline
1585 |   (emphasis
1586 |     (emphasis_delimiter)
1587 |     (emphasis_delimiter)))
1588 | 
1589 | ================================================================================
1590 | Example 448 - https://github.github.com/gfm/#example-448
1591 | ================================================================================
1592 | foo *****
1593 | 
1594 | --------------------------------------------------------------------------------
1595 | 
1596 | (inline)
1597 | 
1598 | ================================================================================
1599 | Example 449 - https://github.github.com/gfm/#example-449
1600 | ================================================================================
1601 | foo **\***
1602 | 
1603 | --------------------------------------------------------------------------------
1604 | 
1605 | (inline
1606 |   (strong_emphasis
1607 |     (emphasis_delimiter)
1608 |     (emphasis_delimiter)
1609 |     (backslash_escape)
1610 |     (emphasis_delimiter)
1611 |     (emphasis_delimiter)))
1612 | 
1613 | ================================================================================
1614 | Example 450 - https://github.github.com/gfm/#example-450
1615 | ================================================================================
1616 | foo **_**
1617 | 
1618 | --------------------------------------------------------------------------------
1619 | 
1620 | (inline
1621 |   (strong_emphasis
1622 |     (emphasis_delimiter)
1623 |     (emphasis_delimiter)
1624 |     (emphasis_delimiter)
1625 |     (emphasis_delimiter)))
1626 | 
1627 | ================================================================================
1628 | Example 451 - https://github.github.com/gfm/#example-451
1629 | ================================================================================
1630 | **foo*
1631 | 
1632 | --------------------------------------------------------------------------------
1633 | 
1634 | (inline
1635 |   (emphasis
1636 |     (emphasis_delimiter)
1637 |     (emphasis_delimiter)))
1638 | 
1639 | ================================================================================
1640 | Example 452 - https://github.github.com/gfm/#example-452
1641 | ================================================================================
1642 | *foo**
1643 | 
1644 | --------------------------------------------------------------------------------
1645 | 
1646 | (inline
1647 |   (emphasis
1648 |     (emphasis_delimiter)
1649 |     (emphasis_delimiter)))
1650 | 
1651 | ================================================================================
1652 | Example 453 - https://github.github.com/gfm/#example-453
1653 | ================================================================================
1654 | ***foo**
1655 | 
1656 | --------------------------------------------------------------------------------
1657 | 
1658 | (inline
1659 |   (strong_emphasis
1660 |     (emphasis_delimiter)
1661 |     (emphasis_delimiter)
1662 |     (emphasis_delimiter)
1663 |     (emphasis_delimiter)))
1664 | 
1665 | ================================================================================
1666 | Example 454 - https://github.github.com/gfm/#example-454
1667 | ================================================================================
1668 | ****foo*
1669 | 
1670 | --------------------------------------------------------------------------------
1671 | 
1672 | (inline
1673 |   (emphasis
1674 |     (emphasis_delimiter)
1675 |     (emphasis_delimiter)))
1676 | 
1677 | ================================================================================
1678 | Example 455 - https://github.github.com/gfm/#example-455
1679 | ================================================================================
1680 | **foo***
1681 | 
1682 | --------------------------------------------------------------------------------
1683 | 
1684 | (inline
1685 |   (strong_emphasis
1686 |     (emphasis_delimiter)
1687 |     (emphasis_delimiter)
1688 |     (emphasis_delimiter)
1689 |     (emphasis_delimiter)))
1690 | 
1691 | ================================================================================
1692 | Example 456 - https://github.github.com/gfm/#example-456
1693 | ================================================================================
1694 | *foo****
1695 | 
1696 | --------------------------------------------------------------------------------
1697 | 
1698 | (inline
1699 |   (emphasis
1700 |     (emphasis_delimiter)
1701 |     (emphasis_delimiter)))
1702 | 
1703 | ================================================================================
1704 | Example 457 - https://github.github.com/gfm/#example-457
1705 | ================================================================================
1706 | foo ___
1707 | 
1708 | --------------------------------------------------------------------------------
1709 | 
1710 | (inline)
1711 | 
1712 | ================================================================================
1713 | Example 458 - https://github.github.com/gfm/#example-458
1714 | ================================================================================
1715 | foo _\__
1716 | 
1717 | --------------------------------------------------------------------------------
1718 | 
1719 | (inline
1720 |   (emphasis
1721 |     (emphasis_delimiter)
1722 |     (backslash_escape)
1723 |     (emphasis_delimiter)))
1724 | 
1725 | ================================================================================
1726 | Example 459 - https://github.github.com/gfm/#example-459
1727 | ================================================================================
1728 | foo _*_
1729 | 
1730 | --------------------------------------------------------------------------------
1731 | 
1732 | (inline
1733 |   (emphasis
1734 |     (emphasis_delimiter)
1735 |     (emphasis_delimiter)))
1736 | 
1737 | ================================================================================
1738 | Example 460 - https://github.github.com/gfm/#example-460
1739 | ================================================================================
1740 | foo _____
1741 | 
1742 | --------------------------------------------------------------------------------
1743 | 
1744 | (inline)
1745 | 
1746 | ================================================================================
1747 | Example 461 - https://github.github.com/gfm/#example-461
1748 | ================================================================================
1749 | foo __\___
1750 | 
1751 | --------------------------------------------------------------------------------
1752 | 
1753 | (inline
1754 |   (strong_emphasis
1755 |     (emphasis_delimiter)
1756 |     (emphasis_delimiter)
1757 |     (backslash_escape)
1758 |     (emphasis_delimiter)
1759 |     (emphasis_delimiter)))
1760 | 
1761 | ================================================================================
1762 | Example 462 - https://github.github.com/gfm/#example-462
1763 | ================================================================================
1764 | foo __*__
1765 | 
1766 | --------------------------------------------------------------------------------
1767 | 
1768 | (inline
1769 |   (strong_emphasis
1770 |     (emphasis_delimiter)
1771 |     (emphasis_delimiter)
1772 |     (emphasis_delimiter)
1773 |     (emphasis_delimiter)))
1774 | 
1775 | ================================================================================
1776 | Example 463 - https://github.github.com/gfm/#example-463
1777 | ================================================================================
1778 | __foo_
1779 | 
1780 | --------------------------------------------------------------------------------
1781 | 
1782 | (inline
1783 |   (emphasis
1784 |     (emphasis_delimiter)
1785 |     (emphasis_delimiter)))
1786 | 
1787 | ================================================================================
1788 | Example 464 - https://github.github.com/gfm/#example-464
1789 | ================================================================================
1790 | _foo__
1791 | 
1792 | --------------------------------------------------------------------------------
1793 | 
1794 | (inline
1795 |   (emphasis
1796 |     (emphasis_delimiter)
1797 |     (emphasis_delimiter)))
1798 | 
1799 | ================================================================================
1800 | Example 465 - https://github.github.com/gfm/#example-465
1801 | ================================================================================
1802 | ___foo__
1803 | 
1804 | --------------------------------------------------------------------------------
1805 | 
1806 | (inline
1807 |   (strong_emphasis
1808 |     (emphasis_delimiter)
1809 |     (emphasis_delimiter)
1810 |     (emphasis_delimiter)
1811 |     (emphasis_delimiter)))
1812 | 
1813 | ================================================================================
1814 | Example 466 - https://github.github.com/gfm/#example-466
1815 | ================================================================================
1816 | ____foo_
1817 | 
1818 | --------------------------------------------------------------------------------
1819 | 
1820 | (inline
1821 |   (emphasis
1822 |     (emphasis_delimiter)
1823 |     (emphasis_delimiter)))
1824 | 
1825 | ================================================================================
1826 | Example 467 - https://github.github.com/gfm/#example-467
1827 | ================================================================================
1828 | __foo___
1829 | 
1830 | --------------------------------------------------------------------------------
1831 | 
1832 | (inline
1833 |   (strong_emphasis
1834 |     (emphasis_delimiter)
1835 |     (emphasis_delimiter)
1836 |     (emphasis_delimiter)
1837 |     (emphasis_delimiter)))
1838 | 
1839 | ================================================================================
1840 | Example 468 - https://github.github.com/gfm/#example-468
1841 | ================================================================================
1842 | _foo____
1843 | 
1844 | --------------------------------------------------------------------------------
1845 | 
1846 | (inline
1847 |   (emphasis
1848 |     (emphasis_delimiter)
1849 |     (emphasis_delimiter)))
1850 | 
1851 | ================================================================================
1852 | Example 469 - https://github.github.com/gfm/#example-469
1853 | ================================================================================
1854 | **foo**
1855 | 
1856 | --------------------------------------------------------------------------------
1857 | 
1858 | (inline
1859 |   (strong_emphasis
1860 |     (emphasis_delimiter)
1861 |     (emphasis_delimiter)
1862 |     (emphasis_delimiter)
1863 |     (emphasis_delimiter)))
1864 | 
1865 | ================================================================================
1866 | Example 470 - https://github.github.com/gfm/#example-470
1867 | ================================================================================
1868 | *_foo_*
1869 | 
1870 | --------------------------------------------------------------------------------
1871 | 
1872 | (inline
1873 |   (emphasis
1874 |     (emphasis_delimiter)
1875 |     (emphasis
1876 |       (emphasis_delimiter)
1877 |       (emphasis_delimiter))
1878 |     (emphasis_delimiter)))
1879 | 
1880 | ================================================================================
1881 | Example 471 - https://github.github.com/gfm/#example-471
1882 | ================================================================================
1883 | __foo__
1884 | 
1885 | --------------------------------------------------------------------------------
1886 | 
1887 | (inline
1888 |   (strong_emphasis
1889 |     (emphasis_delimiter)
1890 |     (emphasis_delimiter)
1891 |     (emphasis_delimiter)
1892 |     (emphasis_delimiter)))
1893 | 
1894 | ================================================================================
1895 | Example 472 - https://github.github.com/gfm/#example-472
1896 | ================================================================================
1897 | _*foo*_
1898 | 
1899 | --------------------------------------------------------------------------------
1900 | 
1901 | (inline
1902 |   (emphasis
1903 |     (emphasis_delimiter)
1904 |     (emphasis
1905 |       (emphasis_delimiter)
1906 |       (emphasis_delimiter))
1907 |     (emphasis_delimiter)))
1908 | 
1909 | ================================================================================
1910 | Example 473 - https://github.github.com/gfm/#example-473
1911 | ================================================================================
1912 | ****foo****
1913 | 
1914 | --------------------------------------------------------------------------------
1915 | 
1916 | (inline
1917 |   (strong_emphasis
1918 |     (emphasis_delimiter)
1919 |     (emphasis_delimiter)
1920 |     (strong_emphasis
1921 |       (emphasis_delimiter)
1922 |       (emphasis_delimiter)
1923 |       (emphasis_delimiter)
1924 |       (emphasis_delimiter))
1925 |     (emphasis_delimiter)
1926 |     (emphasis_delimiter)))
1927 | 
1928 | ================================================================================
1929 | Example 474 - https://github.github.com/gfm/#example-474
1930 | ================================================================================
1931 | ____foo____
1932 | 
1933 | --------------------------------------------------------------------------------
1934 | 
1935 | (inline
1936 |   (strong_emphasis
1937 |     (emphasis_delimiter)
1938 |     (emphasis_delimiter)
1939 |     (strong_emphasis
1940 |       (emphasis_delimiter)
1941 |       (emphasis_delimiter)
1942 |       (emphasis_delimiter)
1943 |       (emphasis_delimiter))
1944 |     (emphasis_delimiter)
1945 |     (emphasis_delimiter)))
1946 | 
1947 | ================================================================================
1948 | Example 475 - https://github.github.com/gfm/#example-475
1949 | ================================================================================
1950 | ******foo******
1951 | 
1952 | --------------------------------------------------------------------------------
1953 | 
1954 | (inline
1955 |   (strong_emphasis
1956 |     (emphasis_delimiter)
1957 |     (emphasis_delimiter)
1958 |     (strong_emphasis
1959 |       (emphasis_delimiter)
1960 |       (emphasis_delimiter)
1961 |       (strong_emphasis
1962 |         (emphasis_delimiter)
1963 |         (emphasis_delimiter)
1964 |         (emphasis_delimiter)
1965 |         (emphasis_delimiter))
1966 |       (emphasis_delimiter)
1967 |       (emphasis_delimiter))
1968 |     (emphasis_delimiter)
1969 |     (emphasis_delimiter)))
1970 | 
1971 | ================================================================================
1972 | Example 476 - https://github.github.com/gfm/#example-476
1973 | ================================================================================
1974 | ***foo***
1975 | 
1976 | --------------------------------------------------------------------------------
1977 | 
1978 | (inline
1979 |   (emphasis
1980 |     (emphasis_delimiter)
1981 |     (strong_emphasis
1982 |       (emphasis_delimiter)
1983 |       (emphasis_delimiter)
1984 |       (emphasis_delimiter)
1985 |       (emphasis_delimiter))
1986 |     (emphasis_delimiter)))
1987 | 
1988 | ================================================================================
1989 | Example 477 - https://github.github.com/gfm/#example-477
1990 | ================================================================================
1991 | _____foo_____
1992 | 
1993 | --------------------------------------------------------------------------------
1994 | 
1995 | (inline
1996 |   (emphasis
1997 |     (emphasis_delimiter)
1998 |     (strong_emphasis
1999 |       (emphasis_delimiter)
2000 |       (emphasis_delimiter)
2001 |       (strong_emphasis
2002 |         (emphasis_delimiter)
2003 |         (emphasis_delimiter)
2004 |         (emphasis_delimiter)
2005 |         (emphasis_delimiter))
2006 |       (emphasis_delimiter)
2007 |       (emphasis_delimiter))
2008 |     (emphasis_delimiter)))
2009 | 
2010 | ================================================================================
2011 | Example 478 - https://github.github.com/gfm/#example-478
2012 | ================================================================================
2013 | *foo _bar* baz_
2014 | 
2015 | --------------------------------------------------------------------------------
2016 | 
2017 | (inline
2018 |   (emphasis
2019 |     (emphasis_delimiter)
2020 |     (emphasis_delimiter)))
2021 | 
2022 | ================================================================================
2023 | Example 479 - https://github.github.com/gfm/#example-479
2024 | ================================================================================
2025 | *foo __bar *baz bim__ bam*
2026 | 
2027 | --------------------------------------------------------------------------------
2028 | 
2029 | (inline
2030 |   (emphasis
2031 |     (emphasis_delimiter)
2032 |     (strong_emphasis
2033 |       (emphasis_delimiter)
2034 |       (emphasis_delimiter)
2035 |       (emphasis_delimiter)
2036 |       (emphasis_delimiter))
2037 |     (emphasis_delimiter)))
2038 | 
2039 | ================================================================================
2040 | Example 480 - https://github.github.com/gfm/#example-480
2041 | ================================================================================
2042 | **foo **bar baz**
2043 | 
2044 | --------------------------------------------------------------------------------
2045 | 
2046 | (inline
2047 |   (strong_emphasis
2048 |     (emphasis_delimiter)
2049 |     (emphasis_delimiter)
2050 |     (emphasis_delimiter)
2051 |     (emphasis_delimiter)))
2052 | 
2053 | ================================================================================
2054 | Example 481 - https://github.github.com/gfm/#example-481
2055 | ================================================================================
2056 | *foo *bar baz*
2057 | 
2058 | --------------------------------------------------------------------------------
2059 | 
2060 | (inline
2061 |   (emphasis
2062 |     (emphasis_delimiter)
2063 |     (emphasis_delimiter)))
2064 | 
2065 | ================================================================================
2066 | Example 482 - https://github.github.com/gfm/#example-482
2067 | ================================================================================
2068 | *[bar*](/url)
2069 | 
2070 | --------------------------------------------------------------------------------
2071 | 
2072 | (inline
2073 |   (inline_link
2074 |     (link_text)
2075 |     (link_destination)))
2076 | 
2077 | ================================================================================
2078 | Example 483 - https://github.github.com/gfm/#example-483
2079 | ================================================================================
2080 | _foo [bar_](/url)
2081 | 
2082 | --------------------------------------------------------------------------------
2083 | 
2084 | (inline
2085 |   (inline_link
2086 |     (link_text)
2087 |     (link_destination)))
2088 | 
2089 | ================================================================================
2090 | Example 484 - https://github.github.com/gfm/#example-484
2091 | ================================================================================
2092 | *<img src="foo" title="*"/>
2093 | 
2094 | --------------------------------------------------------------------------------
2095 | 
2096 | (inline
2097 |   (html_tag))
2098 | 
2099 | ================================================================================
2100 | Example 485 - https://github.github.com/gfm/#example-485
2101 | ================================================================================
2102 | **<a href="**">
2103 | 
2104 | --------------------------------------------------------------------------------
2105 | 
2106 | (inline
2107 |   (html_tag))
2108 | 
2109 | ================================================================================
2110 | Example 486 - https://github.github.com/gfm/#example-486
2111 | ================================================================================
2112 | __<a href="__">
2113 | 
2114 | --------------------------------------------------------------------------------
2115 | 
2116 | (inline
2117 |   (html_tag))
2118 | 
2119 | ================================================================================
2120 | Example 487 - https://github.github.com/gfm/#example-487
2121 | ================================================================================
2122 | *a `*`*
2123 | 
2124 | --------------------------------------------------------------------------------
2125 | 
2126 | (inline
2127 |   (emphasis
2128 |     (emphasis_delimiter)
2129 |     (code_span
2130 |       (code_span_delimiter)
2131 |       (code_span_delimiter))
2132 |     (emphasis_delimiter)))
2133 | 
2134 | ================================================================================
2135 | Example 488 - https://github.github.com/gfm/#example-488
2136 | ================================================================================
2137 | _a `_`_
2138 | 
2139 | --------------------------------------------------------------------------------
2140 | 
2141 | (inline
2142 |   (emphasis
2143 |     (emphasis_delimiter)
2144 |     (code_span
2145 |       (code_span_delimiter)
2146 |       (code_span_delimiter))
2147 |     (emphasis_delimiter)))
2148 | 
2149 | ================================================================================
2150 | Example 489 - https://github.github.com/gfm/#example-489
2151 | ================================================================================
2152 | **a<http://foo.bar/?q=**>
2153 | 
2154 | --------------------------------------------------------------------------------
2155 | 
2156 | (inline
2157 |   (uri_autolink))
2158 | 
2159 | ================================================================================
2160 | Example 490 - https://github.github.com/gfm/#example-490
2161 | ================================================================================
2162 | __a<http://foo.bar/?q=__>
2163 | 
2164 | --------------------------------------------------------------------------------
2165 | 
2166 | (inline
2167 |   (uri_autolink))
2168 | 
2169 | ================================================================================
2170 | Example 493 - https://github.github.com/gfm/#example-493
2171 | ================================================================================
2172 | [link](/uri "title")
2173 | 
2174 | --------------------------------------------------------------------------------
2175 | 
2176 | (inline
2177 |   (inline_link
2178 |     (link_text)
2179 |     (link_destination)
2180 |     (link_title)))
2181 | 
2182 | ================================================================================
2183 | Example 494 - https://github.github.com/gfm/#example-494
2184 | ================================================================================
2185 | [link](/uri)
2186 | 
2187 | --------------------------------------------------------------------------------
2188 | 
2189 | (inline
2190 |   (inline_link
2191 |     (link_text)
2192 |     (link_destination)))
2193 | 
2194 | ================================================================================
2195 | Example 495 - https://github.github.com/gfm/#example-495
2196 | ================================================================================
2197 | [link]()
2198 | 
2199 | --------------------------------------------------------------------------------
2200 | 
2201 | (inline
2202 |   (inline_link
2203 |     (link_text)))
2204 | 
2205 | ================================================================================
2206 | Example 496 - https://github.github.com/gfm/#example-496
2207 | ================================================================================
2208 | [link](<>)
2209 | 
2210 | --------------------------------------------------------------------------------
2211 | 
2212 | (inline
2213 |   (inline_link
2214 |     (link_text)
2215 |     (link_destination)))
2216 | 
2217 | ================================================================================
2218 | Example 497 - https://github.github.com/gfm/#example-497
2219 | ================================================================================
2220 | [link](/my uri)
2221 | 
2222 | --------------------------------------------------------------------------------
2223 | 
2224 | (inline
2225 |   (shortcut_link
2226 |     (link_text)))
2227 | 
2228 | ================================================================================
2229 | Example 498 - https://github.github.com/gfm/#example-498
2230 | ================================================================================
2231 | [link](</my uri>)
2232 | 
2233 | --------------------------------------------------------------------------------
2234 | 
2235 | (inline
2236 |   (inline_link
2237 |     (link_text)
2238 |     (link_destination)))
2239 | 
2240 | ================================================================================
2241 | Example 499 - https://github.github.com/gfm/#example-499
2242 | ================================================================================
2243 | [link](foo
2244 | bar)
2245 | 
2246 | --------------------------------------------------------------------------------
2247 | 
2248 | (inline
2249 |   (shortcut_link
2250 |     (link_text)))
2251 | 
2252 | ================================================================================
2253 | Example 500 - https://github.github.com/gfm/#example-500
2254 | ================================================================================
2255 | [link](<foo
2256 | bar>)
2257 | 
2258 | --------------------------------------------------------------------------------
2259 | 
2260 | (inline
2261 |   (shortcut_link
2262 |     (link_text)))
2263 | 
2264 | ================================================================================
2265 | Example 501 - https://github.github.com/gfm/#example-501
2266 | ================================================================================
2267 | [a](<b)c>)
2268 | 
2269 | --------------------------------------------------------------------------------
2270 | 
2271 | (inline
2272 |   (inline_link
2273 |     (link_text)
2274 |     (link_destination)))
2275 | 
2276 | ================================================================================
2277 | Example 502 - https://github.github.com/gfm/#example-502
2278 | ================================================================================
2279 | [link](<foo\>)
2280 | 
2281 | --------------------------------------------------------------------------------
2282 | 
2283 | (inline
2284 |   (shortcut_link
2285 |     (link_text))
2286 |   (backslash_escape))
2287 | 
2288 | ================================================================================
2289 | Example 503 - https://github.github.com/gfm/#example-503
2290 | ================================================================================
2291 | [a](<b)c
2292 | [a](<b)c>
2293 | [a](<b>c)
2294 | 
2295 | --------------------------------------------------------------------------------
2296 | 
2297 | (inline
2298 |   (shortcut_link
2299 |     (link_text))
2300 |   (shortcut_link
2301 |     (link_text))
2302 |   (shortcut_link
2303 |     (link_text))
2304 |   (html_tag))
2305 | 
2306 | ================================================================================
2307 | Example 504 - https://github.github.com/gfm/#example-504
2308 | ================================================================================
2309 | [link](\(foo\))
2310 | 
2311 | --------------------------------------------------------------------------------
2312 | 
2313 | (inline
2314 |   (inline_link
2315 |     (link_text)
2316 |     (link_destination
2317 |       (backslash_escape)
2318 |       (backslash_escape))))
2319 | 
2320 | ================================================================================
2321 | Example 505 - https://github.github.com/gfm/#example-505
2322 | ================================================================================
2323 | [link](foo(and(bar)))
2324 | 
2325 | --------------------------------------------------------------------------------
2326 | 
2327 | (inline
2328 |   (inline_link
2329 |     (link_text)
2330 |     (link_destination)))
2331 | 
2332 | ================================================================================
2333 | Example 506 - https://github.github.com/gfm/#example-506
2334 | ================================================================================
2335 | [link](foo\(and\(bar\))
2336 | 
2337 | --------------------------------------------------------------------------------
2338 | 
2339 | (inline
2340 |   (inline_link
2341 |     (link_text)
2342 |     (link_destination
2343 |       (backslash_escape)
2344 |       (backslash_escape)
2345 |       (backslash_escape))))
2346 | 
2347 | ================================================================================
2348 | Example 507 - https://github.github.com/gfm/#example-507
2349 | ================================================================================
2350 | [link](<foo(and(bar)>)
2351 | 
2352 | --------------------------------------------------------------------------------
2353 | 
2354 | (inline
2355 |   (inline_link
2356 |     (link_text)
2357 |     (link_destination)))
2358 | 
2359 | ================================================================================
2360 | Example 508 - https://github.github.com/gfm/#example-508
2361 | ================================================================================
2362 | [link](foo\)\:)
2363 | 
2364 | --------------------------------------------------------------------------------
2365 | 
2366 | (inline
2367 |   (inline_link
2368 |     (link_text)
2369 |     (link_destination
2370 |       (backslash_escape)
2371 |       (backslash_escape))))
2372 | 
2373 | ================================================================================
2374 | Example 509 - https://github.github.com/gfm/#example-509
2375 | ================================================================================
2376 | [link](#fragment)
2377 | [link](http://example.com#fragment)
2378 | [link](http://example.com?foo=3#frag)
2379 | 
2380 | --------------------------------------------------------------------------------
2381 | 
2382 | (inline
2383 |   (inline_link
2384 |     (link_text)
2385 |     (link_destination))
2386 |   (inline_link
2387 |     (link_text)
2388 |     (link_destination))
2389 |   (inline_link
2390 |     (link_text)
2391 |     (link_destination)))
2392 | 
2393 | ================================================================================
2394 | Example 510 - https://github.github.com/gfm/#example-510
2395 | ================================================================================
2396 | [link](foo\bar)
2397 | 
2398 | --------------------------------------------------------------------------------
2399 | 
2400 | (inline
2401 |   (inline_link
2402 |     (link_text)
2403 |     (link_destination)))
2404 | 
2405 | ================================================================================
2406 | Example 511 - https://github.github.com/gfm/#example-511
2407 | ================================================================================
2408 | [link](foo%20b&auml;)
2409 | 
2410 | --------------------------------------------------------------------------------
2411 | 
2412 | (inline
2413 |   (inline_link
2414 |     (link_text)
2415 |     (link_destination
2416 |       (entity_reference))))
2417 | 
2418 | ================================================================================
2419 | Example 512 - https://github.github.com/gfm/#example-512
2420 | ================================================================================
2421 | [link]("title")
2422 | 
2423 | --------------------------------------------------------------------------------
2424 | 
2425 | (inline
2426 |   (inline_link
2427 |     (link_text)
2428 |     (link_destination)))
2429 | 
2430 | ================================================================================
2431 | Example 513 - https://github.github.com/gfm/#example-513
2432 | ================================================================================
2433 | [link](/url "title")
2434 | [link](/url 'title')
2435 | [link](/url (title))
2436 | 
2437 | --------------------------------------------------------------------------------
2438 | 
2439 | (inline
2440 |   (inline_link
2441 |     (link_text)
2442 |     (link_destination)
2443 |     (link_title))
2444 |   (inline_link
2445 |     (link_text)
2446 |     (link_destination)
2447 |     (link_title))
2448 |   (inline_link
2449 |     (link_text)
2450 |     (link_destination)
2451 |     (link_title)))
2452 | 
2453 | ================================================================================
2454 | Example 514 - https://github.github.com/gfm/#example-514
2455 | ================================================================================
2456 | [link](/url "title \"&quot;")
2457 | 
2458 | --------------------------------------------------------------------------------
2459 | 
2460 | (inline
2461 |   (inline_link
2462 |     (link_text)
2463 |     (link_destination)
2464 |     (link_title
2465 |       (backslash_escape)
2466 |       (entity_reference))))
2467 | 
2468 | ================================================================================
2469 | Example 515 - https://github.github.com/gfm/#example-515
2470 | ================================================================================
2471 | [link](/url "title")
2472 | 
2473 | --------------------------------------------------------------------------------
2474 | 
2475 | (inline
2476 |   (inline_link
2477 |     (link_text)
2478 |     (link_destination)))
2479 | 
2480 | ================================================================================
2481 | Example 516 - https://github.github.com/gfm/#example-516
2482 | ================================================================================
2483 | [link](/url "title "and" title")
2484 | 
2485 | --------------------------------------------------------------------------------
2486 | 
2487 | (inline
2488 |   (shortcut_link
2489 |     (link_text)))
2490 | 
2491 | ================================================================================
2492 | Example 517 - https://github.github.com/gfm/#example-517
2493 | ================================================================================
2494 | [link](/url 'title "and" title')
2495 | 
2496 | --------------------------------------------------------------------------------
2497 | 
2498 | (inline
2499 |   (inline_link
2500 |     (link_text)
2501 |     (link_destination)
2502 |     (link_title)))
2503 | 
2504 | ================================================================================
2505 | Example 518 - https://github.github.com/gfm/#example-518
2506 | ================================================================================
2507 | [link](   /uri
2508 |   "title"  )
2509 | 
2510 | --------------------------------------------------------------------------------
2511 | 
2512 | (inline
2513 |   (inline_link
2514 |     (link_text)
2515 |     (link_destination)
2516 |     (link_title)))
2517 | 
2518 | ================================================================================
2519 | Example 519 - https://github.github.com/gfm/#example-519
2520 | ================================================================================
2521 | [link] (/uri)
2522 | 
2523 | --------------------------------------------------------------------------------
2524 | 
2525 | (inline
2526 |   (shortcut_link
2527 |     (link_text)))
2528 | 
2529 | ================================================================================
2530 | Example 520 - https://github.github.com/gfm/#example-520
2531 | ================================================================================
2532 | [link [foo [bar]]](/uri)
2533 | 
2534 | --------------------------------------------------------------------------------
2535 | 
2536 | (inline
2537 |   (shortcut_link
2538 |     (link_text)))
2539 | 
2540 | ================================================================================
2541 | Example 521 - https://github.github.com/gfm/#example-521
2542 | ================================================================================
2543 | [link] bar](/uri)
2544 | 
2545 | --------------------------------------------------------------------------------
2546 | 
2547 | (inline
2548 |   (shortcut_link
2549 |     (link_text)))
2550 | 
2551 | ================================================================================
2552 | Example 522 - https://github.github.com/gfm/#example-522
2553 | ================================================================================
2554 | [link [bar](/uri)
2555 | 
2556 | --------------------------------------------------------------------------------
2557 | 
2558 | (inline
2559 |   (inline_link
2560 |     (link_text)
2561 |     (link_destination)))
2562 | 
2563 | ================================================================================
2564 | Example 523 - https://github.github.com/gfm/#example-523
2565 | ================================================================================
2566 | [link \[bar](/uri)
2567 | 
2568 | --------------------------------------------------------------------------------
2569 | 
2570 | (inline
2571 |   (inline_link
2572 |     (link_text
2573 |       (backslash_escape))
2574 |     (link_destination)))
2575 | 
2576 | ================================================================================
2577 | Example 525 - https://github.github.com/gfm/#example-525
2578 | ================================================================================
2579 | [![moon](moon.jpg)](/uri)
2580 | 
2581 | --------------------------------------------------------------------------------
2582 | 
2583 | (inline
2584 |   (inline_link
2585 |     (link_text
2586 |       (image
2587 |         (image_description)
2588 |         (link_destination)))
2589 |     (link_destination)))
2590 | 
2591 | ================================================================================
2592 | Example 526 - https://github.github.com/gfm/#example-526
2593 | ================================================================================
2594 | [foo [bar](/uri)](/uri)
2595 | 
2596 | --------------------------------------------------------------------------------
2597 | 
2598 | (inline
2599 |   (inline_link
2600 |     (link_text)
2601 |     (link_destination)))
2602 | 
2603 | ================================================================================
2604 | Example 527 - https://github.github.com/gfm/#example-527
2605 | ================================================================================
2606 | [foo *[bar [baz](/uri)](/uri)*](/uri)
2607 | 
2608 | --------------------------------------------------------------------------------
2609 | 
2610 | (inline
2611 |   (emphasis
2612 |     (emphasis_delimiter)
2613 |     (inline_link
2614 |       (link_text)
2615 |       (link_destination))
2616 |     (emphasis_delimiter)))
2617 | 
2618 | ================================================================================
2619 | Example 528 - https://github.github.com/gfm/#example-528
2620 | ================================================================================
2621 | ![[[foo](uri1)](uri2)](uri3)
2622 | 
2623 | --------------------------------------------------------------------------------
2624 | 
2625 | (inline
2626 |   (image
2627 |     (image_description
2628 |       (inline_link
2629 |         (link_text)
2630 |         (link_destination)))
2631 |     (link_destination)))
2632 | 
2633 | ================================================================================
2634 | Example 529 - https://github.github.com/gfm/#example-529
2635 | ================================================================================
2636 | *[foo*](/uri)
2637 | 
2638 | --------------------------------------------------------------------------------
2639 | 
2640 | (inline
2641 |   (inline_link
2642 |     (link_text)
2643 |     (link_destination)))
2644 | 
2645 | ================================================================================
2646 | Example 530 - https://github.github.com/gfm/#example-530
2647 | ================================================================================
2648 | [foo *bar](baz*)
2649 | 
2650 | --------------------------------------------------------------------------------
2651 | 
2652 | (inline
2653 |   (inline_link
2654 |     (link_text)
2655 |     (link_destination)))
2656 | 
2657 | ================================================================================
2658 | Example 531 - https://github.github.com/gfm/#example-531
2659 | ================================================================================
2660 | *foo [bar* baz]
2661 | 
2662 | --------------------------------------------------------------------------------
2663 | 
2664 | (inline
2665 |   (shortcut_link
2666 |     (link_text)))
2667 | 
2668 | ================================================================================
2669 | Example 532 - https://github.github.com/gfm/#example-532
2670 | ================================================================================
2671 | [foo <bar attr="](baz)">
2672 | 
2673 | --------------------------------------------------------------------------------
2674 | 
2675 | (inline
2676 |   (html_tag))
2677 | 
2678 | ================================================================================
2679 | Example 533 - https://github.github.com/gfm/#example-533
2680 | ================================================================================
2681 | [foo`](/uri)`
2682 | 
2683 | --------------------------------------------------------------------------------
2684 | 
2685 | (inline
2686 |   (code_span
2687 |     (code_span_delimiter)
2688 |     (code_span_delimiter)))
2689 | 
2690 | ================================================================================
2691 | Example 534 - https://github.github.com/gfm/#example-534
2692 | ================================================================================
2693 | [foo<http://example.com/?search=](uri)>
2694 | 
2695 | --------------------------------------------------------------------------------
2696 | 
2697 | (inline
2698 |   (uri_autolink))
2699 | 
2700 | ================================================================================
2701 | Example 535 - https://github.github.com/gfm/#example-535
2702 | ================================================================================
2703 | [foo][bar]
2704 | 
2705 | --------------------------------------------------------------------------------
2706 | 
2707 | (inline
2708 |   (full_reference_link
2709 |     (link_text)
2710 |     (link_label)))
2711 | 
2712 | ================================================================================
2713 | Example 536 - https://github.github.com/gfm/#example-536
2714 | ================================================================================
2715 | [link [foo [bar]]][ref]
2716 | 
2717 | --------------------------------------------------------------------------------
2718 | 
2719 | (inline
2720 |   (shortcut_link
2721 |     (link_text))
2722 |   (shortcut_link
2723 |     (link_text)))
2724 | ================================================================================
2725 | Example 537 - https://github.github.com/gfm/#example-537
2726 | ================================================================================
2727 | [link \[bar][ref]
2728 | 
2729 | --------------------------------------------------------------------------------
2730 | 
2731 | (inline
2732 |   (full_reference_link
2733 |     (link_text
2734 |       (backslash_escape))
2735 |     (link_label)))
2736 | 
2737 | ================================================================================
2738 | Example 539 - https://github.github.com/gfm/#example-539
2739 | ================================================================================
2740 | [![moon](moon.jpg)][ref]
2741 | 
2742 | --------------------------------------------------------------------------------
2743 | 
2744 | (inline
2745 |   (full_reference_link
2746 |     (link_text
2747 |       (image
2748 |         (image_description)
2749 |         (link_destination)))
2750 |     (link_label)))
2751 | 
2752 | ================================================================================
2753 | Example 540 - https://github.github.com/gfm/#example-540
2754 | ================================================================================
2755 | [foo [bar](/uri)][ref]
2756 | 
2757 | --------------------------------------------------------------------------------
2758 | 
2759 | (inline
2760 |   (inline_link
2761 |     (link_text)
2762 |     (link_destination))
2763 |   (shortcut_link
2764 |     (link_text)))
2765 | 
2766 | ================================================================================
2767 | Example 541 - https://github.github.com/gfm/#example-541
2768 | ================================================================================
2769 | [foo *bar [baz][ref]*][ref]
2770 | 
2771 | --------------------------------------------------------------------------------
2772 | 
2773 | (inline
2774 |   (emphasis
2775 |     (emphasis_delimiter)
2776 |     (full_reference_link
2777 |       (link_text)
2778 |       (link_label))
2779 |     (emphasis_delimiter))
2780 |   (shortcut_link
2781 |     (link_text)))
2782 | 
2783 | ================================================================================
2784 | Example 542 - https://github.github.com/gfm/#example-542
2785 | ================================================================================
2786 | *[foo*][ref]
2787 | 
2788 | --------------------------------------------------------------------------------
2789 | 
2790 | (inline
2791 |   (full_reference_link
2792 |     (link_text)
2793 |     (link_label)))
2794 | 
2795 | ================================================================================
2796 | Example 543 - https://github.github.com/gfm/#example-543
2797 | ================================================================================
2798 | [foo *bar][ref]*
2799 | 
2800 | --------------------------------------------------------------------------------
2801 | 
2802 | (inline
2803 |   (full_reference_link
2804 |     (link_text)
2805 |     (link_label)))
2806 | 
2807 | ================================================================================
2808 | Example 544 - https://github.github.com/gfm/#example-544
2809 | ================================================================================
2810 | [foo <bar attr="][ref]">
2811 | 
2812 | --------------------------------------------------------------------------------
2813 | 
2814 | (inline
2815 |   (html_tag))
2816 | 
2817 | ================================================================================
2818 | Example 545 - https://github.github.com/gfm/#example-545
2819 | ================================================================================
2820 | [foo`][ref]`
2821 | 
2822 | --------------------------------------------------------------------------------
2823 | 
2824 | (inline
2825 |   (code_span
2826 |     (code_span_delimiter)
2827 |     (code_span_delimiter)))
2828 | 
2829 | ================================================================================
2830 | Example 546 - https://github.github.com/gfm/#example-546
2831 | ================================================================================
2832 | [foo<http://example.com/?search=][ref]>
2833 | 
2834 | --------------------------------------------------------------------------------
2835 | 
2836 | (inline
2837 |   (uri_autolink))
2838 | 
2839 | ================================================================================
2840 | Example 547 - https://github.github.com/gfm/#example-547
2841 | ================================================================================
2842 | [foo][BaR]
2843 | 
2844 | --------------------------------------------------------------------------------
2845 | 
2846 | (inline
2847 |   (full_reference_link
2848 |     (link_text)
2849 |     (link_label)))
2850 | 
2851 | ================================================================================
2852 | Example 548 - https://github.github.com/gfm/#example-548
2853 | ================================================================================
2854 | [ẞ]
2855 | 
2856 | --------------------------------------------------------------------------------
2857 | 
2858 | (inline
2859 |   (shortcut_link
2860 |     (link_text)))
2861 | 
2862 | ================================================================================
2863 | Example 549 - https://github.github.com/gfm/#example-549
2864 | ================================================================================
2865 | 
2866 | [Baz][Foo bar]
2867 | 
2868 | --------------------------------------------------------------------------------
2869 | 
2870 | (inline
2871 |   (full_reference_link
2872 |     (link_text)
2873 |     (link_label)))
2874 | 
2875 | ================================================================================
2876 | Example 550 - https://github.github.com/gfm/#example-550
2877 | ================================================================================
2878 | [foo] [bar]
2879 | 
2880 | --------------------------------------------------------------------------------
2881 | 
2882 | (inline
2883 |   (shortcut_link
2884 |     (link_text))
2885 |   (shortcut_link
2886 |     (link_text)))
2887 | 
2888 | ================================================================================
2889 | Example 551 - https://github.github.com/gfm/#example-551
2890 | ================================================================================
2891 | [foo]
2892 | [bar]
2893 | 
2894 | --------------------------------------------------------------------------------
2895 | 
2896 | (inline
2897 |   (shortcut_link
2898 |     (link_text))
2899 |   (shortcut_link
2900 |     (link_text)))
2901 | 
2902 | ================================================================================
2903 | Example 552 - https://github.github.com/gfm/#example-552
2904 | ================================================================================
2905 | [bar][foo]
2906 | 
2907 | --------------------------------------------------------------------------------
2908 | 
2909 | (inline
2910 |   (full_reference_link
2911 |     (link_text)
2912 |     (link_label)))
2913 | 
2914 | ================================================================================
2915 | Example 553 - https://github.github.com/gfm/#example-553
2916 | ================================================================================
2917 | [bar][foo\!]
2918 | 
2919 | --------------------------------------------------------------------------------
2920 | 
2921 | (inline
2922 |   (full_reference_link
2923 |     (link_text)
2924 |     (link_label
2925 |       (backslash_escape))))
2926 | 
2927 | ================================================================================
2928 | Example 554 - https://github.github.com/gfm/#example-554
2929 | ================================================================================
2930 | [foo][ref[]
2931 | 
2932 | --------------------------------------------------------------------------------
2933 | 
2934 | (inline
2935 |   (shortcut_link
2936 |     (link_text)))
2937 | 
2938 | ================================================================================
2939 | Example 555 - https://github.github.com/gfm/#example-555
2940 | ================================================================================
2941 | [foo][ref[bar]]
2942 | 
2943 | --------------------------------------------------------------------------------
2944 | 
2945 | (inline
2946 |   (shortcut_link
2947 |     (link_text))
2948 |   (shortcut_link
2949 |     (link_text)))
2950 | 
2951 | ================================================================================
2952 | Example 557 - https://github.github.com/gfm/#example-557
2953 | ================================================================================
2954 | [foo][ref\[]
2955 | 
2956 | --------------------------------------------------------------------------------
2957 | 
2958 | (inline
2959 |   (full_reference_link
2960 |     (link_text)
2961 |     (link_label
2962 |       (backslash_escape))))
2963 | 
2964 | ================================================================================
2965 | Example 558 - https://github.github.com/gfm/#example-558
2966 | ================================================================================
2967 | [bar\\]
2968 | 
2969 | --------------------------------------------------------------------------------
2970 | 
2971 | (inline
2972 |   (shortcut_link
2973 |     (link_text
2974 |       (backslash_escape))))
2975 | 
2976 | ================================================================================
2977 | Example 559 - https://github.github.com/gfm/#example-559
2978 | ================================================================================
2979 | []
2980 | 
2981 | --------------------------------------------------------------------------------
2982 | 
2983 | (inline)
2984 | 
2985 | ================================================================================
2986 | Example 561 - https://github.github.com/gfm/#example-561
2987 | ================================================================================
2988 | [foo][]
2989 | 
2990 | --------------------------------------------------------------------------------
2991 | 
2992 | (inline
2993 |   (collapsed_reference_link
2994 |     (link_text)))
2995 | 
2996 | ================================================================================
2997 | Example 562 - https://github.github.com/gfm/#example-562
2998 | ================================================================================
2999 | [*foo* bar][]
3000 | 
3001 | --------------------------------------------------------------------------------
3002 | 
3003 | (inline
3004 |   (collapsed_reference_link
3005 |     (link_text
3006 |       (emphasis
3007 |         (emphasis_delimiter)
3008 |         (emphasis_delimiter)))))
3009 | 
3010 | ================================================================================
3011 | Example 563 - https://github.github.com/gfm/#example-563
3012 | ================================================================================
3013 | [Foo][]
3014 | 
3015 | --------------------------------------------------------------------------------
3016 | 
3017 | (inline
3018 |   (collapsed_reference_link
3019 |     (link_text)))
3020 | 
3021 | ================================================================================
3022 | Example 564 - https://github.github.com/gfm/#example-564
3023 | ================================================================================
3024 | [foo]
3025 | []
3026 | 
3027 | 
3028 | --------------------------------------------------------------------------------
3029 | 
3030 | (inline
3031 |   (shortcut_link
3032 |     (link_text)))
3033 | 
3034 | ================================================================================
3035 | Example 565 - https://github.github.com/gfm/#example-565
3036 | ================================================================================
3037 | [foo]
3038 | 
3039 | --------------------------------------------------------------------------------
3040 | 
3041 | (inline
3042 |   (shortcut_link
3043 |     (link_text)))
3044 | 
3045 | ================================================================================
3046 | Example 566 - https://github.github.com/gfm/#example-566
3047 | ================================================================================
3048 | [*foo* bar]
3049 | 
3050 | --------------------------------------------------------------------------------
3051 | 
3052 | (inline
3053 |   (shortcut_link
3054 |     (link_text
3055 |       (emphasis
3056 |         (emphasis_delimiter)
3057 |         (emphasis_delimiter)))))
3058 | 
3059 | ================================================================================
3060 | Example 568 - https://github.github.com/gfm/#example-568
3061 | ================================================================================
3062 | [[bar [foo]
3063 | 
3064 | --------------------------------------------------------------------------------
3065 | 
3066 | (inline
3067 |   (shortcut_link
3068 |     (link_text)))
3069 | 
3070 | ================================================================================
3071 | Example 569 - https://github.github.com/gfm/#example-569
3072 | ================================================================================
3073 | [Foo]
3074 | 
3075 | --------------------------------------------------------------------------------
3076 | 
3077 | (inline
3078 |   (shortcut_link
3079 |     (link_text)))
3080 | 
3081 | ================================================================================
3082 | Example 570 - https://github.github.com/gfm/#example-570
3083 | ================================================================================
3084 | [foo] bar
3085 | 
3086 | --------------------------------------------------------------------------------
3087 | 
3088 | (inline
3089 |   (shortcut_link
3090 |     (link_text)))
3091 | 
3092 | ================================================================================
3093 | Example 571 - https://github.github.com/gfm/#example-571
3094 | ================================================================================
3095 | \[foo]
3096 | 
3097 | --------------------------------------------------------------------------------
3098 | 
3099 | (inline
3100 |   (backslash_escape))
3101 | 
3102 | ================================================================================
3103 | Example 572 - https://github.github.com/gfm/#example-572
3104 | ================================================================================
3105 | *[foo*]
3106 | 
3107 | --------------------------------------------------------------------------------
3108 | 
3109 | (inline
3110 |   (shortcut_link
3111 |     (link_text)))
3112 | 
3113 | ================================================================================
3114 | Example 573 - https://github.github.com/gfm/#example-573
3115 | ================================================================================
3116 | [foo][bar]
3117 | 
3118 | --------------------------------------------------------------------------------
3119 | 
3120 | (inline
3121 |   (full_reference_link
3122 |     (link_text)
3123 |     (link_label)))
3124 | 
3125 | ================================================================================
3126 | Example 574 - https://github.github.com/gfm/#example-574
3127 | ================================================================================
3128 | [foo][]
3129 | 
3130 | --------------------------------------------------------------------------------
3131 | 
3132 | (inline
3133 |   (collapsed_reference_link
3134 |     (link_text)))
3135 | 
3136 | ================================================================================
3137 | Example 575 - https://github.github.com/gfm/#example-575
3138 | ================================================================================
3139 | [foo]()
3140 | 
3141 | --------------------------------------------------------------------------------
3142 | 
3143 | (inline
3144 |   (inline_link
3145 |     (link_text)))
3146 | 
3147 | ================================================================================
3148 | Example 576 - https://github.github.com/gfm/#example-576
3149 | ================================================================================
3150 | [foo](not a link)
3151 | 
3152 | --------------------------------------------------------------------------------
3153 | 
3154 | (inline
3155 |   (shortcut_link
3156 |     (link_text)))
3157 | 
3158 | ================================================================================
3159 | Example 577 - https://github.github.com/gfm/#example-577
3160 | ================================================================================
3161 | [foo][bar][baz]
3162 | 
3163 | --------------------------------------------------------------------------------
3164 | 
3165 | (inline
3166 |   (full_reference_link
3167 |     (link_text)
3168 |     (link_label))
3169 |   (shortcut_link
3170 |     (link_text)))
3171 | 
3172 | ================================================================================
3173 | Example 578 - https://github.github.com/gfm/#example-578
3174 | ================================================================================
3175 | [foo][bar][baz]
3176 | 
3177 | --------------------------------------------------------------------------------
3178 | 
3179 | (inline
3180 |   (full_reference_link
3181 |     (link_text)
3182 |     (link_label))
3183 |   (shortcut_link
3184 |     (link_text)))
3185 | 
3186 | ================================================================================
3187 | Example 579 - https://github.github.com/gfm/#example-579
3188 | ================================================================================
3189 | [foo][bar][baz]
3190 | 
3191 | --------------------------------------------------------------------------------
3192 | 
3193 | (inline
3194 |   (full_reference_link
3195 |     (link_text)
3196 |     (link_label))
3197 |   (shortcut_link
3198 |     (link_text)))
3199 | 
3200 | ================================================================================
3201 | Example 580 - https://github.github.com/gfm/#example-580
3202 | ================================================================================
3203 | ![foo](/url "title")
3204 | 
3205 | --------------------------------------------------------------------------------
3206 | 
3207 | (inline
3208 |   (image
3209 |     (image_description)
3210 |     (link_destination)
3211 |     (link_title)))
3212 | 
3213 | ================================================================================
3214 | Example 581 - https://github.github.com/gfm/#example-581
3215 | ================================================================================
3216 | ![foo *bar*]
3217 | 
3218 | --------------------------------------------------------------------------------
3219 | 
3220 | (inline
3221 |   (image
3222 |     (image_description
3223 |       (emphasis
3224 |         (emphasis_delimiter)
3225 |         (emphasis_delimiter)))))
3226 | 
3227 | ================================================================================
3228 | Example 582 - https://github.github.com/gfm/#example-582
3229 | ================================================================================
3230 | ![foo ![bar](/url)](/url2)
3231 | 
3232 | --------------------------------------------------------------------------------
3233 | 
3234 | (inline
3235 |   (image
3236 |     (image_description
3237 |       (image
3238 |         (image_description)
3239 |         (link_destination)))
3240 |     (link_destination)))
3241 | 
3242 | ================================================================================
3243 | Example 583 - https://github.github.com/gfm/#example-583
3244 | ================================================================================
3245 | ![foo [bar](/url)](/url2)
3246 | 
3247 | --------------------------------------------------------------------------------
3248 | 
3249 | (inline
3250 |   (image
3251 |     (image_description
3252 |       (inline_link
3253 |         (link_text)
3254 |         (link_destination)))
3255 |     (link_destination)))
3256 | 
3257 | ================================================================================
3258 | Example 584 - https://github.github.com/gfm/#example-584
3259 | ================================================================================
3260 | ![foo *bar*][]
3261 | 
3262 | --------------------------------------------------------------------------------
3263 | 
3264 | (inline
3265 |   (image
3266 |     (image_description
3267 |       (emphasis
3268 |         (emphasis_delimiter)
3269 |         (emphasis_delimiter)))))
3270 | 
3271 | ================================================================================
3272 | Example 585 - https://github.github.com/gfm/#example-585
3273 | ================================================================================
3274 | ![foo *bar*][foobar]
3275 | 
3276 | --------------------------------------------------------------------------------
3277 | 
3278 | (inline
3279 |   (image
3280 |     (image_description
3281 |       (emphasis
3282 |         (emphasis_delimiter)
3283 |         (emphasis_delimiter)))
3284 |     (link_label)))
3285 | 
3286 | ================================================================================
3287 | Example 586 - https://github.github.com/gfm/#example-586
3288 | ================================================================================
3289 | ![foo](train.jpg)
3290 | 
3291 | --------------------------------------------------------------------------------
3292 | 
3293 | (inline
3294 |   (image
3295 |     (image_description)
3296 |     (link_destination)))
3297 | 
3298 | ================================================================================
3299 | Example 587 - https://github.github.com/gfm/#example-587
3300 | ================================================================================
3301 | My ![foo bar](/path/to/train.jpg  "title"   )
3302 | 
3303 | --------------------------------------------------------------------------------
3304 | 
3305 | (inline
3306 |   (image
3307 |     (image_description)
3308 |     (link_destination)
3309 |     (link_title)))
3310 | 
3311 | ================================================================================
3312 | Example 589 - https://github.github.com/gfm/#example-589
3313 | ================================================================================
3314 | ![](/url)
3315 | 
3316 | --------------------------------------------------------------------------------
3317 | 
3318 | (inline
3319 |   (image
3320 |     (link_destination)))
3321 | 
3322 | ================================================================================
3323 | Example 590 - https://github.github.com/gfm/#example-590
3324 | ================================================================================
3325 | ![foo][bar]
3326 | 
3327 | --------------------------------------------------------------------------------
3328 | 
3329 | (inline
3330 |   (image
3331 |     (image_description)
3332 |     (link_label)))
3333 | 
3334 | ================================================================================
3335 | Example 591 - https://github.github.com/gfm/#example-591
3336 | ================================================================================
3337 | ![foo][bar]
3338 | 
3339 | --------------------------------------------------------------------------------
3340 | 
3341 | (inline
3342 |   (image
3343 |     (image_description)
3344 |     (link_label)))
3345 | 
3346 | ================================================================================
3347 | Example 592 - https://github.github.com/gfm/#example-592
3348 | ================================================================================
3349 | ![foo][]
3350 | 
3351 | --------------------------------------------------------------------------------
3352 | 
3353 | (inline
3354 |   (image
3355 |     (image_description)))
3356 | 
3357 | ================================================================================
3358 | Example 593 - https://github.github.com/gfm/#example-593
3359 | ================================================================================
3360 | ![*foo* bar][]
3361 | 
3362 | --------------------------------------------------------------------------------
3363 | 
3364 | (inline
3365 |   (image
3366 |     (image_description
3367 |       (emphasis
3368 |         (emphasis_delimiter)
3369 |         (emphasis_delimiter)))))
3370 | 
3371 | ================================================================================
3372 | Example 594 - https://github.github.com/gfm/#example-594
3373 | ================================================================================
3374 | ![Foo][]
3375 | 
3376 | --------------------------------------------------------------------------------
3377 | 
3378 | (inline
3379 |   (image
3380 |     (image_description)))
3381 | 
3382 | ================================================================================
3383 | Example 595 - https://github.github.com/gfm/#example-595
3384 | ================================================================================
3385 | ![foo]
3386 | []
3387 | 
3388 | --------------------------------------------------------------------------------
3389 | 
3390 | (inline
3391 |   (image
3392 |     (image_description)))
3393 | 
3394 | ================================================================================
3395 | Example 596 - https://github.github.com/gfm/#example-596
3396 | ================================================================================
3397 | ![foo]
3398 | 
3399 | --------------------------------------------------------------------------------
3400 | 
3401 | (inline
3402 |   (image
3403 |     (image_description)))
3404 | 
3405 | ================================================================================
3406 | Example 597 - https://github.github.com/gfm/#example-597
3407 | ================================================================================
3408 | ![*foo* bar]
3409 | 
3410 | --------------------------------------------------------------------------------
3411 | 
3412 | (inline
3413 |   (image
3414 |     (image_description
3415 |       (emphasis
3416 |         (emphasis_delimiter)
3417 |         (emphasis_delimiter)))))
3418 | 
3419 | ================================================================================
3420 | Example 598 - https://github.github.com/gfm/#example-598
3421 | ================================================================================
3422 | ![[foo]]
3423 | 
3424 | --------------------------------------------------------------------------------
3425 | 
3426 | (inline
3427 |   (image
3428 |     (image_description
3429 |       (shortcut_link
3430 |         (link_text)))))
3431 | 
3432 | ================================================================================
3433 | Example 599 - https://github.github.com/gfm/#example-599
3434 | ================================================================================
3435 | ![Foo]
3436 | 
3437 | --------------------------------------------------------------------------------
3438 | 
3439 | (inline
3440 |   (image
3441 |     (image_description)))
3442 | 
3443 | ================================================================================
3444 | Example 600 - https://github.github.com/gfm/#example-600
3445 | ================================================================================
3446 | !\[foo]
3447 | 
3448 | --------------------------------------------------------------------------------
3449 | 
3450 | (inline
3451 |   (backslash_escape))
3452 | 
3453 | ================================================================================
3454 | Example 601 - https://github.github.com/gfm/#example-601
3455 | ================================================================================
3456 | \![foo]
3457 | 
3458 | --------------------------------------------------------------------------------
3459 | 
3460 | (inline
3461 |   (backslash_escape)
3462 |   (shortcut_link
3463 |     (link_text)))
3464 | 
3465 | ================================================================================
3466 | Example 602 - https://github.github.com/gfm/#example-602
3467 | ================================================================================
3468 | <http://foo.bar.baz>
3469 | 
3470 | --------------------------------------------------------------------------------
3471 | 
3472 | (inline
3473 |   (uri_autolink))
3474 | 
3475 | ================================================================================
3476 | Example 603 - https://github.github.com/gfm/#example-603
3477 | ================================================================================
3478 | <http://foo.bar.baz/test?q=hello&id=22&boolean>
3479 | 
3480 | --------------------------------------------------------------------------------
3481 | 
3482 | (inline
3483 |   (uri_autolink))
3484 | 
3485 | ================================================================================
3486 | Example 604 - https://github.github.com/gfm/#example-604
3487 | ================================================================================
3488 | <irc://foo.bar:2233/baz>
3489 | 
3490 | --------------------------------------------------------------------------------
3491 | 
3492 | (inline
3493 |   (uri_autolink))
3494 | 
3495 | ================================================================================
3496 | Example 605 - https://github.github.com/gfm/#example-605
3497 | ================================================================================
3498 | <MAILTO:[email protected]>
3499 | 
3500 | --------------------------------------------------------------------------------
3501 | 
3502 | (inline
3503 |   (uri_autolink))
3504 | 
3505 | ================================================================================
3506 | Example 606 - https://github.github.com/gfm/#example-606
3507 | ================================================================================
3508 | <a+b+c:d>
3509 | 
3510 | --------------------------------------------------------------------------------
3511 | 
3512 | (inline
3513 |   (uri_autolink))
3514 | 
3515 | ================================================================================
3516 | Example 607 - https://github.github.com/gfm/#example-607
3517 | ================================================================================
3518 | <made-up-scheme://foo,bar>
3519 | 
3520 | --------------------------------------------------------------------------------
3521 | 
3522 | (inline
3523 |   (uri_autolink))
3524 | 
3525 | ================================================================================
3526 | Example 608 - https://github.github.com/gfm/#example-608
3527 | ================================================================================
3528 | <http://../>
3529 | 
3530 | --------------------------------------------------------------------------------
3531 | 
3532 | (inline
3533 |   (uri_autolink))
3534 | 
3535 | ================================================================================
3536 | Example 609 - https://github.github.com/gfm/#example-609
3537 | ================================================================================
3538 | <localhost:5001/foo>
3539 | 
3540 | --------------------------------------------------------------------------------
3541 | 
3542 | (inline
3543 |   (uri_autolink))
3544 | 
3545 | ================================================================================
3546 | Example 610 - https://github.github.com/gfm/#example-610
3547 | ================================================================================
3548 | <http://foo.bar/baz bim>
3549 | 
3550 | --------------------------------------------------------------------------------
3551 | 
3552 | (inline)
3553 | 
3554 | ================================================================================
3555 | Example 611 - https://github.github.com/gfm/#example-611
3556 | ================================================================================
3557 | <http://example.com/\[\>
3558 | 
3559 | --------------------------------------------------------------------------------
3560 | 
3561 | (inline
3562 |   (uri_autolink))
3563 | 
3564 | ================================================================================
3565 | Example 612 - https://github.github.com/gfm/#example-612
3566 | ================================================================================
3567 | <[email protected]>
3568 | 
3569 | --------------------------------------------------------------------------------
3570 | 
3571 | (inline
3572 |   (email_autolink))
3573 | 
3574 | ================================================================================
3575 | Example 613 - https://github.github.com/gfm/#example-613
3576 | ================================================================================
3577 | <[email protected]>
3578 | 
3579 | --------------------------------------------------------------------------------
3580 | 
3581 | (inline
3582 |   (email_autolink))
3583 | 
3584 | ================================================================================
3585 | Example 614 - https://github.github.com/gfm/#example-614
3586 | ================================================================================
3587 | <foo\[email protected]>
3588 | 
3589 | --------------------------------------------------------------------------------
3590 | 
3591 | (inline
3592 |   (backslash_escape))
3593 | 
3594 | ================================================================================
3595 | Example 615 - https://github.github.com/gfm/#example-615
3596 | ================================================================================
3597 | <>
3598 | 
3599 | --------------------------------------------------------------------------------
3600 | 
3601 | (inline)
3602 | 
3603 | ================================================================================
3604 | Example 616 - https://github.github.com/gfm/#example-616
3605 | ================================================================================
3606 | < http://foo.bar >
3607 | 
3608 | --------------------------------------------------------------------------------
3609 | 
3610 | (inline)
3611 | 
3612 | ================================================================================
3613 | Example 617 - https://github.github.com/gfm/#example-617
3614 | ================================================================================
3615 | <m:abc>
3616 | 
3617 | --------------------------------------------------------------------------------
3618 | 
3619 | (inline)
3620 | 
3621 | ================================================================================
3622 | Example 618 - https://github.github.com/gfm/#example-618
3623 | ================================================================================
3624 | <foo.bar.baz>
3625 | 
3626 | --------------------------------------------------------------------------------
3627 | 
3628 | (inline)
3629 | 
3630 | ================================================================================
3631 | Example 619 - https://github.github.com/gfm/#example-619
3632 | ================================================================================
3633 | http://example.com
3634 | 
3635 | --------------------------------------------------------------------------------
3636 | 
3637 | (inline)
3638 | 
3639 | ================================================================================
3640 | Example 620 - https://github.github.com/gfm/#example-620
3641 | ================================================================================
3642 | [email protected]
3643 | 
3644 | --------------------------------------------------------------------------------
3645 | 
3646 | (inline)
3647 | 
3648 | ================================================================================
3649 | Example 632 - https://github.github.com/gfm/#example-632
3650 | ================================================================================
3651 | <a><bab><c2c>
3652 | 
3653 | --------------------------------------------------------------------------------
3654 | 
3655 | (inline
3656 |   (html_tag)
3657 |   (html_tag)
3658 |   (html_tag))
3659 | 
3660 | ================================================================================
3661 | Example 633 - https://github.github.com/gfm/#example-633
3662 | ================================================================================
3663 | <a/><b2/>
3664 | 
3665 | --------------------------------------------------------------------------------
3666 | 
3667 | (inline
3668 |   (html_tag)
3669 |   (html_tag))
3670 | 
3671 | ================================================================================
3672 | Example 634 - https://github.github.com/gfm/#example-634
3673 | ================================================================================
3674 | <a  /><b2
3675 | data="foo" >
3676 | 
3677 | --------------------------------------------------------------------------------
3678 | 
3679 | (inline
3680 |   (html_tag)
3681 |   (html_tag))
3682 | 
3683 | ================================================================================
3684 | Example 636 - https://github.github.com/gfm/#example-636
3685 | ================================================================================
3686 | Foo <responsive-image src="foo.jpg" />
3687 | 
3688 | --------------------------------------------------------------------------------
3689 | 
3690 | (inline
3691 |   (html_tag))
3692 | 
3693 | ================================================================================
3694 | Example 637 - https://github.github.com/gfm/#example-637
3695 | ================================================================================
3696 | <33> <__>
3697 | 
3698 | --------------------------------------------------------------------------------
3699 | 
3700 | (inline)
3701 | 
3702 | ================================================================================
3703 | Example 638 - https://github.github.com/gfm/#example-638
3704 | ================================================================================
3705 | <a h*#ref="hi">
3706 | 
3707 | --------------------------------------------------------------------------------
3708 | 
3709 | (inline
3710 |   (tag))
3711 | 
3712 | ================================================================================
3713 | Example 639 - https://github.github.com/gfm/#example-639
3714 | ================================================================================
3715 | <a href="hi'> <a href=hi'>
3716 | 
3717 | --------------------------------------------------------------------------------
3718 | 
3719 | (inline)
3720 | 
3721 | ================================================================================
3722 | Example 640 - https://github.github.com/gfm/#example-640
3723 | ================================================================================
3724 | < a><
3725 | foo><bar/ >
3726 | <foo bar=baz
3727 | bim!bop />
3728 | 
3729 | --------------------------------------------------------------------------------
3730 | 
3731 | (inline)
3732 | 
3733 | ================================================================================
3734 | Example 641 - https://github.github.com/gfm/#example-641
3735 | ================================================================================
3736 | <a href='bar'title=title>
3737 | 
3738 | --------------------------------------------------------------------------------
3739 | 
3740 | (inline)
3741 | 
3742 | ================================================================================
3743 | Example 642 - https://github.github.com/gfm/#example-642
3744 | ================================================================================
3745 | </a></foo >
3746 | 
3747 | --------------------------------------------------------------------------------
3748 | 
3749 | (inline
3750 |   (html_tag)
3751 |   (html_tag))
3752 | 
3753 | ================================================================================
3754 | Example 643 - https://github.github.com/gfm/#example-643
3755 | ================================================================================
3756 | </a href="foo">
3757 | 
3758 | --------------------------------------------------------------------------------
3759 | 
3760 | (inline)
3761 | 
3762 | ================================================================================
3763 | Example 644 - https://github.github.com/gfm/#example-644
3764 | ================================================================================
3765 | foo <!-- this is a
3766 | comment - with hyphen -->
3767 | 
3768 | --------------------------------------------------------------------------------
3769 | 
3770 | (inline
3771 |   (html_tag))
3772 | 
3773 | ================================================================================
3774 | Example 645 - https://github.github.com/gfm/#example-645
3775 | ================================================================================
3776 | foo <!-- not a comment -- two hyphens -->
3777 | 
3778 | --------------------------------------------------------------------------------
3779 | 
3780 | (inline)
3781 | 
3782 | ================================================================================
3783 | Example 646 - https://github.github.com/gfm/#example-646
3784 | ================================================================================
3785 | foo <!--> foo -->
3786 | foo <!-- foo--->
3787 | 
3788 | --------------------------------------------------------------------------------
3789 | 
3790 | (inline)
3791 | 
3792 | ================================================================================
3793 | Example 647 - https://github.github.com/gfm/#example-647
3794 | ================================================================================
3795 | foo <?php echo $a; ?>
3796 | 
3797 | --------------------------------------------------------------------------------
3798 | 
3799 | (inline
3800 |   (html_tag))
3801 | 
3802 | ================================================================================
3803 | Example 648 - https://github.github.com/gfm/#example-648
3804 | ================================================================================
3805 | foo <!ELEMENT br EMPTY>
3806 | 
3807 | --------------------------------------------------------------------------------
3808 | 
3809 | (inline
3810 |   (html_tag))
3811 | 
3812 | ================================================================================
3813 | Example 649 - https://github.github.com/gfm/#example-649
3814 | ================================================================================
3815 | foo <![CDATA[>&<]]>
3816 | 
3817 | --------------------------------------------------------------------------------
3818 | 
3819 | (inline
3820 |   (html_tag))
3821 | 
3822 | ================================================================================
3823 | Example 650 - https://github.github.com/gfm/#example-650
3824 | ================================================================================
3825 | foo <a href="&ouml;">
3826 | 
3827 | --------------------------------------------------------------------------------
3828 | 
3829 | (inline
3830 |   (html_tag))
3831 | 
3832 | ================================================================================
3833 | Example 651 - https://github.github.com/gfm/#example-651
3834 | ================================================================================
3835 | foo <a href="\*">
3836 | 
3837 | --------------------------------------------------------------------------------
3838 | 
3839 | (inline
3840 |   (html_tag))
3841 | 
3842 | ================================================================================
3843 | Example 652 - https://github.github.com/gfm/#example-652
3844 | ================================================================================
3845 | <a href="\"">
3846 | 
3847 | --------------------------------------------------------------------------------
3848 | 
3849 | (inline
3850 |   (backslash_escape))
3851 | 
3852 | ================================================================================
3853 | Example 654 - https://github.github.com/gfm/#example-654
3854 | ================================================================================
3855 | foo  
3856 | baz
3857 | 
3858 | --------------------------------------------------------------------------------
3859 | 
3860 | (inline
3861 |   (hard_line_break))
3862 | 
3863 | ================================================================================
3864 | Example 655 - https://github.github.com/gfm/#example-655
3865 | ================================================================================
3866 | foo\
3867 | baz
3868 | 
3869 | --------------------------------------------------------------------------------
3870 | 
3871 | (inline
3872 |   (hard_line_break))
3873 | 
3874 | ================================================================================
3875 | Example 656 - https://github.github.com/gfm/#example-656
3876 | ================================================================================
3877 | foo             
3878 | baz
3879 | 
3880 | --------------------------------------------------------------------------------
3881 | 
3882 | (inline
3883 |   (hard_line_break))
3884 | 
3885 | ================================================================================
3886 | Example 657 - https://github.github.com/gfm/#example-657
3887 | ================================================================================
3888 | foo  
3889 |      bar
3890 | 
3891 | --------------------------------------------------------------------------------
3892 | 
3893 | (inline
3894 |   (hard_line_break))
3895 | 
3896 | ================================================================================
3897 | Example 658 - https://github.github.com/gfm/#example-658
3898 | ================================================================================
3899 | foo\
3900 |      bar
3901 | 
3902 | --------------------------------------------------------------------------------
3903 | 
3904 | (inline
3905 |   (hard_line_break))
3906 | 
3907 | ================================================================================
3908 | Example 659 - https://github.github.com/gfm/#example-659
3909 | ================================================================================
3910 | *foo  
3911 | bar*
3912 | 
3913 | --------------------------------------------------------------------------------
3914 | 
3915 | (inline
3916 |   (emphasis
3917 |     (emphasis_delimiter)
3918 |     (hard_line_break)
3919 |     (emphasis_delimiter)))
3920 | 
3921 | ================================================================================
3922 | Example 660 - https://github.github.com/gfm/#example-660
3923 | ================================================================================
3924 | *foo\
3925 | bar*
3926 | 
3927 | --------------------------------------------------------------------------------
3928 | 
3929 | (inline
3930 |   (emphasis
3931 |     (emphasis_delimiter)
3932 |     (hard_line_break)
3933 |     (emphasis_delimiter)))
3934 | 
3935 | ================================================================================
3936 | Example 661 - https://github.github.com/gfm/#example-661
3937 | ================================================================================
3938 | `code
3939 | span`
3940 | 
3941 | --------------------------------------------------------------------------------
3942 | 
3943 | (inline
3944 |   (code_span
3945 |     (code_span_delimiter)
3946 |     (code_span_delimiter)))
3947 | 
3948 | ================================================================================
3949 | Example 662 - https://github.github.com/gfm/#example-662
3950 | ================================================================================
3951 | `code\
3952 | span`
3953 | 
3954 | --------------------------------------------------------------------------------
3955 | 
3956 | (inline
3957 |   (code_span
3958 |     (code_span_delimiter)
3959 |     (code_span_delimiter)))
3960 | 
3961 | ================================================================================
3962 | Example 663 - https://github.github.com/gfm/#example-663
3963 | ================================================================================
3964 | <a href="foo
3965 | bar">
3966 | 
3967 | --------------------------------------------------------------------------------
3968 | 
3969 | (inline
3970 |   (html_tag))
3971 | 
3972 | ================================================================================
3973 | Example 664 - https://github.github.com/gfm/#example-664
3974 | ================================================================================
3975 | <a href="foo\
3976 | bar">
3977 | 
3978 | --------------------------------------------------------------------------------
3979 | 
3980 | (inline
3981 |   (html_tag))
3982 | 
3983 | ================================================================================
3984 | Example 665 - https://github.github.com/gfm/#example-665
3985 | ================================================================================
3986 | foo\
3987 | --------------------------------------------------------------------------------
3988 | 
3989 | (inline)
3990 | 
3991 | ================================================================================
3992 | Example 666 - https://github.github.com/gfm/#example-666
3993 | ================================================================================
3994 | foo  
3995 | --------------------------------------------------------------------------------
3996 | 
3997 | (inline)
3998 | 
3999 | ================================================================================
4000 | Example 669 - https://github.github.com/gfm/#example-669
4001 | ================================================================================
4002 | foo
4003 | baz
4004 | 
4005 | --------------------------------------------------------------------------------
4006 | 
4007 | (inline)
4008 | 
4009 | ================================================================================
4010 | Example 670 - https://github.github.com/gfm/#example-670
4011 | ================================================================================
4012 | foo
4013 |  baz
4014 | 
4015 | --------------------------------------------------------------------------------
4016 | 
4017 | (inline)
4018 | 
4019 | ================================================================================
4020 | Example 671 - https://github.github.com/gfm/#example-671
4021 | ================================================================================
4022 | hello $.;'there
4023 | 
4024 | --------------------------------------------------------------------------------
4025 | 
4026 | (inline)
4027 | 
4028 | ================================================================================
4029 | Example 672 - https://github.github.com/gfm/#example-672
4030 | ================================================================================
4031 | Foo χρῆν
4032 | 
4033 | --------------------------------------------------------------------------------
4034 | 
4035 | (inline)
4036 | 
4037 | ================================================================================
4038 | Example 673 - https://github.github.com/gfm/#example-673
4039 | ================================================================================
4040 | Multiple     spaces
4041 | 
4042 | --------------------------------------------------------------------------------
4043 | 
4044 | (inline)
4045 | 
4046 | 
```
Page 6/10FirstPrevNextLast