This Markdown cheat sheet provides a quick overview of basic Markdown syntax.
It can’t cover everything so if you need more detail please refer to the Markdown Basic Syntax guide
| Element |
Markdown Syntax |
| Heading |
## H2
### H3
#### H4
|
| Bold |
**bold text**
|
| Italic |
*italicized text*
|
| Blockquote |
> blockquote
|
| Ordered list |
1. First item
2. Second item
3. Third item
|
| Unordered list |
- First item
- Second item
- Third item
|
| Code |
`put code between backticks`
|
| Horizontal rule |
-----
|
| Link to external page |
[link text](https://www.anu.edu.au/)
|
| Image |

|
| Link to internal page |
[link text]({% link _cms_content_creators/index.md %})
|
| Link to another internal page heading |
[link text]({% link _cms_content_creators/index.md %}#heading-title)
|
| Link to a heading on the same page |
[link text](#heading-title)
|