Skip to content

Commit 7cffbbb

Browse files
authored
docs: fix md samples in markdown guide (#474)
Co-authored-by: Daniel Kreiseder <[email protected]>
1 parent 0587d0b commit 7cffbbb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/guide/markdown.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,9 @@ export default {
238238

239239
```html
240240
<ul>
241-
<li v-for="todo in todos" :key="todo.id">{{ todo.text }}</li>
241+
<li v-for="todo in todos" :key="todo.id">
242+
{{ todo.text }}
243+
</li>
242244
</ul>
243245
```
244246

@@ -281,7 +283,7 @@ In addition to a single line, you can also specify multiple single lines, ranges
281283
**Input**
282284

283285
````
284-
```js{1,4,6-7}
286+
```js{1,4,6-8}
285287
export default { // Highlighted
286288
data () {
287289
return {

0 commit comments

Comments
 (0)