| 12345678910111213141516171819202122232425 |
- <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 plaintext 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 the user utilize this flexible yet simple markup language, in the GitHub flavor. The output covers the most important features, like <a href="https://ckeditor.com">links</a>, <strong>different</strong> kinds of <em>emphasis</em>, the <code>inline code formatting</code> or the code blocks:</p>
- <pre>
- <code class="language-css">
- p {
- text-align: center;
- color: red;
- }
- </code>
- </pre>
- <h2>Headings are supported, too!</h2>
- <p>Try it yourself, add elements and see the Markdown output below.</p>
- </div>
- <p>Output:</p>
- <pre><code id="snippet-markdown-output"></code></pre>
|