pagination plugin of docsify
npm install docsify-pagination


``html`
2. specify the label text (optional)
`javascript`
window.$docsify = {
// ...
pagination: {
previousText: '上一章节',
// or
nextText: {
'/en/': 'NEXT',
'/': '下一章节'
}
crossChapter: true,
crossChapterText: true,
},
}
'PREVIOUS'
* Type: String | Object
* Description: The text of previous label.$3
* Default: 'NEXT'
* Type: String | Object
* Description: The text of next label.$3
* Default: false
* Type: Boolean
* Description: Allow navigation to previous/next chapter.$3
* Default: false
* Type: Boolean
* Description: Display chapter name.$3
* Deprecated
* Default: window.$docsify.routerMode
* Type: String
* Description: Router mode. In most cases, you don't need to modify it. Docsify-Pagination will take care of it for you.Example
$3
- Example
- Example with Docsify's History Route-Mode
- Example with Localization
#### How to open these?
`bash
$ git clone https://github.com/imyelo/docsify-pagination.git && cd docsify-pagination && yarn
$ yarn example
``