8
0

markdown.html 692 B

12345678910111213141516171819202122232425262728293031
  1. <style>
  2. pre.markdown-output {
  3. background: hsl(70, 7%, 16%);
  4. color: hsl(0, 0%, 100%);
  5. display: block;
  6. font-size: 1em;
  7. font-family: Monaco, Menlo, Consolas, "Roboto Mono", "Courier New", "Ubuntu Mono", monospace;
  8. padding: 1.333em;
  9. }
  10. </style>
  11. <div id="editor">This is [CKEditor 5](https://ckeditor.com).
  12. ![Sample image](./sample.jpg)
  13. ```javascript
  14. function fancyAlert(arg) {
  15. if(arg) {
  16. $.facebox({div:'#foo'})
  17. }
  18. }
  19. ```
  20. First Header | Second Header
  21. ------------ | -------------
  22. Content from cell 1 | Content from cell 2
  23. Content in the first column | Content in the second column
  24. </div>
  25. <p>Output:</p>
  26. <pre class="markdown-output"><code id="markdown-output"></code></pre>