未验证 提交 d7dd909d 编写于 作者: D Diogo Correia 提交者: GitHub

docs($markdown): add missing examples for line highlighting (fix #2473) (#2477)

上级 d91beca8
......@@ -275,6 +275,46 @@ export default {
}
```
In addition to a single line, you can also specify multiple single lines, line ranges, or both.
- Line ranges: e.g. `{5-8}`, `{3-10}`, `{10-17}`
- Multiple single lines: e.g. `{4,7,9}`
- Line ranges and single lines: e.g. `{4,7-13,16,23-27,40}`
**Input**
````
``` js{1,4,6-7}
export default { // Highlighted
data () {
return {
msg: `Highlighted!
This line isn't highlighted,
but this and the next 2 are.`,
motd: 'VuePress is awesome',
lorem: 'ipsum',
}
}
}
```
````
**Output**
``` js{1,4,6-8}
export default { // Highlighted
data () {
return {
msg: `Highlighted!
This line isn't highlighted,
but this and the next 2 are.`,
motd: 'VuePress is awesome',
lorem: 'ipsum',
}
}
}
```
## Line Numbers
You can enable line numbers for each code blocks via config:
......
......@@ -270,6 +270,46 @@ export default {
}
```
除了单行以外,你也可指定多行,行数区间,或是两者都指定。
- 行数区间: 例如 `{5-8}`, `{3-10}`, `{10-17}`
- 多个单行: 例如 `{4,7,9}`
- 行数区间与多个单行: 例如 `{4,7-13,16,23-27,40}`
**Input**
````
``` js{1,4,6-7}
export default { // Highlighted
data () {
return {
msg: `Highlighted!
This line isn't highlighted,
but this and the next 2 are.`,
motd: 'VuePress is awesome',
lorem: 'ipsum',
}
}
}
```
````
**Output**
``` js{1,4,6-8}
export default { // Highlighted
data () {
return {
msg: `Highlighted!
This line isn't highlighted,
but this and the next 2 are.`,
motd: 'VuePress is awesome',
lorem: 'ipsum',
}
}
}
```
## 行号
你可以通过配置来为每个代码块显示行号:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册