diff --git a/docs/markdown.html b/docs/markdown.html index 22be4bd2..c97e26dc 100644 --- a/docs/markdown.html +++ b/docs/markdown.html @@ -59,8 +59,8 @@ > > 嵌套 > > 块引用 -
* Item 1
* Item 2
* item 3a
@@ -74,7 +74,7 @@
+ Item 1
+ Item 2
-或者
+或者任务列表
- [ ] Checkbox off
- [x] Checkbox on
@@ -86,23 +86,19 @@
[link](http://google.com)
-
-[link][google]
+
+[link][google]
[google]: http://google.com
-
-<http://google.com>
+
+<http://google.com>
*斜体*
-_斜体_
+*斜体* _斜体_ **粗体** __粗体__
+
+`内联代码` ~~删除~~
-**粗体**
-__粗体__
-
-`内联代码`
-~~删除~~
-
-
连字符
---
@@ -112,6 +108,12 @@
下划线
___
+在当前行的结尾加 2 个空格··
+这行就会新起一行\
+反斜杠也可以换行
+
+尾部添加两个空格,或者添加 \
反斜杠
```javascript
console.log("This is a block code")
@@ -126,33 +128,46 @@
`Inline code` 周围有反引号
-| 左栏 | 中间栏 | 右栏 |
-|:------------|:-------------:|-------------:|
-| 单元格 1 | 居中 | $1600 |
-| 单元格 2 | 单元格 3 | $12 |
+
| 左栏 | 中间栏 | 右栏 |
+| ----------| ------------ | --------- |
+| 单元格 1 | 居中 | $1600 |
+| 单元格 2 | 单元格 3 | $12 |
简单的风格
- 左栏 | 中间栏 | 右栏
-:----------:|:-------------:|:-----------:
- 单元格 1 | 居中 | $1600
- 单元格 2 | 单元格 3 | $12
+ 左栏 | 中间栏 | 右栏
+:-------: | :-------:|:-------:
+单元格 1 | 居中 | $1600
+单元格 2 | 单元格 3 | $12
Markdown 表格生成器:tableconvert.com
-

+
这是一个简单的脚注[^1]。
-
+一个脚注也可以有多行[^2]。
+
+你也可以使用文字,更贴合你的写作风格[^note]。
+
+[^1]:我的参考。
+[^2]:每个新行都应以 2 个空格为前缀。
+ 这允许你有一个多行的脚注。
+[^note]:
+ 推荐使用数字命名脚注,但文本更容易识别和链接。
+ 脚注使用了不同的语法,使用 4 个空格作为新行。
+
+
+
+
[](https://github.com/)
-[](link_url)
+[](link_url)
![alt text][logo]
+![替代文字][logo]
[logo]: /images/logo.png "Logo Title"
@@ -228,5 +243,9 @@
字符 转义 描述 \ \\ backslash 反斜杠 ` \` backtick 反引号 * \* asterisk 星号 _ \_ underscore 下划线 {} \{} curly braces 花括号 [] \[] square brackets 方括号 () \() parentheses 圆括号 # \# hash mark 哈希标记 + \+ plus sign 加号 - \- minus sign (hyphen) 减号(连字符) . \. dot 点 ! \! exclamation mark 感叹号
-