Markdown

Updated: January 14, 2024

Markdown Cheatsheet and go


Table of Contents

#                 H1
##				  H2
###				  H3
####			  H4
#####			  H5
######			  H6

*italicized text*
**bold text**
***bold and italicized***
~~strikethough~~

> Blockquote

1. Ordered list
2. Second Item
3. Third Item

- Unordered list
- Second item
- Third item

--- horizontal rule

`code`

https://www.example.com		url will be made linked
'https://www.example.com'	url will not become a link

[title](https://www.example.com)	link
[title](/relative/path/file.md#anchor)  local link
![title](https://www.example.com)	image

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

term
: definition

[anchor](#custom)
{#custom}

- [x] Task list
- [ ] second item
- [ ] third item