list.html 498 B

12345678910111213141516171819202122
  1. <div id="editor">
  2. <p>This is a test for list feature.</p>
  3. <p>Some more text for testing.</p>
  4. <ul>
  5. <li>Bullet list item 1</li>
  6. <li>Bullet list item 2</li>
  7. <li>Bullet list item 3</li>
  8. <li>Bullet list item 4</li>
  9. <li>Bullet list item 5</li>
  10. <li>Bullet list item 6</li>
  11. <li>Bullet list item 7</li>
  12. <li>Bullet list item 8</li>
  13. </ul>
  14. <p>Paragraph.</p>
  15. <p>Another testing paragraph.</p>
  16. <ol>
  17. <li>Numbered list item 1</li>
  18. </ol>
  19. <ul>
  20. <li>Another bullet list</li>
  21. </ul>
  22. </div>