Markdown语法

Markdown语法

二级标题

三级标题


清单

  • 无序清单1
    • 缩进清单1.1
  • 无序清单2
  • [] 复选框
  • [x] 复选框
  1. 有序清单1
    1. 有序清单1.1
    2. 有序清单1.2
  2. 有序清单2
  • A list item.

    With multiple paragraphs.

  • Another item in the list.

我的Github

强调语句

一个星号或下划线表斜体
_adjkdsd_
g
两个加粗
g
三个斜体且加粗
_wwwww_

文字居中

插入链接

Markdown支持两种用于创建链接的样式:内联引用。使用这两种样式,您可以使用方括号来分隔要转换为链接的文本。

内联样式链接在链接文本后立即使用括号。例如:
This is Google.

This is the website of My Github.

参考样式链接允许您按名称引用链接,您可以在文档的其他位置定义它们:
I get 10 times more traffic from My Github than from
Yahoo or MSN.

链接名称可能包含字母,数字和空格,但不区分大小写:
I start my morning with a cup of coffee and
[The New York Times][NY Times].

[ny times]: http://www.nytimes.com/

使用反反引号插入代码片

I strongly recommend against using any <blink> tags.
from keras import layers

使用缩进插入代码块

from keras import layers, models, sequential
    X = ...
return X

尖括号表引用

参考:https://daringfireball.net/projects/markdown/syntax