123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- >>> Setext headings - 50
- Foo *bar*
- =========
- Foo *bar*
- ---------
- <<<
- <h1>Foo <em>bar</em></h1>
- <h2>Foo <em>bar</em></h2>
- >>> Setext headings - 51
- Foo *bar
- baz*
- ====
- <<<
- <h1>Foo <em>bar
- baz</em></h1>
- >>> Setext headings - 52
- Foo *bar
- baz*
- ====
- <<<
- <h1> Foo <em>bar
- baz</em></h1>
- >>> Setext headings - 53
- Foo
- -------------------------
- Foo
- =
- <<<
- <h2>Foo</h2>
- <h1>Foo</h1>
- >>> Setext headings - 54
- Foo
- ---
- Foo
- -----
- Foo
- ===
- <<<
- <h2> Foo</h2>
- <h2> Foo</h2>
- <h1> Foo</h1>
- >>> Setext headings - 55
- Foo
- ---
- Foo
- ---
- <<<
- <pre><code>Foo
- ---
- Foo
- </code></pre>
- <hr />
- >>> Setext headings - 56
- Foo
- ----
- <<<
- <h2>Foo</h2>
- >>> Setext headings - 57
- Foo
- ---
- <<<
- <p>Foo
- ---</p>
- >>> Setext headings - 58
- Foo
- = =
- Foo
- --- -
- <<<
- <p>Foo
- = =</p>
- <p>Foo</p>
- <hr />
- >>> Setext headings - 59
- Foo
- -----
- <<<
- <h2>Foo</h2>
- >>> Setext headings - 60
- Foo\
- ----
- <<<
- <h2>Foo\</h2>
- >>> Setext headings - 61
- `Foo
- ----
- `
- <a title="a lot
- ---
- of dashes"/>
- <<<
- <h2>`Foo</h2>
- <p>`</p>
- <h2><a title="a lot</h2>
- <p>of dashes"/></p>
- >>> Setext headings - 62
- > Foo
- ---
- <<<
- <blockquote>
- <p>Foo</p>
- </blockquote>
- <hr />
- >>> Setext headings - 63
- > foo
- bar
- ===
- <<<
- <blockquote>
- <p>foo
- bar
- ===</p>
- </blockquote>
- >>> Setext headings - 64
- - Foo
- ---
- <<<
- <ul>
- <li>Foo</li>
- </ul>
- <hr />
- >>> Setext headings - 65
- Foo
- Bar
- ---
- <<<
- <h2>Foo
- Bar</h2>
- >>> Setext headings - 66
- ---
- Foo
- ---
- Bar
- ---
- Baz
- <<<
- <hr />
- <h2>Foo</h2>
- <h2>Bar</h2>
- <p>Baz</p>
- >>> Setext headings - 67
- ====
- <<<
- <p>====</p>
- >>> Setext headings - 68
- ---
- ---
- <<<
- <hr />
- <hr />
- >>> Setext headings - 69
- - foo
- -----
- <<<
- <ul>
- <li>foo</li>
- </ul>
- <hr />
- >>> Setext headings - 70
- foo
- ---
- <<<
- <pre><code>foo
- </code></pre>
- <hr />
- >>> Setext headings - 71
- > foo
- -----
- <<<
- <blockquote>
- <p>foo</p>
- </blockquote>
- <hr />
- >>> Setext headings - 72
- \> foo
- ------
- <<<
- <h2>> foo</h2>
- >>> Setext headings - 73
- Foo
- bar
- ---
- baz
- <<<
- <p>Foo</p>
- <h2>bar</h2>
- <p>baz</p>
- >>> Setext headings - 74
- Foo
- bar
- ---
- baz
- <<<
- <p>Foo
- bar</p>
- <hr />
- <p>baz</p>
- >>> Setext headings - 75
- Foo
- bar
- * * *
- baz
- <<<
- <p>Foo
- bar</p>
- <hr />
- <p>baz</p>
- >>> Setext headings - 76
- Foo
- bar
- \---
- baz
- <<<
- <p>Foo
- bar
- ---
- baz</p>
|