| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <div id="snippet-markdown">
- <h2>The Markdown language</h2>
- <p>Markdown is a lightweight markup language that you can use to add formatting elements to plain text documents. Created by <a href="https://daringfireball.net/projects/markdown/" target="_blank">John Gruber</a> in 2004, Markdown is now one of the world’s most popular markup languages.</p>
- <h2>Editing with Markdown output</h2>
- <p>The <a href="https://ckeditor.com/">CKEditor 5 WYSIWYG</a> editor lets you use this flexible yet simple markup language in the GitHub flavor. The editor-produced Markdown output supports the most important features, like <a href="https://ckeditor.com/">links</a>, <strong>different</strong> kinds of <em>emphasis</em>, <code>inline code formatting</code> or code blocks:</p>
- <pre>
- <code class="language-css">p {
- text-align: center;
- color: red;
- }</code>
- </pre>
- <h2>Formatting blocks with Markdown</h2>
- <p>Markdown can be used to create various block-level features, such as:</p>
- <ul>
- <li>Block quotes</li>
- <li>Headings
- <ol>
- <li>Heading 1</li>
- <li>Heading 2</li>
- <li>Heading 3</li>
- </ol>
- </li>
- <li>Lists, including nested ones
- <ul>
- <li>Numbered lists</li>
- <li>Bulleted lists</li>
- </ul>
- </li>
- </ul>
- </div>
- <p>Output:</p>
- <pre><code id="snippet-markdown-output"></code></pre>
|