Skip to content

Latest commit

 

History

History
146 lines (99 loc) · 2.44 KB

Grammar.md

File metadata and controls

146 lines (99 loc) · 2.44 KB

语法

标题

header 1

header 1

header 2

header 2

header 3

header 4

header 5
header 6

复选列表

  • checklist 1
  • checklist 2
  • checklist 3
  • checklist 4

表格

name gender age height weight
Jack male 20 175 70
Rose female 18 168 55

链接

图片

  • 行内式

markdown365

  • 参考式

markdown365.

无序列表

  • li [-]
  • li [+]
  • li [*]

有序列表

  1. li 1
  2. li 2
  3. li 3

嵌套列表

  1. ol list 1
  • ol list 1
  • ol list 2
  1. checklist
  • checklist 1
  • checklist 2
  • checklist 3
  1. three layers
  2. ul list 1 - ol list 1 - [ ] checklist 1. ul list 1
  3. ul list 2

引用块

quote 1

quote 2

  • ol list 1
  • ol list 2
console.log('code block in quote')

代码块

const reduce = a => a !== undefined
  ? b => b !== undefined
    ? reduce(a + b)
    : a
  : a
const b = reduce(1)(2)(3)(4)()

粗体和斜体

I am bold

I am bold

I am italic

I am italic

I am bold and italic

下划线

这是一个下划线


行内代码

我想要标记一下console.log('Hello')

代码中有反引号:There is a literal backtick (`) here.

自动链接

http://example.com/

[email protected]

html

我是h5标签