Help
Brief overview of Markdown syntax
Markdown | HTML | Output |
---|---|---|
*italic* |
<em>italic</em> |
italic |
**bold** |
<strong>bold</strong> |
bold |
***bold and italic*** |
<em><strong>bold and italic</strong></em> |
bold and italic |
~~wrong~~ |
||
text with a [link](https://example.com) |
text with a <a href="https://example.com">link</a> |
text with a link |
Headings
## Heading 2
### Heading 3
#### Heading 4
Heading 2
Heading 3
Heading 4
Image
![An icon with a camera](https://vearutop.p1cs.art/static/favicon.png)
Quote
> blockquote
blockquote
Table
| Col1 | Col2 |
|-------|------|
| one | two |
| three | four |
Col1 | Col2 |
---|---|
one | two |
three | four |
List
* One
* Two
* Three
- One
- Two
- Three
Horizontal Rule
A
---
B
A
B