pradeep padmarajaiah
1 min readMay 11, 2020

mkdocs (Understanding markdown documentation creation) Part-2

# Markdown Commands

## Headers
* Syntax : `#Header1`

* Syntax : `##Header2`

* Syntax : `###Header3`

* Syntax : `####Header4`

* Syntax : `####Header5`

* Syntax : `####Header6`

## Bold
Syntax : `**Bold**`

## Italic
Syntax : `_Italic_`

## Bold and Italic
Syntax : `**_Bold and Italic_**`

#### Link
Syntax : `[Check Google](www.google.com))`

#### Images
Syntax : `![alertnative value](https://upload.wikimedia.org/wikipedia/en/8/80/Wikipedia-logo-v2.svg)`

#### Blockquotes
Syntax : `>”Blockquotes”`

Example :
>”Blockquotes1"
>
>Blockquotes2

#### Strike through
Syntax : `<s>Strike through</s>`

#### Unordered list
Syntax : `* Pradeep`

Example 1

* Pradeep
* Raj
* Jack

Example 2

* Names
* Pradeep
* Raj
* Jack

#### Ordered list
Syntax : `1 Pradeep` (add two space after each line)

Example 1

1 Pradeep
2 Raj
3 Jain

Example 2

1 Names

* Pradeep
* Raj
* Jain

#### Table

| Name |Id |
| : — — — — — — — | : — — — — — — — |
| _Amit_ | **E001** |
| _Pradeep_ | **E002** |

Sample code

https://github.com/pradeeppadmarajaiah/mkdocs/blob/master/samples/project-doc/docs/markdown.md

Part 1 mkdocs setup with mkdocs-material Part-1

https://medium.com/@pradeep.padmarajaiah/mkdocs-setup-with-mkdocs-material-4d16cb5874db