Hugo Markdown
Markdown
This is my cheat sheet for the basic syntax for markdown.Basic
Headings
Element | Syntax | Render |
---|---|---|
Heading 1 | # Heading 1 | Heading 1 |
Heading 2 | ## Heading 2 | Heading 2 |
Heading 3 | ### Heading 3 | Heading 3 |
Heading 4 | #### Heading 4 | Heading 4 |
Heading 5 | ##### Heading 5 | Heading 5 |
Heading 6 | ###### Heading 6 | Heading 6 |
Emphasis
EmphasisElement | Syntax | Render |
---|---|---|
Bold | **bold text** | bold text |
Italic | *italic text* | italic text |
Bold Italic | ***bold italic text*** | bold italic text |
Blockquotes
Element | Syntax | Render |
---|---|---|
Block quote | > Blockquote |
|
Lists
Element | Syntax | Render |
---|---|---|
Ordered lists | 1. First item 2. Second item 3. Third item 4. Fourth item |
|
Ordered lists (odd numbers) | 1. First item 1. Second item 1. Third item 1. Fourth item |
|
Unordered lists | - First item - Second item - Third item - Fourth item |
|
Links
Element | Syntax | Render |
---|---|---|
Link | [BBC](https://www.bbc.co.uk) | BBC |
Images
Element | Syntax | Render |
---|---|---|
Google logo | [Google](https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_92x30dp.png) | ![]() |
Tables
Element | Syntax | Render | ||||||
---|---|---|---|---|---|---|---|---|
Use three or more hyphens to create each column's header, and user pipes to seperate columns | |Syntax|Description| |---|---| | Header | Title | | Paragraph | Text | |
|
And the irony is, this page is written in HTML because I can't get it to work in markdown...
For more information, check out: