ordered_lists.unit 517 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. >>> ordered list with multiple items
  2. 1. one
  3. 2. two
  4. 10. ten
  5. <<<
  6. <ol>
  7. <li>one</li>
  8. <li>two</li>
  9. <li>ten</li>
  10. </ol>
  11. >>> ordered list with almost nested item
  12. 1. one
  13. 45. two
  14. 12345. three
  15. <<<
  16. <ol>
  17. <li>one</li>
  18. <li>two</li>
  19. <li>three</li>
  20. </ol>
  21. >>> nested ordered lists
  22. 1. one
  23. 2. two
  24. 3. three
  25. 4. four
  26. 5. five
  27. <<<
  28. <ol>
  29. <li>one</li>
  30. <li>two
  31. <ol start="3">
  32. <li>three</li>
  33. <li>four</li>
  34. </ol>
  35. </li>
  36. <li>five</li>
  37. </ol>
  38. >>> new list markers start new lists
  39. 1. a
  40. * b
  41. <<<
  42. <ol>
  43. <li>a</li>
  44. </ol>
  45. <ul>
  46. <li>b</li>
  47. </ul>