Basic writing
Heading
# Heading level1
## Heading level2
### Heading level3
#### Heading level4
##### Heading level5
###### Heading level6 md
View code
Paragraph
This is paragraph
This is another paragraph
Lines end with more than one space would be soft wrap
This is paragraph
This is another paragraph
Lines end with more than one space would be
soft wrap md
View code
Bold
Bold text
**Bold text** md
View code
Strike through
one or two tildes.
~one~ or ~~two~~ tildes. md
View code
Inline code
const foo = 'bar'
`const foo = 'bar'` md
View code
Links
Normal links
[Home page](/)
[Google](https://google.com/)
Auto links
www.example.com
https://example.com
contact@example.com md
View code
List
- item1
- item2
- item3
- item1
- item2
- item3
- item1
- item2
- item3
* item1
* item2
* item3 md
View code
Table
| Name | Color | Count |
|---|---|---|
| Apple | Red | 1 |
| Grapes | Purple | 20 |
| Banana | Yellow | 3 |
| Name | Color | Count |
| --- | --- | --- |
| Apple | Red | 1 |
| Grapes | Purple | 20 |
| Banana | Yellow | 3 | md
View code
Footnote
Something[^1]
Big footnote[^bigfootnote]
[^1]: Footnote item
[^bigfootnote]: bigfootnote
Indent paragraphs
```js
const foo = 'bar'
``` md
View code
Label customization
You can use theme.footnoteLabel to display your custom auto generated footnotes title
Task list
- to do
- done
* [ ] to do
* [x] done md
View code
Emojis
I ❤️ 🍕
Emojis in this text will be replaced: 🐶 👍
I :heart: :pizza:
Emojis in this text will be replaced: :dog: :+1: md
View code