restrictedediting.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <figure class="table">
  12. <table>
  13. <tbody>
  14. <tr>
  15. <td><span class="restricted-editing-exception">foo bar</span></td>
  16. </tr>
  17. </tbody>
  18. </table>
  19. </figure>
  20. <ul>
  21. <li>UL List item 1</li>
  22. <li>UL List item 2</li>
  23. </ul>
  24. <ol>
  25. <li><span class="restricted-editing-exception">OL List item 1</span></li>
  26. <li>OL List item 2</li>
  27. </ol>
  28. <figure class="image image-style-side">
  29. <img alt="bar" src="sample.jpg">
  30. <figcaption>Caption</figcaption>
  31. </figure>
  32. <blockquote>
  33. <p>Quote</p>
  34. <ul>
  35. <li>Quoted UL List item 1</li>
  36. <li>Quoted UL List item <span class="restricted-editing-exception">2</span></li>
  37. </ul>
  38. <p>Quote</p>
  39. </blockquote>
  40. </div>