Markdown Cheatsheet


   10 Aug 2020 15:31

Headings

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Lists

* Item 1
* Item 2
  * Sub Item 1
  * Sub Item 2

1. Item 1
2. Item 2
3. Item 3
  1. Item 1
  2. Item 2
  3. Item 3

Emphasis

*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__
*You **can** combine them*

This text will be italic This will also be italic This text will be bold This will also be bold You can combine them

Images

![Hugo Logo](/images/development/markdown-cheatsheet/hugo_logo_200x55.png)

Hugo Logo

[Link](#)

link

Code Blocks

```javascript

var a1=‘test’;

```

var a1='test';

Blockquotes

> This is some text.
> More text.

This is some text. More text.

Escape With Backslashes

\*

*

Task Lists

- [x] this is a complete item
- [ ] this is an incomplete item
- [x] @mentions, #refs, [links](),
**formatting**, and <del>tags</del>
supported
- [x] list syntax required (any
unordered or ordered list
supported)

Tables

| Left Alignment | Right Alignment | Centered |
|:---------------|----------------:|:--------:|
| Item 11        | Item 12         | Item 13  |
| Item 21        | Item 22         | Item 23  |
Left Alignment Right Alignment Centered
Item 11 Item 12 Item 13
Item 21 Item 22 Item 23

The default text alignment is is centered and can be defined by places a colon on the left, right or both sides of the minus sign(s) in the table definition.

Emojis

GitHub and other sites support Emojis.

:+1: :sparkles: :camel: :tada:
:rocket: :metal: :octocat:

GitHub Emojis

  Categories:   development   hugo
  Tags:   development   documentation   hugo   markdown