cm-md-editor
--- title: cm-md-editor description: Some example text for the editor --- # Heading 1 ## Heading 2 ### Heading 3 This is a minimal **markdown editor** with _italic_ and *also italic* and **_bold italic_** text. You can also use ~~strikethrough~~ for deleted text.
Some HTML Inline `code spans` are highlighted and protect their content: `**not bold**`. > Blockquotes are highlighted with a green prefix. ### Links and images Visit [the demo page](https://shaack.com/projekte/cm-md-editor/) or use a [reference link][ref].  [ref]: https://shaack.com ### Lists - Unordered list item - Another item - Nested item - Deeper nesting 1. Ordered list item 2. Second item ### Task lists - [ ] Unchecked task - [x] Completed task ### Code block ```javascript const editor = new MdEditor(element) console.log("syntax highlighted") ``` ### Horizontal rules --- ### Escape sequences Literal underscores: \_not italic\_ and backslash: \\ Ignore Markdown in code blocks: `_not italic_` And in Links: https://shaack.com/this_should_not_be_italic ### HTML tags This has
inline HTML
and a
tag.