8
0

article.html 594 B

12345678910111213141516171819202122232425262728
  1. <script>
  2. window.CKEDITOR_VERSION = 'foo';
  3. </script>
  4. <div id="editor">
  5. <h2>Heading 1</h2>
  6. <p>Paragraph</p>
  7. <p><strong>Bold</strong> <i>Italic</i> <a href="https://ckeditor.com">Link</a></p>
  8. <ul>
  9. <li>UL List item 1</li>
  10. <li>UL List item 2</li>
  11. </ul>
  12. <ol>
  13. <li>OL List item 1</li>
  14. <li>OL List item 2</li>
  15. </ol>
  16. <figure class="image image-style-side">
  17. <img alt="bar" src="sample.jpg">
  18. <figcaption>Caption</figcaption>
  19. </figure>
  20. <blockquote>
  21. <p>Quote</p>
  22. <ul>
  23. <li>Quoted UL List item 1</li>
  24. <li>Quoted UL List item 2</li>
  25. </ul>
  26. <p>Quote</p>
  27. </blockquote>
  28. </div>