fix(deps): `tocbot` has no initialization detection (#957)

Resolves #957
This commit is contained in:
Cotes Chung 2023-03-31 05:05:33 +08:00
parent 8b4f99c87f
commit 8225174cb5
No known key found for this signature in database
GPG Key ID: 0D9E54843167A808
1 changed files with 11 additions and 9 deletions

View File

@ -1,11 +1,13 @@
export function toc() {
// see: https://github.com/tscanlin/tocbot#usage
tocbot.init({
tocSelector: '#toc',
contentSelector: '.post-content',
ignoreSelector: '[data-toc-skip]',
headingSelector: 'h2, h3',
orderedList: false,
scrollSmooth: false
});
if (document.querySelector('#core-wrapper h2,#core-wrapper h3')) {
// see: https://github.com/tscanlin/tocbot#usage
tocbot.init({
tocSelector: '#toc',
contentSelector: '.post-content',
ignoreSelector: '[data-toc-skip]',
headingSelector: 'h2, h3',
orderedList: false,
scrollSmooth: false
});
}
}