restrictedediting.html 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <p>
  2. <b>Mode</b>:
  3. <input type="radio" id="mode-standard" name="mode" value="standard" checked><label for="mode-standard">Standard</label>
  4. <input type="radio" id="mode-restricted" name="mode" value="restricted"><label for="mode-restricted">Restricted</label>
  5. </p>
  6. <div id="editor">
  7. <h2>Heading 1</h2>
  8. <p>Paragraph <span class="restricted-editing-exception">it is editable</span></p>
  9. <p>Exception on part of a word: <a href="ckeditor.com">coompi</a><span class="restricted-editing-exception"><a href="ckeditor.com">ter</a> (fix spelling in Firefox).</span></p>
  10. <p><strong>Bold</strong> <i>Italic</i> <a href="foo">Link</a></p>
  11. <ul>
  12. <li>UL List item 1</li>
  13. <li>UL List item 2</li>
  14. </ul>
  15. <ol>
  16. <li><span class="restricted-editing-exception">OL List item 1</span></li>
  17. <li>OL List item 2</li>
  18. </ol>
  19. <figure class="image image-style-side">
  20. <img alt="bar" src="sample.jpg">
  21. <figcaption>Caption</figcaption>
  22. </figure>
  23. <blockquote>
  24. <p>Quote</p>
  25. <ul>
  26. <li>Quoted UL List item 1</li>
  27. <li>Quoted UL List item <span class="restricted-editing-exception">2</span></li>
  28. </ul>
  29. <p>Quote</p>
  30. </blockquote>
  31. </div>