Markdown Editor
Jump to ExplanationsCharacters: 0 / 5000
Markdown Explained
Headers
Create headers using '#' symbols. More '#' symbols mean smaller headers.
# Header 1
## Header 2
### Header 3
Emphasis
Use asterisks or underscores for emphasis.
*italic* or _italic_
**bold** or __bold__
***bold italic*** or ___bold italic___
Lists
Create ordered and unordered lists.
1. First item
2. Second item
- Unordered item
- Another item
Links
Create links with square brackets for text and parentheses for URL.
[Visit Google](https://www.google.com)
Images
Similar to links, but with an exclamation mark at the start.
![Alt text](https://example.com/image.jpg)
Code
Use backticks for inline code and triple backticks for code blocks.
`inline code`
```
code block
```