Skip to content

Commit

Permalink
docs(zh-CN): fix typo (vuejs#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyi7099 authored and yyx990803 committed Apr 20, 2018
1 parent 684d5ae commit 7d8c08a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions docs/zh/default-theme-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,16 @@ module.exports = {
当你提供了一个 `items` 数组而不是一个单一的 `link` 时,它将会显示以 `下拉列表` 的方式显示:

```js
// .vuepress/config.js
module.exports = {
themeConfig: {
nav: [
{ text: 'Home', link: '/' },
{ text: 'Guide', link: '/guide/' },
{ text: 'External', link: 'https://google.com' },
{
text: 'Languages',
items: [
{ text: 'Chinese', link: '/language/chinese' },
{ text: 'Japanese', link: '/language/japanese' }
]
}
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/guide/markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ module.exports = {
// markdown-it-toc 的选项
toc: { includeLevel: [1, 2] },
config: md => {
// 使用更过的 markdown-it 插件!
     // 使用更多的 markdown-it 插件!
md.use(require('markdown-it-xxx'))
}
}
Expand Down

0 comments on commit 7d8c08a

Please sign in to comment.