2017-02-22 21:29:26 +08:00
# List of Plugins
2017-02-13 22:43:58 +08:00
2017-02-22 21:29:26 +08:00
## Full text search
2017-02-13 22:43:58 +08:00
By default, the hyperlink on the current page is recognized and the content is saved in `localStorage` . You can also specify the path to the files.
```html
< script >
window.$docsify = {
search: 'auto', // default
search : [
'/', // => /README.md
'/guide', // => /guide.md
'/get-started', // => /get-started.md
'/zh-cn/', // => /zh-cn/README.md
],
2017-03-10 05:19:07 +08:00
// complete configuration parameters
2017-02-13 22:43:58 +08:00
search: {
maxAge: 86400000, // Expiration time, the default one day
paths: [], // or 'auto'
2017-02-19 11:22:34 +08:00
placeholder: 'Type to search',
// Localization
placeholder: {
'/zh-cn/': '搜索',
'/': 'Type to search'
2017-02-28 21:27:07 +08:00
},
noData: 'No Results!',
// Localization
noData: {
'/zh-cn/': '找不到结果',
'/': 'No Results'
2017-07-26 08:36:35 +08:00
},
// Headline depth, 1 - 6
depth: 2
2017-02-13 22:43:58 +08:00
}
}
< / script >
2017-03-10 05:19:07 +08:00
< script src = "//unpkg.com/docsify/lib/docsify.min.js" > < / script >
< script src = "//unpkg.com/docsify/lib/plugins/search.min.js" > < / script >
2017-02-13 22:43:58 +08:00
```
2017-02-22 21:29:26 +08:00
## Google Analytics
2017-02-13 22:43:58 +08:00
Install the plugin and configure the track id.
```html
< script >
window.$docsify = {
ga: 'UA-XXXXX-Y'
}
< / script >
2017-03-10 05:19:07 +08:00
< script src = "//unpkg.com/docsify/lib/docsify.min.js" > < / script >
< script src = "//unpkg.com/docsify/lib/plugins/ga.min.js" > < / script >
2017-02-13 22:43:58 +08:00
```
Configure by `data-ga` .
2017-03-10 05:19:07 +08:00
```html
< script src = "//unpkg.com/docsify/lib/docsify.min.js" data-ga = "UA-XXXXX-Y" > < / script >
< script src = "//unpkg.com/docsify/lib/plugins/ga.min.js" > < / script >
```
2017-02-22 21:29:26 +08:00
## emoji
2017-02-13 22:43:58 +08:00
2017-02-22 21:29:26 +08:00
The default is to support parsing emoji. For example `:100:` will be parsed to :100:. But it is not precise because there is no matching non-emoji string. If you need to correctly parse the emoji string, you need install this plugin.
2017-02-13 22:43:58 +08:00
2017-02-22 21:29:26 +08:00
```html
2017-03-10 05:19:07 +08:00
< script src = "//unpkg.com/docsify/lib/plugins/emoji.min.js" > < / script >
2017-02-13 22:43:58 +08:00
```
2017-03-06 23:57:28 +08:00
## External Script
If the script on the page is an external one (imports a js file via `src` attribute), you'll need this plugin to make it work.
```html
2017-03-10 05:19:07 +08:00
< script src = "//unpkg.com/docsify/lib/plugins/external-script.min.js" > < / script >
2017-03-06 23:57:28 +08:00
```
2017-03-09 20:26:33 +08:00
## Zoom image
2017-11-02 10:43:09 +08:00
Medium's image zoom. Based on [medium-zoom ](https://github.com/francoischalifour/medium-zoom ).
2017-03-09 20:26:33 +08:00
```html
2017-03-10 05:19:07 +08:00
< script src = "//unpkg.com/docsify/lib/plugins/zoom-image.min.js" > < / script >
2017-03-09 20:26:33 +08:00
```
2017-09-01 15:43:43 +08:00
2017-10-31 21:20:08 +08:00
Exclude the special image
```markdown
![](image.png ':no-zoom')
```
2017-09-01 15:43:43 +08:00
## Edit on github
2017-12-14 23:09:08 +08:00
Add `Edit on github` button on every pages. Provided by [@njleonzhang ](https://github.com/njleonzhang ), check [document ](https://github.com/njleonzhang/docsify-edit-on-github )
2017-09-05 09:46:05 +08:00
## Demo code with instant preview and jsfiddle integration
With this plugin, sample code can be rendered on the page instantly, so that the readers can see the preview immediately.
When readers expand the demo box, the source code and description are shown there. if they click the button `Try in Jsfiddle` ,
`jsfiddle.net` will be open with the code of this sample, which allow readers to revise the code and try on their own.
[Vue ](https://njleonzhang.github.io/docsify-demo-box-vue/ ) and [React ](https://njleonzhang.github.io/docsify-demo-box-react/ ) are both supported.
2017-09-20 09:01:06 +08:00
2017-09-29 10:14:09 +08:00
## Copy to Clipboard
2017-12-14 23:09:08 +08:00
Add a simple `Click to copy` button to all preformatted code blocks to effortlessly allow users to copy example code from your docs. Provided by [@jperasmus ](https://github.com/jperasmus )
2017-09-29 10:14:09 +08:00
```html
2018-04-26 12:36:16 +08:00
< script src = "//unpkg.com/docsify-copy-code" > < / script >
2017-09-29 10:14:09 +08:00
```
See [here ](https://github.com/jperasmus/docsify-copy-code/blob/master/README.md ) for more details.
2017-11-04 13:54:37 +08:00
## Disqus
Disqus comments. https://disqus.com/
```html
< script >
window.$docsify = {
disqus: 'shortname'
}
< / script >
< script src = "//unpkg.com/docsify/lib/plugins/disqus.min.js" > < / script >
```
2017-11-09 20:53:07 +08:00
## Gitalk
2018-04-26 12:34:28 +08:00
[Gitalk ](https://github.com/gitalk/gitalk ) is a modern comment component based on Github Issue and Preact.
2017-11-09 20:53:07 +08:00
```html
< link rel = "stylesheet" href = "//unpkg.com/gitalk/dist/gitalk.css" >
< script src = "//unpkg.com/docsify/lib/plugins/gitalk.min.js" > < / script >
< script src = "//unpkg.com/gitalk/dist/gitalk.min.js" > < / script >
< script >
const gitalk = new Gitalk({
clientID: 'Github Application Client ID',
clientSecret: 'Github Application Client Secret',
repo: 'Github repo',
owner: 'Github repo owner',
admin: ['Github repo collaborators, only these guys can initialize github issues'],
// facebook-like distraction free mode
distractionFreeMode: false
})
< / script >
2017-12-14 23:09:08 +08:00
```
2018-06-29 21:33:17 +08:00
## Pagination
2017-12-14 23:09:08 +08:00
Pagination for docsify. By [@imyelo ](https://github.com/imyelo )
```html
< script src = "//unpkg.com/docsify/lib/docsify.min.js" > < / script >
< script src = "//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js" > < / script >
```
2018-04-26 12:34:28 +08:00
## codefund
2018-06-29 21:33:17 +08:00
2018-07-01 13:48:44 +08:00
a [plugin ](https://github.com/njleonzhang/docsify-plugin-codefund ) to make it easy to join up [codefund ](https://codefund.io/ )
2018-04-26 12:34:28 +08:00
> codefund is formerly known as "codesponsor"
```
< script src = "//unpkg.com/docsify/lib/docsify.min.js" > < / script >
window.$docsify = {
plugins: [
2018-05-02 22:38:34 +08:00
DocsifyCodefund.create('xxxx-xxx-xxx') // change to your codefund id
2018-04-26 12:34:28 +08:00
]
}
```
2018-10-23 15:28:31 +08:00
## Tabs
A docsify.js plugin for displaying tabbed content from markdown.
* [Documentation & Demos ](https://jhildenbiddle.github.io/docsify-tabs )
Provided by [@jhildenbiddle ](https://github.com/jhildenbiddle/docsify-tabs ).