A docsify plugin to display page ToC for each page
npm install docsify-page-tocIt's a simple docsify plugin to print page's ToC.
It's useful when your page gets longer and whole ToC overflows the the page height.
On the desktop browser, the ToC looks like:

``html`
: The maximum depth of the headings printed on the ToC. If you set tocMaxLevel to 3, I recommand you to set subMaxLevel to 2 avoid ToC duplication.
- target: The target heading printed on the ToC. It's used as an argument to query DOM with querySelectorAll()Add these configuratios into your index.html:
`html
window.$docsify = {
...
'page-toc': {
tocMaxLevel: 3,
target: 'h1, h2, h3'
},
}
``