123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537 |
- >>> Emphasis and strong emphasis - 360
- *foo bar*
- <<<
- <p><em>foo bar</em></p>
- >>> Emphasis and strong emphasis - 361
- a * foo bar*
- <<<
- <p>a * foo bar*</p>
- >>> Emphasis and strong emphasis - 362
- a*"foo"*
- <<<
- <p>a*"foo"*</p>
- >>> Emphasis and strong emphasis - 363
- * a *
- <<<
- <p>* a *</p>
- >>> Emphasis and strong emphasis - 364
- foo*bar*
- <<<
- <p>foo<em>bar</em></p>
- >>> Emphasis and strong emphasis - 365
- 5*6*78
- <<<
- <p>5<em>6</em>78</p>
- >>> Emphasis and strong emphasis - 366
- _foo bar_
- <<<
- <p><em>foo bar</em></p>
- >>> Emphasis and strong emphasis - 367
- _ foo bar_
- <<<
- <p>_ foo bar_</p>
- >>> Emphasis and strong emphasis - 368
- a_"foo"_
- <<<
- <p>a_"foo"_</p>
- >>> Emphasis and strong emphasis - 369
- foo_bar_
- <<<
- <p>foo_bar_</p>
- >>> Emphasis and strong emphasis - 370
- 5_6_78
- <<<
- <p>5_6_78</p>
- >>> Emphasis and strong emphasis - 371
- пристаням_стремятся_
- <<<
- <p>пристаням_стремятся_</p>
- >>> Emphasis and strong emphasis - 372
- aa_"bb"_cc
- <<<
- <p>aa_"bb"_cc</p>
- >>> Emphasis and strong emphasis - 373
- foo-_(bar)_
- <<<
- <p>foo-<em>(bar)</em></p>
- >>> Emphasis and strong emphasis - 374
- _foo*
- <<<
- <p>_foo*</p>
- >>> Emphasis and strong emphasis - 375
- *foo bar *
- <<<
- <p>*foo bar *</p>
- >>> Emphasis and strong emphasis - 376
- *foo bar
- *
- <<<
- <p>*foo bar
- *</p>
- >>> Emphasis and strong emphasis - 377
- *(*foo)
- <<<
- <p>*(*foo)</p>
- >>> Emphasis and strong emphasis - 378
- *(*foo*)*
- <<<
- <p><em>(<em>foo</em>)</em></p>
- >>> Emphasis and strong emphasis - 379
- *foo*bar
- <<<
- <p><em>foo</em>bar</p>
- >>> Emphasis and strong emphasis - 380
- _foo bar _
- <<<
- <p>_foo bar _</p>
- >>> Emphasis and strong emphasis - 381
- _(_foo)
- <<<
- <p>_(_foo)</p>
- >>> Emphasis and strong emphasis - 382
- _(_foo_)_
- <<<
- <p><em>(<em>foo</em>)</em></p>
- >>> Emphasis and strong emphasis - 383
- _foo_bar
- <<<
- <p>_foo_bar</p>
- >>> Emphasis and strong emphasis - 384
- _пристаням_стремятся
- <<<
- <p>_пристаням_стремятся</p>
- >>> Emphasis and strong emphasis - 385
- _foo_bar_baz_
- <<<
- <p><em>foo_bar_baz</em></p>
- >>> Emphasis and strong emphasis - 386
- _(bar)_.
- <<<
- <p><em>(bar)</em>.</p>
- >>> Emphasis and strong emphasis - 387
- **foo bar**
- <<<
- <p><strong>foo bar</strong></p>
- >>> Emphasis and strong emphasis - 388
- ** foo bar**
- <<<
- <p>** foo bar**</p>
- >>> Emphasis and strong emphasis - 389
- a**"foo"**
- <<<
- <p>a**"foo"**</p>
- >>> Emphasis and strong emphasis - 390
- foo**bar**
- <<<
- <p>foo<strong>bar</strong></p>
- >>> Emphasis and strong emphasis - 391
- __foo bar__
- <<<
- <p><strong>foo bar</strong></p>
- >>> Emphasis and strong emphasis - 392
- __ foo bar__
- <<<
- <p>__ foo bar__</p>
- >>> Emphasis and strong emphasis - 393
- __
- foo bar__
- <<<
- <p>__
- foo bar__</p>
- >>> Emphasis and strong emphasis - 394
- a__"foo"__
- <<<
- <p>a__"foo"__</p>
- >>> Emphasis and strong emphasis - 395
- foo__bar__
- <<<
- <p>foo__bar__</p>
- >>> Emphasis and strong emphasis - 396
- 5__6__78
- <<<
- <p>5__6__78</p>
- >>> Emphasis and strong emphasis - 397
- пристаням__стремятся__
- <<<
- <p>пристаням__стремятся__</p>
- >>> Emphasis and strong emphasis - 398
- __foo, __bar__, baz__
- <<<
- <p><strong>foo, <strong>bar</strong>, baz</strong></p>
- >>> Emphasis and strong emphasis - 399
- foo-__(bar)__
- <<<
- <p>foo-<strong>(bar)</strong></p>
- >>> Emphasis and strong emphasis - 400
- **foo bar **
- <<<
- <p>**foo bar **</p>
- >>> Emphasis and strong emphasis - 401
- **(**foo)
- <<<
- <p>**(**foo)</p>
- >>> Emphasis and strong emphasis - 402
- *(**foo**)*
- <<<
- <p><em>(<strong>foo</strong>)</em></p>
- >>> Emphasis and strong emphasis - 403
- **Gomphocarpus (*Gomphocarpus physocarpus*, syn.
- *Asclepias physocarpa*)**
- <<<
- <p><strong>Gomphocarpus (<em>Gomphocarpus physocarpus</em>, syn.
- <em>Asclepias physocarpa</em>)</strong></p>
- >>> Emphasis and strong emphasis - 404
- **foo "*bar*" foo**
- <<<
- <p><strong>foo "<em>bar</em>" foo</strong></p>
- >>> Emphasis and strong emphasis - 405
- **foo**bar
- <<<
- <p><strong>foo</strong>bar</p>
- >>> Emphasis and strong emphasis - 406
- __foo bar __
- <<<
- <p>__foo bar __</p>
- >>> Emphasis and strong emphasis - 407
- __(__foo)
- <<<
- <p>__(__foo)</p>
- >>> Emphasis and strong emphasis - 408
- _(__foo__)_
- <<<
- <p><em>(<strong>foo</strong>)</em></p>
- >>> Emphasis and strong emphasis - 409
- __foo__bar
- <<<
- <p>__foo__bar</p>
- >>> Emphasis and strong emphasis - 410
- __пристаням__стремятся
- <<<
- <p>__пристаням__стремятся</p>
- >>> Emphasis and strong emphasis - 411
- __foo__bar__baz__
- <<<
- <p><strong>foo__bar__baz</strong></p>
- >>> Emphasis and strong emphasis - 412
- __(bar)__.
- <<<
- <p><strong>(bar)</strong>.</p>
- >>> Emphasis and strong emphasis - 413
- *foo [bar](/url)*
- <<<
- <p><em>foo <a href="/url">bar</a></em></p>
- >>> Emphasis and strong emphasis - 414
- *foo
- bar*
- <<<
- <p><em>foo
- bar</em></p>
- >>> Emphasis and strong emphasis - 415
- _foo __bar__ baz_
- <<<
- <p><em>foo <strong>bar</strong> baz</em></p>
- >>> Emphasis and strong emphasis - 416
- _foo _bar_ baz_
- <<<
- <p><em>foo <em>bar</em> baz</em></p>
- >>> Emphasis and strong emphasis - 417
- __foo_ bar_
- <<<
- <p><em><em>foo</em> bar</em></p>
- >>> Emphasis and strong emphasis - 418
- *foo *bar**
- <<<
- <p><em>foo <em>bar</em></em></p>
- >>> Emphasis and strong emphasis - 419
- *foo **bar** baz*
- <<<
- <p><em>foo <strong>bar</strong> baz</em></p>
- >>> Emphasis and strong emphasis - 420
- *foo**bar**baz*
- <<<
- <p><em>foo<strong>bar</strong>baz</em></p>
- >>> Emphasis and strong emphasis - 421
- *foo**bar*
- <<<
- <p><em>foo**bar</em></p>
- >>> Emphasis and strong emphasis - 422
- ***foo** bar*
- <<<
- <p><em><strong>foo</strong> bar</em></p>
- >>> Emphasis and strong emphasis - 423
- *foo **bar***
- <<<
- <p><em>foo <strong>bar</strong></em></p>
- >>> Emphasis and strong emphasis - 424
- *foo**bar***
- <<<
- <p><em>foo<strong>bar</strong></em></p>
- >>> Emphasis and strong emphasis - 425
- foo***bar***baz
- <<<
- <p>foo<em><strong>bar</strong></em>baz</p>
- >>> Emphasis and strong emphasis - 426
- foo******bar*********baz
- <<<
- <p>foo<strong><strong><strong>bar</strong></strong></strong>***baz</p>
- >>> Emphasis and strong emphasis - 427
- *foo **bar *baz* bim** bop*
- <<<
- <p><em>foo <strong>bar <em>baz</em> bim</strong> bop</em></p>
- >>> Emphasis and strong emphasis - 428
- *foo [*bar*](/url)*
- <<<
- <p><em>foo <a href="/url"><em>bar</em></a></em></p>
- >>> Emphasis and strong emphasis - 429
- ** is not an empty emphasis
- <<<
- <p>** is not an empty emphasis</p>
- >>> Emphasis and strong emphasis - 430
- **** is not an empty strong emphasis
- <<<
- <p>**** is not an empty strong emphasis</p>
- >>> Emphasis and strong emphasis - 431
- **foo [bar](/url)**
- <<<
- <p><strong>foo <a href="/url">bar</a></strong></p>
- >>> Emphasis and strong emphasis - 432
- **foo
- bar**
- <<<
- <p><strong>foo
- bar</strong></p>
- >>> Emphasis and strong emphasis - 433
- __foo _bar_ baz__
- <<<
- <p><strong>foo <em>bar</em> baz</strong></p>
- >>> Emphasis and strong emphasis - 434
- __foo __bar__ baz__
- <<<
- <p><strong>foo <strong>bar</strong> baz</strong></p>
- >>> Emphasis and strong emphasis - 435
- ____foo__ bar__
- <<<
- <p><strong><strong>foo</strong> bar</strong></p>
- >>> Emphasis and strong emphasis - 436
- **foo **bar****
- <<<
- <p><strong>foo <strong>bar</strong></strong></p>
- >>> Emphasis and strong emphasis - 437
- **foo *bar* baz**
- <<<
- <p><strong>foo <em>bar</em> baz</strong></p>
- >>> Emphasis and strong emphasis - 438
- **foo*bar*baz**
- <<<
- <p><strong>foo<em>bar</em>baz</strong></p>
- >>> Emphasis and strong emphasis - 439
- ***foo* bar**
- <<<
- <p><strong><em>foo</em> bar</strong></p>
- >>> Emphasis and strong emphasis - 440
- **foo *bar***
- <<<
- <p><strong>foo <em>bar</em></strong></p>
- >>> Emphasis and strong emphasis - 441
- **foo *bar **baz**
- bim* bop**
- <<<
- <p><strong>foo <em>bar <strong>baz</strong>
- bim</em> bop</strong></p>
- >>> Emphasis and strong emphasis - 442
- **foo [*bar*](/url)**
- <<<
- <p><strong>foo <a href="/url"><em>bar</em></a></strong></p>
- >>> Emphasis and strong emphasis - 443
- __ is not an empty emphasis
- <<<
- <p>__ is not an empty emphasis</p>
- >>> Emphasis and strong emphasis - 444
- ____ is not an empty strong emphasis
- <<<
- <p>____ is not an empty strong emphasis</p>
- >>> Emphasis and strong emphasis - 445
- foo ***
- <<<
- <p>foo ***</p>
- >>> Emphasis and strong emphasis - 446
- foo *\**
- <<<
- <p>foo <em>*</em></p>
- >>> Emphasis and strong emphasis - 447
- foo *_*
- <<<
- <p>foo <em>_</em></p>
- >>> Emphasis and strong emphasis - 448
- foo *****
- <<<
- <p>foo *****</p>
- >>> Emphasis and strong emphasis - 449
- foo **\***
- <<<
- <p>foo <strong>*</strong></p>
- >>> Emphasis and strong emphasis - 450
- foo **_**
- <<<
- <p>foo <strong>_</strong></p>
- >>> Emphasis and strong emphasis - 451
- **foo*
- <<<
- <p>*<em>foo</em></p>
- >>> Emphasis and strong emphasis - 452
- *foo**
- <<<
- <p><em>foo</em>*</p>
- >>> Emphasis and strong emphasis - 453
- ***foo**
- <<<
- <p>*<strong>foo</strong></p>
- >>> Emphasis and strong emphasis - 454
- ****foo*
- <<<
- <p>***<em>foo</em></p>
- >>> Emphasis and strong emphasis - 455
- **foo***
- <<<
- <p><strong>foo</strong>*</p>
- >>> Emphasis and strong emphasis - 456
- *foo****
- <<<
- <p><em>foo</em>***</p>
- >>> Emphasis and strong emphasis - 457
- foo ___
- <<<
- <p>foo ___</p>
- >>> Emphasis and strong emphasis - 458
- foo _\__
- <<<
- <p>foo <em>_</em></p>
- >>> Emphasis and strong emphasis - 459
- foo _*_
- <<<
- <p>foo <em>*</em></p>
- >>> Emphasis and strong emphasis - 460
- foo _____
- <<<
- <p>foo _____</p>
- >>> Emphasis and strong emphasis - 461
- foo __\___
- <<<
- <p>foo <strong>_</strong></p>
- >>> Emphasis and strong emphasis - 462
- foo __*__
- <<<
- <p>foo <strong>*</strong></p>
- >>> Emphasis and strong emphasis - 463
- __foo_
- <<<
- <p>_<em>foo</em></p>
- >>> Emphasis and strong emphasis - 464
- _foo__
- <<<
- <p><em>foo</em>_</p>
- >>> Emphasis and strong emphasis - 465
- ___foo__
- <<<
- <p>_<strong>foo</strong></p>
- >>> Emphasis and strong emphasis - 466
- ____foo_
- <<<
- <p>___<em>foo</em></p>
- >>> Emphasis and strong emphasis - 467
- __foo___
- <<<
- <p><strong>foo</strong>_</p>
- >>> Emphasis and strong emphasis - 468
- _foo____
- <<<
- <p><em>foo</em>___</p>
- >>> Emphasis and strong emphasis - 469
- **foo**
- <<<
- <p><strong>foo</strong></p>
- >>> Emphasis and strong emphasis - 470
- *_foo_*
- <<<
- <p><em><em>foo</em></em></p>
- >>> Emphasis and strong emphasis - 471
- __foo__
- <<<
- <p><strong>foo</strong></p>
- >>> Emphasis and strong emphasis - 472
- _*foo*_
- <<<
- <p><em><em>foo</em></em></p>
- >>> Emphasis and strong emphasis - 473
- ****foo****
- <<<
- <p><strong><strong>foo</strong></strong></p>
- >>> Emphasis and strong emphasis - 474
- ____foo____
- <<<
- <p><strong><strong>foo</strong></strong></p>
- >>> Emphasis and strong emphasis - 475
- ******foo******
- <<<
- <p><strong><strong><strong>foo</strong></strong></strong></p>
- >>> Emphasis and strong emphasis - 476
- ***foo***
- <<<
- <p><em><strong>foo</strong></em></p>
- >>> Emphasis and strong emphasis - 477
- _____foo_____
- <<<
- <p><em><strong><strong>foo</strong></strong></em></p>
- >>> Emphasis and strong emphasis - 478
- *foo _bar* baz_
- <<<
- <p><em>foo _bar</em> baz_</p>
- >>> Emphasis and strong emphasis - 479
- *foo __bar *baz bim__ bam*
- <<<
- <p><em>foo <strong>bar *baz bim</strong> bam</em></p>
- >>> Emphasis and strong emphasis - 480
- **foo **bar baz**
- <<<
- <p>**foo <strong>bar baz</strong></p>
- >>> Emphasis and strong emphasis - 481
- *foo *bar baz*
- <<<
- <p>*foo <em>bar baz</em></p>
- >>> Emphasis and strong emphasis - 482
- *[bar*](/url)
- <<<
- <p>*<a href="/url">bar*</a></p>
- >>> Emphasis and strong emphasis - 483
- _foo [bar_](/url)
- <<<
- <p>_foo <a href="/url">bar_</a></p>
- >>> Emphasis and strong emphasis - 484
- *<img src="foo" title="*"/>
- <<<
- <p>*<img src="foo" title="*"/></p>
- >>> Emphasis and strong emphasis - 485
- **<a href="**">
- <<<
- <p>**<a href="**"></p>
- >>> Emphasis and strong emphasis - 486
- __<a href="__">
- <<<
- <p>__<a href="__"></p>
- >>> Emphasis and strong emphasis - 487
- *a `*`*
- <<<
- <p><em>a <code>*</code></em></p>
- >>> Emphasis and strong emphasis - 488
- _a `_`_
- <<<
- <p><em>a <code>_</code></em></p>
- >>> Emphasis and strong emphasis - 489
- **a<http://foo.bar/?q=**>
- <<<
- <p>**a<a href="http://foo.bar/?q=**">http://foo.bar/?q=**</a></p>
- >>> Emphasis and strong emphasis - 490
- __a<http://foo.bar/?q=__>
- <<<
- <p>__a<a href="http://foo.bar/?q=__">http://foo.bar/?q=__</a></p>
|