emphasis_and_strong_emphasis.unit 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547
  1. >>> Emphasis and strong emphasis - 350
  2. *foo bar*
  3. <<<
  4. <p><em>foo bar</em></p>
  5. >>> Emphasis and strong emphasis - 351
  6. a * foo bar*
  7. <<<
  8. <p>a * foo bar*</p>
  9. >>> Emphasis and strong emphasis - 352
  10. a*"foo"*
  11. <<<
  12. <p>a*&quot;foo&quot;*</p>
  13. >>> Emphasis and strong emphasis - 353
  14. * a *
  15. <<<
  16. <p>* a *</p>
  17. >>> Emphasis and strong emphasis - 354
  18. *$*alpha.
  19. *£*bravo.
  20. *€*charlie.
  21. <<<
  22. <p>*$*alpha.</p>
  23. <p><em>£</em>bravo.</p>
  24. <p><em>€</em>charlie.</p>
  25. >>> Emphasis and strong emphasis - 355
  26. foo*bar*
  27. <<<
  28. <p>foo<em>bar</em></p>
  29. >>> Emphasis and strong emphasis - 356
  30. 5*6*78
  31. <<<
  32. <p>5<em>6</em>78</p>
  33. >>> Emphasis and strong emphasis - 357
  34. _foo bar_
  35. <<<
  36. <p><em>foo bar</em></p>
  37. >>> Emphasis and strong emphasis - 358
  38. _ foo bar_
  39. <<<
  40. <p>_ foo bar_</p>
  41. >>> Emphasis and strong emphasis - 359
  42. a_"foo"_
  43. <<<
  44. <p>a_&quot;foo&quot;_</p>
  45. >>> Emphasis and strong emphasis - 360
  46. foo_bar_
  47. <<<
  48. <p>foo_bar_</p>
  49. >>> Emphasis and strong emphasis - 361
  50. 5_6_78
  51. <<<
  52. <p>5_6_78</p>
  53. >>> Emphasis and strong emphasis - 362
  54. пристаням_стремятся_
  55. <<<
  56. <p>пристаням_стремятся_</p>
  57. >>> Emphasis and strong emphasis - 363
  58. aa_"bb"_cc
  59. <<<
  60. <p>aa_&quot;bb&quot;_cc</p>
  61. >>> Emphasis and strong emphasis - 364
  62. foo-_(bar)_
  63. <<<
  64. <p>foo-<em>(bar)</em></p>
  65. >>> Emphasis and strong emphasis - 365
  66. _foo*
  67. <<<
  68. <p>_foo*</p>
  69. >>> Emphasis and strong emphasis - 366
  70. *foo bar *
  71. <<<
  72. <p>*foo bar *</p>
  73. >>> Emphasis and strong emphasis - 367
  74. *foo bar
  75. *
  76. <<<
  77. <p>*foo bar
  78. *</p>
  79. >>> Emphasis and strong emphasis - 368
  80. *(*foo)
  81. <<<
  82. <p>*(*foo)</p>
  83. >>> Emphasis and strong emphasis - 369
  84. *(*foo*)*
  85. <<<
  86. <p><em>(<em>foo</em>)</em></p>
  87. >>> Emphasis and strong emphasis - 370
  88. *foo*bar
  89. <<<
  90. <p><em>foo</em>bar</p>
  91. >>> Emphasis and strong emphasis - 371
  92. _foo bar _
  93. <<<
  94. <p>_foo bar _</p>
  95. >>> Emphasis and strong emphasis - 372
  96. _(_foo)
  97. <<<
  98. <p>_(_foo)</p>
  99. >>> Emphasis and strong emphasis - 373
  100. _(_foo_)_
  101. <<<
  102. <p><em>(<em>foo</em>)</em></p>
  103. >>> Emphasis and strong emphasis - 374
  104. _foo_bar
  105. <<<
  106. <p>_foo_bar</p>
  107. >>> Emphasis and strong emphasis - 375
  108. _пристаням_стремятся
  109. <<<
  110. <p>_пристаням_стремятся</p>
  111. >>> Emphasis and strong emphasis - 376
  112. _foo_bar_baz_
  113. <<<
  114. <p><em>foo_bar_baz</em></p>
  115. >>> Emphasis and strong emphasis - 377
  116. _(bar)_.
  117. <<<
  118. <p><em>(bar)</em>.</p>
  119. >>> Emphasis and strong emphasis - 378
  120. **foo bar**
  121. <<<
  122. <p><strong>foo bar</strong></p>
  123. >>> Emphasis and strong emphasis - 379
  124. ** foo bar**
  125. <<<
  126. <p>** foo bar**</p>
  127. >>> Emphasis and strong emphasis - 380
  128. a**"foo"**
  129. <<<
  130. <p>a**&quot;foo&quot;**</p>
  131. >>> Emphasis and strong emphasis - 381
  132. foo**bar**
  133. <<<
  134. <p>foo<strong>bar</strong></p>
  135. >>> Emphasis and strong emphasis - 382
  136. __foo bar__
  137. <<<
  138. <p><strong>foo bar</strong></p>
  139. >>> Emphasis and strong emphasis - 383
  140. __ foo bar__
  141. <<<
  142. <p>__ foo bar__</p>
  143. >>> Emphasis and strong emphasis - 384
  144. __
  145. foo bar__
  146. <<<
  147. <p>__
  148. foo bar__</p>
  149. >>> Emphasis and strong emphasis - 385
  150. a__"foo"__
  151. <<<
  152. <p>a__&quot;foo&quot;__</p>
  153. >>> Emphasis and strong emphasis - 386
  154. foo__bar__
  155. <<<
  156. <p>foo__bar__</p>
  157. >>> Emphasis and strong emphasis - 387
  158. 5__6__78
  159. <<<
  160. <p>5__6__78</p>
  161. >>> Emphasis and strong emphasis - 388
  162. пристаням__стремятся__
  163. <<<
  164. <p>пристаням__стремятся__</p>
  165. >>> Emphasis and strong emphasis - 389
  166. __foo, __bar__, baz__
  167. <<<
  168. <p><strong>foo, <strong>bar</strong>, baz</strong></p>
  169. >>> Emphasis and strong emphasis - 390
  170. foo-__(bar)__
  171. <<<
  172. <p>foo-<strong>(bar)</strong></p>
  173. >>> Emphasis and strong emphasis - 391
  174. **foo bar **
  175. <<<
  176. <p>**foo bar **</p>
  177. >>> Emphasis and strong emphasis - 392
  178. **(**foo)
  179. <<<
  180. <p>**(**foo)</p>
  181. >>> Emphasis and strong emphasis - 393
  182. *(**foo**)*
  183. <<<
  184. <p><em>(<strong>foo</strong>)</em></p>
  185. >>> Emphasis and strong emphasis - 394
  186. **Gomphocarpus (*Gomphocarpus physocarpus*, syn.
  187. *Asclepias physocarpa*)**
  188. <<<
  189. <p><strong>Gomphocarpus (<em>Gomphocarpus physocarpus</em>, syn.
  190. <em>Asclepias physocarpa</em>)</strong></p>
  191. >>> Emphasis and strong emphasis - 395
  192. **foo "*bar*" foo**
  193. <<<
  194. <p><strong>foo &quot;<em>bar</em>&quot; foo</strong></p>
  195. >>> Emphasis and strong emphasis - 396
  196. **foo**bar
  197. <<<
  198. <p><strong>foo</strong>bar</p>
  199. >>> Emphasis and strong emphasis - 397
  200. __foo bar __
  201. <<<
  202. <p>__foo bar __</p>
  203. >>> Emphasis and strong emphasis - 398
  204. __(__foo)
  205. <<<
  206. <p>__(__foo)</p>
  207. >>> Emphasis and strong emphasis - 399
  208. _(__foo__)_
  209. <<<
  210. <p><em>(<strong>foo</strong>)</em></p>
  211. >>> Emphasis and strong emphasis - 400
  212. __foo__bar
  213. <<<
  214. <p>__foo__bar</p>
  215. >>> Emphasis and strong emphasis - 401
  216. __пристаням__стремятся
  217. <<<
  218. <p>__пристаням__стремятся</p>
  219. >>> Emphasis and strong emphasis - 402
  220. __foo__bar__baz__
  221. <<<
  222. <p><strong>foo__bar__baz</strong></p>
  223. >>> Emphasis and strong emphasis - 403
  224. __(bar)__.
  225. <<<
  226. <p><strong>(bar)</strong>.</p>
  227. >>> Emphasis and strong emphasis - 404
  228. *foo [bar](/url)*
  229. <<<
  230. <p><em>foo <a href="/url">bar</a></em></p>
  231. >>> Emphasis and strong emphasis - 405
  232. *foo
  233. bar*
  234. <<<
  235. <p><em>foo
  236. bar</em></p>
  237. >>> Emphasis and strong emphasis - 406
  238. _foo __bar__ baz_
  239. <<<
  240. <p><em>foo <strong>bar</strong> baz</em></p>
  241. >>> Emphasis and strong emphasis - 407
  242. _foo _bar_ baz_
  243. <<<
  244. <p><em>foo <em>bar</em> baz</em></p>
  245. >>> Emphasis and strong emphasis - 408
  246. __foo_ bar_
  247. <<<
  248. <p><em><em>foo</em> bar</em></p>
  249. >>> Emphasis and strong emphasis - 409
  250. *foo *bar**
  251. <<<
  252. <p><em>foo <em>bar</em></em></p>
  253. >>> Emphasis and strong emphasis - 410
  254. *foo **bar** baz*
  255. <<<
  256. <p><em>foo <strong>bar</strong> baz</em></p>
  257. >>> Emphasis and strong emphasis - 411
  258. *foo**bar**baz*
  259. <<<
  260. <p><em>foo<strong>bar</strong>baz</em></p>
  261. >>> Emphasis and strong emphasis - 412
  262. *foo**bar*
  263. <<<
  264. <p><em>foo**bar</em></p>
  265. >>> Emphasis and strong emphasis - 413
  266. ***foo** bar*
  267. <<<
  268. <p><em><strong>foo</strong> bar</em></p>
  269. >>> Emphasis and strong emphasis - 414
  270. *foo **bar***
  271. <<<
  272. <p><em>foo <strong>bar</strong></em></p>
  273. >>> Emphasis and strong emphasis - 415
  274. *foo**bar***
  275. <<<
  276. <p><em>foo<strong>bar</strong></em></p>
  277. >>> Emphasis and strong emphasis - 416
  278. foo***bar***baz
  279. <<<
  280. <p>foo<em><strong>bar</strong></em>baz</p>
  281. >>> Emphasis and strong emphasis - 417
  282. foo******bar*********baz
  283. <<<
  284. <p>foo<strong><strong><strong>bar</strong></strong></strong>***baz</p>
  285. >>> Emphasis and strong emphasis - 418
  286. *foo **bar *baz* bim** bop*
  287. <<<
  288. <p><em>foo <strong>bar <em>baz</em> bim</strong> bop</em></p>
  289. >>> Emphasis and strong emphasis - 419
  290. *foo [*bar*](/url)*
  291. <<<
  292. <p><em>foo <a href="/url"><em>bar</em></a></em></p>
  293. >>> Emphasis and strong emphasis - 420
  294. ** is not an empty emphasis
  295. <<<
  296. <p>** is not an empty emphasis</p>
  297. >>> Emphasis and strong emphasis - 421
  298. **** is not an empty strong emphasis
  299. <<<
  300. <p>**** is not an empty strong emphasis</p>
  301. >>> Emphasis and strong emphasis - 422
  302. **foo [bar](/url)**
  303. <<<
  304. <p><strong>foo <a href="/url">bar</a></strong></p>
  305. >>> Emphasis and strong emphasis - 423
  306. **foo
  307. bar**
  308. <<<
  309. <p><strong>foo
  310. bar</strong></p>
  311. >>> Emphasis and strong emphasis - 424
  312. __foo _bar_ baz__
  313. <<<
  314. <p><strong>foo <em>bar</em> baz</strong></p>
  315. >>> Emphasis and strong emphasis - 425
  316. __foo __bar__ baz__
  317. <<<
  318. <p><strong>foo <strong>bar</strong> baz</strong></p>
  319. >>> Emphasis and strong emphasis - 426
  320. ____foo__ bar__
  321. <<<
  322. <p><strong><strong>foo</strong> bar</strong></p>
  323. >>> Emphasis and strong emphasis - 427
  324. **foo **bar****
  325. <<<
  326. <p><strong>foo <strong>bar</strong></strong></p>
  327. >>> Emphasis and strong emphasis - 428
  328. **foo *bar* baz**
  329. <<<
  330. <p><strong>foo <em>bar</em> baz</strong></p>
  331. >>> Emphasis and strong emphasis - 429
  332. **foo*bar*baz**
  333. <<<
  334. <p><strong>foo<em>bar</em>baz</strong></p>
  335. >>> Emphasis and strong emphasis - 430
  336. ***foo* bar**
  337. <<<
  338. <p><strong><em>foo</em> bar</strong></p>
  339. >>> Emphasis and strong emphasis - 431
  340. **foo *bar***
  341. <<<
  342. <p><strong>foo <em>bar</em></strong></p>
  343. >>> Emphasis and strong emphasis - 432
  344. **foo *bar **baz**
  345. bim* bop**
  346. <<<
  347. <p><strong>foo <em>bar <strong>baz</strong>
  348. bim</em> bop</strong></p>
  349. >>> Emphasis and strong emphasis - 433
  350. **foo [*bar*](/url)**
  351. <<<
  352. <p><strong>foo <a href="/url"><em>bar</em></a></strong></p>
  353. >>> Emphasis and strong emphasis - 434
  354. __ is not an empty emphasis
  355. <<<
  356. <p>__ is not an empty emphasis</p>
  357. >>> Emphasis and strong emphasis - 435
  358. ____ is not an empty strong emphasis
  359. <<<
  360. <p>____ is not an empty strong emphasis</p>
  361. >>> Emphasis and strong emphasis - 436
  362. foo ***
  363. <<<
  364. <p>foo ***</p>
  365. >>> Emphasis and strong emphasis - 437
  366. foo *\**
  367. <<<
  368. <p>foo <em>*</em></p>
  369. >>> Emphasis and strong emphasis - 438
  370. foo *_*
  371. <<<
  372. <p>foo <em>_</em></p>
  373. >>> Emphasis and strong emphasis - 439
  374. foo *****
  375. <<<
  376. <p>foo *****</p>
  377. >>> Emphasis and strong emphasis - 440
  378. foo **\***
  379. <<<
  380. <p>foo <strong>*</strong></p>
  381. >>> Emphasis and strong emphasis - 441
  382. foo **_**
  383. <<<
  384. <p>foo <strong>_</strong></p>
  385. >>> Emphasis and strong emphasis - 442
  386. **foo*
  387. <<<
  388. <p>*<em>foo</em></p>
  389. >>> Emphasis and strong emphasis - 443
  390. *foo**
  391. <<<
  392. <p><em>foo</em>*</p>
  393. >>> Emphasis and strong emphasis - 444
  394. ***foo**
  395. <<<
  396. <p>*<strong>foo</strong></p>
  397. >>> Emphasis and strong emphasis - 445
  398. ****foo*
  399. <<<
  400. <p>***<em>foo</em></p>
  401. >>> Emphasis and strong emphasis - 446
  402. **foo***
  403. <<<
  404. <p><strong>foo</strong>*</p>
  405. >>> Emphasis and strong emphasis - 447
  406. *foo****
  407. <<<
  408. <p><em>foo</em>***</p>
  409. >>> Emphasis and strong emphasis - 448
  410. foo ___
  411. <<<
  412. <p>foo ___</p>
  413. >>> Emphasis and strong emphasis - 449
  414. foo _\__
  415. <<<
  416. <p>foo <em>_</em></p>
  417. >>> Emphasis and strong emphasis - 450
  418. foo _*_
  419. <<<
  420. <p>foo <em>*</em></p>
  421. >>> Emphasis and strong emphasis - 451
  422. foo _____
  423. <<<
  424. <p>foo _____</p>
  425. >>> Emphasis and strong emphasis - 452
  426. foo __\___
  427. <<<
  428. <p>foo <strong>_</strong></p>
  429. >>> Emphasis and strong emphasis - 453
  430. foo __*__
  431. <<<
  432. <p>foo <strong>*</strong></p>
  433. >>> Emphasis and strong emphasis - 454
  434. __foo_
  435. <<<
  436. <p>_<em>foo</em></p>
  437. >>> Emphasis and strong emphasis - 455
  438. _foo__
  439. <<<
  440. <p><em>foo</em>_</p>
  441. >>> Emphasis and strong emphasis - 456
  442. ___foo__
  443. <<<
  444. <p>_<strong>foo</strong></p>
  445. >>> Emphasis and strong emphasis - 457
  446. ____foo_
  447. <<<
  448. <p>___<em>foo</em></p>
  449. >>> Emphasis and strong emphasis - 458
  450. __foo___
  451. <<<
  452. <p><strong>foo</strong>_</p>
  453. >>> Emphasis and strong emphasis - 459
  454. _foo____
  455. <<<
  456. <p><em>foo</em>___</p>
  457. >>> Emphasis and strong emphasis - 460
  458. **foo**
  459. <<<
  460. <p><strong>foo</strong></p>
  461. >>> Emphasis and strong emphasis - 461
  462. *_foo_*
  463. <<<
  464. <p><em><em>foo</em></em></p>
  465. >>> Emphasis and strong emphasis - 462
  466. __foo__
  467. <<<
  468. <p><strong>foo</strong></p>
  469. >>> Emphasis and strong emphasis - 463
  470. _*foo*_
  471. <<<
  472. <p><em><em>foo</em></em></p>
  473. >>> Emphasis and strong emphasis - 464
  474. ****foo****
  475. <<<
  476. <p><strong><strong>foo</strong></strong></p>
  477. >>> Emphasis and strong emphasis - 465
  478. ____foo____
  479. <<<
  480. <p><strong><strong>foo</strong></strong></p>
  481. >>> Emphasis and strong emphasis - 466
  482. ******foo******
  483. <<<
  484. <p><strong><strong><strong>foo</strong></strong></strong></p>
  485. >>> Emphasis and strong emphasis - 467
  486. ***foo***
  487. <<<
  488. <p><em><strong>foo</strong></em></p>
  489. >>> Emphasis and strong emphasis - 468
  490. _____foo_____
  491. <<<
  492. <p><em><strong><strong>foo</strong></strong></em></p>
  493. >>> Emphasis and strong emphasis - 469
  494. *foo _bar* baz_
  495. <<<
  496. <p><em>foo _bar</em> baz_</p>
  497. >>> Emphasis and strong emphasis - 470
  498. *foo __bar *baz bim__ bam*
  499. <<<
  500. <p><em>foo <strong>bar *baz bim</strong> bam</em></p>
  501. >>> Emphasis and strong emphasis - 471
  502. **foo **bar baz**
  503. <<<
  504. <p>**foo <strong>bar baz</strong></p>
  505. >>> Emphasis and strong emphasis - 472
  506. *foo *bar baz*
  507. <<<
  508. <p>*foo <em>bar baz</em></p>
  509. >>> Emphasis and strong emphasis - 473
  510. *[bar*](/url)
  511. <<<
  512. <p>*<a href="/url">bar*</a></p>
  513. >>> Emphasis and strong emphasis - 474
  514. _foo [bar_](/url)
  515. <<<
  516. <p>_foo <a href="/url">bar_</a></p>
  517. >>> Emphasis and strong emphasis - 475
  518. *<img src="foo" title="*"/>
  519. <<<
  520. <p>*<img src="foo" title="*"/></p>
  521. >>> Emphasis and strong emphasis - 476
  522. **<a href="**">
  523. <<<
  524. <p>**<a href="**"></p>
  525. >>> Emphasis and strong emphasis - 477
  526. __<a href="__">
  527. <<<
  528. <p>__<a href="__"></p>
  529. >>> Emphasis and strong emphasis - 478
  530. *a `*`*
  531. <<<
  532. <p><em>a <code>*</code></em></p>
  533. >>> Emphasis and strong emphasis - 479
  534. _a `_`_
  535. <<<
  536. <p><em>a <code>_</code></em></p>
  537. >>> Emphasis and strong emphasis - 480
  538. **a<https://foo.bar/?q=**>
  539. <<<
  540. <p>**a<a href="https://foo.bar/?q=**">https://foo.bar/?q=**</a></p>
  541. >>> Emphasis and strong emphasis - 481
  542. __a<https://foo.bar/?q=__>
  543. <<<
  544. <p>__a<a href="https://foo.bar/?q=__">https://foo.bar/?q=__</a></p>