Step into Markdown

Italics and Bold

1
** _
1
2
# ## ### #### ...
#### _italics header five_
1
[visit url](url)
  • inline link
  • reference link [][]
1
2
3
4
5
Find something by your [favorites search engine][favorite];
or try [another][alternative].

[favorite]:www.google.com
[alternative]:www.bing.com

Images

1
![](url "alt text")
  • inline image
  • reference image
    1
    2
    3
    4
    5
    6
       //inline style
    ![text](url "alt text")
    //reference style
    ![text][logo]

    [logo]:url 'alt text'

block quotes >

> this is a block quotes to notify reader pay special attention

Lists *

1
* + -

Paragraphs

  • hard break
  • soft break : two spaces after each new line

Code `

sample 1

1
2
var str ="test";
console.log(str)

sample 2
Inline code test var num = 123 , good sample.
sample 3

1
$npm install express -g

Tablestables is not part of core Markdown spec. by GFM spec?

Horizontal rule

three or more - * _ hyphen Asterisks underscore

inline HTML support

youtube videos sample

sample

1
<iframe width="560" height="315" src="https://www.youtube.com/embed/6A5EpqqDOdk" frameborder="0" allowfullscreen></iframe>