Markdown Editor

Words: 4 Characters: 24

Your markdown text...

Overview

Nearly all Markdown applications support the basic syntax outlined in John Gruber’s original design document. There are minor variations and discrepancies between Markdown processors — those are noted inline wherever possible.

Rules apply to discord text formatting or as discord markdown.

Markdown Basics

ElementMarkdown Syntax
Heading# H1
## H2
### H3
BoldJac**bold text**kson
Italic*italicized text*
Blockquote> blockquote
Ordered List1. First item
2. Second item
3. Third item
Unordered List- First item
- Second item
- Third item
Code`code`
Horizontal Rule---
Link[title](https://www.devs-tools.com/)
Image![alt text](image.jpg)
Table| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
Fenced Code Blocktoo
FootnoteHere's a sentence with a footnote. [^1]

[^1]: This is the footnote.
Heading ID### My Great Heading {#custom-id}
Definition Listterm
: definition
Strikethrough~~The world is flat.~~
Task List- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media