Redactor Test | Blitz Rocket

Test Pages

RedactorEditor Test

Basic Editor

Editor Output

<h1>Test Content</h1>
<p>This is a test of the RedactorEditor component.</p>
<h2>Lists Test</h2>
<p>Below are examples of ordered and unordered lists:</p>
<h3>Unordered List</h3>
<ul>
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3
    <ul>
      <li>Nested item 1</li>
      <li>Nested item 2</li>
    </ul>
  </li>
</ul>
<h3>Ordered List</h3>
<ol>
  <li>First item</li>
  <li>Second item</li>
  <li>Third item
    <ol>
      <li>Nested ordered item 1</li>
      <li>Nested ordered item 2</li>
    </ol>
  </li>
</ol>