restrictedediting.html 650 B

12345678910111213141516171819202122232425262728293031
  1. <div id="editor">
  2. <h2>Heading 1</h2>
  3. <p>Paragraph <span class="ck-non-restricted">it is editable</span></p>
  4. <p><strong>Bold</strong> <i>Italic</i> <a href="foo">Link</a></p>
  5. <ul>
  6. <li>UL List item 1</li>
  7. <li>UL List item 2</li>
  8. </ul>
  9. <ol>
  10. <li>OL List item 1</li>
  11. <li>OL List item 2</li>
  12. </ol>
  13. <figure class="image image-style-side">
  14. <img alt="bar" src="sample.jpg">
  15. <figcaption>Caption</figcaption>
  16. </figure>
  17. <blockquote>
  18. <p>Quote</p>
  19. <ul>
  20. <li>Quoted UL List item 1</li>
  21. <li>Quoted UL List item 2</li>
  22. </ul>
  23. <p>Quote</p>
  24. </blockquote>
  25. </div>
  26. <style>
  27. .ck-non-restricted {
  28. background-color: #ffcd96;
  29. }
  30. </style>