diff --git "a/data/1.gml\345\210\235\351\230\266/2.MarkDown\345\205\245\351\227\250/8.\344\273\243\347\240\201\345\235\227/learn.md" "b/data/1.gml\345\210\235\351\230\266/2.MarkDown\345\205\245\351\227\250/8.\344\273\243\347\240\201\345\235\227/learn.md"
index 0ec88a72b8c5a58a0ea41adc23d72b1c4897095c..e60cffb97663a23984fd5adaa08dc525850a2f8c 100644
--- "a/data/1.gml\345\210\235\351\230\266/2.MarkDown\345\205\245\351\227\250/8.\344\273\243\347\240\201\345\235\227/learn.md"
+++ "b/data/1.gml\345\210\235\351\230\266/2.MarkDown\345\205\245\351\227\250/8.\344\273\243\347\240\201\345\235\227/learn.md"
@@ -21,16 +21,18 @@
### B
````bash
+多行代码块
```diff
var foo = 'bar';
+ var x = 200;
* var x = 100;
```
-````
+```
### C
````bash
+多行代码块
```python
def fibo(max):
n, a, b = 0, 0, 1
@@ -41,4 +43,4 @@ def fibo(max):
for n in fibo(10):
print (n)
```
-````
+```
diff --git "a/data/1.gml\345\210\235\351\230\266/2.MarkDown\345\205\245\351\227\250/9.\350\241\250\346\240\274/learn.md" "b/data/1.gml\345\210\235\351\230\266/2.MarkDown\345\205\245\351\227\250/9.\350\241\250\346\240\274/learn.md"
index 2e67f8fd568678aee8e619eb1c47b72deadb6c16..6a362f27081e729065846aac3cb9ab1dcd713889 100644
--- "a/data/1.gml\345\210\235\351\230\266/2.MarkDown\345\205\245\351\227\250/9.\350\241\250\346\240\274/learn.md"
+++ "b/data/1.gml\345\210\235\351\230\266/2.MarkDown\345\205\245\351\227\250/9.\350\241\250\346\240\274/learn.md"
@@ -7,11 +7,9 @@
## 答案
```bash
-| header 1 |
- header 2 | header 3 |
-|:-------- | :------: | --------:|
-| left-aligned 文本居左 | centered 文本居中 | right-aligned 文本居右 |
-| `:---` 左侧冒号表示**内容和标题栏**居左对齐 | `:--:` 两端都有冒号表示**内容和标题栏**居中对齐 | `---:` 右侧冒号表示**内容和标题栏**居右对齐 |
+| header 1 |header 2 | header 3 |
+| 文本居左 | 文本居中 | 文本居右 |
+| | | |
```
## 选项
@@ -21,8 +19,8 @@
```bash
| header 1 | header 2 | header 3 |
|:-------- | :------: | --------:|
-| left-aligned 文本居左 | centered 文本居中 | right-aligned 文本居右 |
-| `:---` 左侧冒号表示**内容和标题栏**居左对齐 | `:--:` 两端都有冒号表示**内容和标题栏**居中对齐 | `---:` 右侧冒号表示**内容和标题栏**居右对齐 |
+| 文本居左 | 文本居中 | 文本居右 |
+| | | |
```
### B
@@ -31,7 +29,7 @@
| header 1 | header 2 | header 3 |
| --- | ------ |---------:|
| cell 1 | cell 2 | cell 3 |
-| cell 4 | cell 5 is longer | cell 6 is much longer than the others, but that's ok. It will eventually wrap the text when the cell is too large for the display size. |
+| cell 4 | cell 5 is longer | cell 6 |
| cell 7 | | cell
9 |
````
@@ -41,6 +39,6 @@
| header 1 | header 2 | header 3 |
| :--- | :------: |---------:|
| cell 1 | cell 2 | cell 3 |
-| cell 4 | cell 5 is longer | cell 6 is much longer than the others, but that's ok. It will eventually wrap the text when the cell is too large for the display size. |
+| cell 4 | cell 5 | cell 6 |
| cell 7 | | cell
9 |
````