| 12345678910111213141516171819202122232425262728293031 |
- <div id="editor">
- <h2>Heading 1</h2>
- <p>Paragraph <span class="ck-non-restricted">it is editable</span></p>
- <p><strong>Bold</strong> <i>Italic</i> <a href="foo">Link</a></p>
- <ul>
- <li>UL List item 1</li>
- <li>UL List item 2</li>
- </ul>
- <ol>
- <li>OL List item 1</li>
- <li>OL List item 2</li>
- </ol>
- <figure class="image image-style-side">
- <img alt="bar" src="sample.jpg">
- <figcaption>Caption</figcaption>
- </figure>
- <blockquote>
- <p>Quote</p>
- <ul>
- <li>Quoted UL List item 1</li>
- <li>Quoted UL List item 2</li>
- </ul>
- <p>Quote</p>
- </blockquote>
- </div>
- <style>
- .ck-non-restricted {
- background-color: #ffcd96;
- }
- </style>
|