Markdown Syntax
This page introduces the Markdown syntax that can be used in dodo
Headings
markdown
# Heading1
## Heading2
### Heading3
#### Heading4
##### Heading5
##### Heading6
Italic
markdown
This is *Italic* text1.
This is _Italic_ text2.
This is Italic text1.
This is Italic text2.
Bold
markdown
This is **Bold** text1.
This is __Bold__ text2.
This is Bold text1.
This is Bold text2.
Inline Code
markdown
`Inline Code` Example
Inline Code
Example
Fenced Code Block
\`\`\`bash
`Inline Code` Example
\`\`\`
bash
`Inline Code` Example
Blockquote
markdown
> Blockquote Text
Blockquote Text
Ordered List
markdown
1. Item1
2. Item2
3. Item3
4. Item4
1.
Item1
2.
Item2
3.
Item3
4.
Item4
Unordered List
markdown
* Item1
* Item2
- Item3
- Item4
Item1
Item2
Item3
Item4
Link
markdown
[dodo top](https://www.dodo-doc.com)
Link Card
If you surround a URL with blank lines, it will be displayed as a LinkCard.
markdown
https://www.dodo-doc.com
Message (original syntax)
markdown
:::message info
Info Message
:::
:::message warning
Warning Message
:::
:::message alert
Alert Message
:::