Markdown Syntax

作者: shisaq 日期: June 14, 2016

These days I’m learning “How to write readme in GitHub”, it’s time to give a collection of Markdown syntax.

// 1st level caption 一级标题

// 2nd level caption 二级标题

// 6th level caption 六级标题

code // inline code 行内代码

``` JavaScript

console.log(“code”);

console.log(“code”);

``` // snippet 代码段

  •  // unordered list 无序列表

  •  // unordered list 无序列表

  1.  // list 有序列表

Google //link 链接

image //image 图片

// quote 引用

** bold ** 粗体

em // emphasized 斜体

\ //cancel markdown 取消使用markdown

[x] // checklist checked 选中清单选项

[ ] // checklist unchecked 未选中清单选项

—————- // horizon 分割线

1
2
3
4
5
<code class="markdown">dog | bird | cat
<span class="hljs-horizontal_rule">----|------|----</span>
foo | foo  | foo
bar | bar  | bar
baz | baz  | baz </code> // table