Markdown Syntax Guide

2019-12-06 12:23
1 mins

概要: here is my markdown syntax guide.

Headings

建议只使用 h1-h3,只支持三级标题的渲染。

h1

h2

h3

Blockquote

Blockquote 渲染

List

Ordered List

  1. list1
  2. list2
  3. list3

Unordered List

  • list1
  • list2
  • list3

Code

func test() {
  fmt.Println("here is the go")
}
console.log('here is the javascript')

Table

header1 header2 header3
data1 data2 data3
data4 data5 data6

最后修改于: 2019-12-06 12:23