backslash_escapes.unit 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. >>> Backslash escapes - 308
  2. \!\"\#\$\%\&\'\(\)\*\+\,\-\.\/\:\;\<\=\>\?\@\[\\\]\^\_\`\{\|\}\~
  3. <<<
  4. <p>!&quot;#$%&amp;'()*+,-./:;&lt;=&gt;?@[\]^_`{|}~</p>
  5. >>> Backslash escapes - 309
  6. \ \A\a\ \3\φ\«
  7. <<<
  8. <p>\ \A\a\ \3\φ\«</p>
  9. >>> Backslash escapes - 310
  10. \*not emphasized*
  11. \<br/> not a tag
  12. \[not a link](/foo)
  13. \`not code`
  14. 1\. not a list
  15. \* not a list
  16. \# not a heading
  17. \[foo]: /url "not a reference"
  18. \&ouml; not a character entity
  19. <<<
  20. <p>*not emphasized*
  21. &lt;br/&gt; not a tag
  22. [not a link](/foo)
  23. `not code`
  24. 1. not a list
  25. * not a list
  26. # not a heading
  27. [foo]: /url &quot;not a reference&quot;
  28. &amp;ouml; not a character entity</p>
  29. >>> Backslash escapes - 311
  30. \\*emphasis*
  31. <<<
  32. <p>\<em>emphasis</em></p>
  33. >>> Backslash escapes - 312
  34. foo\
  35. bar
  36. <<<
  37. <p>foo<br />
  38. bar</p>
  39. >>> Backslash escapes - 313
  40. `` \[\` ``
  41. <<<
  42. <p><code>\[\`</code></p>
  43. >>> Backslash escapes - 314
  44. \[\]
  45. <<<
  46. <pre><code>\[\]
  47. </code></pre>
  48. >>> Backslash escapes - 315
  49. ~~~
  50. \[\]
  51. ~~~
  52. <<<
  53. <pre><code>\[\]
  54. </code></pre>
  55. >>> Backslash escapes - 316
  56. <http://example.com?find=\*>
  57. <<<
  58. <p><a href="http://example.com?find=%5C*">http://example.com?find=\*</a></p>
  59. >>> Backslash escapes - 317
  60. <a href="/bar\/)">
  61. <<<
  62. <a href="/bar\/)">
  63. >>> Backslash escapes - 318
  64. [foo](/bar\* "ti\*tle")
  65. <<<
  66. <p><a href="/bar*" title="ti*tle">foo</a></p>
  67. >>> Backslash escapes - 319
  68. [foo]
  69. [foo]: /bar\* "ti\*tle"
  70. <<<
  71. <p><a href="/bar*" title="ti*tle">foo</a></p>
  72. >>> Backslash escapes - 320
  73. ``` foo\+bar
  74. foo
  75. ```
  76. <<<
  77. <pre><code class="language-foo+bar">foo
  78. </code></pre>