Skip to main content

Markdown syntax

# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6

Plaintext

*italic* | _italic_
**bold** | __bold__
__*bold and italic*__
~~strikethrough~~
:smile: <- Emoji

List

- item 1
- item 1.1
- item 1.2
- item 2

1. item 1
2. item 2

- [ ] Task 1
- [x] Task 2
Inline link: [Link Text](http://www.example.com)
Reference link: [Link Text][1]` and then `[1]: http://www.example.com
Image: ![Alt Text](http://www.example.com/image.jpg)

Blockquote

> This is a quote
>

Codeblocks

Code inline: `code`
Code block: (replace ' to `)
'''file-type
// code
'''

Table

| Header 1 | Header 2 |
| --- | --- |
| Cell 1 | Cell 2 |

Footnote

Here is a footnote[^1]
---
[^1]: This is the footnote.

Example for footnote, maybe show lastest of this page!1

Diff file

-const firstName = "Fi";
+const firstName = "Phi";
// some comment here

Block information

README.md
<!-- Works on Github only -->
> [!Note]
>
> This is note

> [!Tip]
>
> Tips for nothing

> [!Warning]
>
> Bananaaaaaaaaaaaaaaaaa

> [!Caution]
>
> Just don't

For Docusaurus

note

Attention!

info

Look over here!

tip

Here your advise!

warning

I remind you

caution

Remember

danger

Just don't

Expanding

Click to expand!

This is content inside

Yes, docs can expand

Footnotes

  1. Footnote here!