Every piece of Markdown syntax, with the source and the result side by side
The number of # characters sets the level, from H1 down to H6.
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6Asterisks (*) or underscores (_) give you bold, italic, and strikethrough.
**bold** or __bold__
*italic* or _italic_
***bold and italic***
~~strikethrough~~bold or bold
italic or italic
bold and italic
strikethrough
Link text goes in square brackets, the URL in parentheses.
[Go to EasyMD](https://easy-md.com)
[A relative link](/en/guide)
[A link with a title](https://example.com "Tooltip text")Put an exclamation mark (!) in front of the link syntax and you get an image.

The image is loaded from the URL and displayed.
The alt text is what screen readers announce, and what appears if the image fails to load.
One backtick (`) for inline code, three for a code block.
`inline code`
```javascript
const greet = (name) => {
return `Hello, ${name}!`;
};
```
```python
def greet(name):
return f"Hello, {name}!"
```inline code
const greet = (name) => {
return `Hello, ${name}!`;
}; def greet(name):
return f"Hello, {name}!"Pipes (|) and hyphens (-) build the table. Where you put the colon (:) sets the column alignment.
| Name | Age | Role |
|:-----|:----:|-----:|
| Alex | 28 | Developer |
| Sam | 32 | Designer || Name | Age | Role |
|---|---|---|
| Alex | 28 | Developer |
| Sam | 32 | Designer |
💡 :--- left / :---: centre / ---: right
To-do lists in the GitHub Flavored Markdown (GFM) style.
- [x] A finished item
- [ ] An unfinished item
- [x] Learn Markdown
- [ ] Write a document in EasyMDAn angle bracket (>) makes a quote, and they can be nested.
> This is a quote.
> It can run over several lines.
>
>> And quotes can be nested.This is a quote.
It can run over several lines.And quotes can be nested.
Three or more hyphens (-), asterisks (*), or underscores (_) on their own line.
---
***
___Unordered list:
- Apple
- Banana
- A nested item
- Cherry
Ordered list:
1. First
2. Second
3. ThirdUnordered list:
Ordered list:
🚀 Put it straight to use
Open the EasyMD editor