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

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

(inline
  (code_span))

================================================================================
Example 363 - https://github.github.com/gfm/#example-363
:skip
================================================================================
*  a *

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

(inline)

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

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

(inline)

================================================================================
Example 394 - https://github.github.com/gfm/#example-394
:skip
================================================================================
a__"foo"__

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

(inline)

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

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

(inline)

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

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

(inline)

================================================================================
Example 407 - https://github.github.com/gfm/#example-407
:skip
================================================================================
__(__foo)

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

(inline)

================================================================================
Example 406 - https://github.github.com/gfm/#example-406
:skip
================================================================================
__foo bar __

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

(inline)

================================================================================
Example 411 - https://github.github.com/gfm/#example-411
:skip
================================================================================
__foo__bar__baz__

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

(inline
  (strong_emphasis))

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

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

(inline
  (emphasis
    (strong_emphasis)))

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

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

(inline
  (emphasis))

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

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

(inline
  (emphasis
    (strong_emphasis)))

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

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

(inline
  (strong_emphasis
    (emphasis))))

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

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

(inline
  (link_text
    (emphasis
      (emphasis_delimiter)
      (strong_emphasis
        (emphasis_delimiter)
        (emphasis_delimiter)
        (emphasis_delimiter)
        (emphasis_delimiter))
      (code_span
        (code_span_delimiter)
        (code_span_delimiter))
      (emphasis_delimiter)))
  (link_destination))

================================================================================
Example 538 - https://github.github.com/gfm/#example-538
:skip
================================================================================
[link *foo **bar** `#`*][ref]

[ref]: /uri

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

(inline
  (full_reference_link
    (link_text
      (emphasis
        (strong_emphasis)
        (code_span)))
    (link_label)))
(link_reference_definition
  (link_label)
  (link_destination))

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

[
 ]: /uri

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

(inline)

================================================================================
Example 588 - https://github.github.com/gfm/#example-588
:skip
================================================================================
![foo](<url>)

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

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

================================================================================
Example 635 - https://github.github.com/gfm/#example-635
:skip
================================================================================
<a foo="bar" bam = 'baz <em>"</em>'
_boolean zoop:33=zoop:33 />

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

(inline
  (html_tag))
