hard_line_breaks.unit 634 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. >>> hard line break in a paragraph, using backslash
  2. First line.\
  3. Second line.
  4. <<<
  5. <p>First line.<br />
  6. Second line.</p>
  7. >>> within emphasis, using backslash
  8. *Emphasised\
  9. text.*
  10. <<<
  11. <p><em>Emphasised<br />
  12. text.</em></p>
  13. >>> no escape within code, using backslash
  14. `Some\
  15. code`.
  16. <<<
  17. <p><code>Some\ code</code>.</p>
  18. >>> hard line break in a paragraph, using trailing spaces
  19. First line.
  20. Second line.
  21. <<<
  22. <p>First line.
  23. Second line.</p>
  24. >>> within emphasis, using trailing spaces
  25. *Emphasised
  26. text.*
  27. <<<
  28. <p><em>Emphasised
  29. text.</em></p>
  30. >>> no escape within code, using trailing spaces
  31. `Some
  32. code`.
  33. <<<
  34. <p><code>Some code</code>.</p>