paragraphs.unit 660 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. >>> consecutive lines form a single paragraph
  2. This is the first line.
  3. This is the second line.
  4. <<<
  5. <p>This is the first line.
  6. This is the second line.</p>
  7. >>> are terminated by a header
  8. para
  9. # header
  10. <<<
  11. <p>para</p>
  12. <h1>header</h1>
  13. >>> are terminated by a hr
  14. para
  15. ___
  16. <<<
  17. <p>para</p>
  18. <hr />
  19. >>> are terminated by an unordered list
  20. para
  21. * list
  22. <<<
  23. <p>para</p>
  24. <ul>
  25. <li>list</li>
  26. </ul>
  27. >>> are terminated by an ordered list
  28. para
  29. 1. list
  30. <<<
  31. <p>para</p>
  32. <ol>
  33. <li>list</li>
  34. </ol>
  35. >>> take account of windows line endings
  36. line1
  37. line2
  38. <<<
  39. <p>line1</p>
  40. <p>line2</p>
  41. >>> cannot be terminated by indented code blocks
  42. para
  43. not code
  44. <<<
  45. <p>para
  46. not code</p>