docs(plugin): add search doc

This commit is contained in:
qingwei.li 2017-02-19 11:22:34 +08:00 committed by cinwell.li
parent 2351c3e68c
commit 515331763d
2 changed files with 16 additions and 4 deletions

View File

@ -23,7 +23,13 @@ By default, the hyperlink on the current page is recognized and the content is s
search: {
maxAge: 86400000, // Expiration time, the default one day
paths: [], // or 'auto'
placeholder: 'Type to search'
placeholder: 'Type to search',
// Localization
placeholder: {
'/zh-cn/': '搜索',
'/': 'Type to search'
}
}
}
</script>
@ -101,7 +107,7 @@ window.$docsify = {
}
```
!> You can get internal methods through `window.Docsify.utils`.
!> You can get internal methods through `window.Docsify`. Get the current instance through the second argument.
#### Example

View File

@ -23,7 +23,13 @@
search: {
maxAge: 86400000, // 过期时间,单位毫秒,默认一天
paths: [], // or 'auto'
placeholder: 'Type to search'
placeholder: 'Type to search',
// 支持本地化
placeholder: {
'/zh-cn/': '搜索',
'/': 'Type to search'
}
}
}
</script>
@ -96,7 +102,7 @@ window.$docsify = {
}
```
!> 如果需要用 docsify 的内部方法,可以通过 `window.Docsify.utils` 获取
!> 如果需要用 docsify 的内部方法,可以通过 `window.Docsify` 获取,通过 `vm` 获取当前实例
#### 例子