Files
www.koffeejava.us/_javascript/modules/components/toc.js
2024-01-30 08:22:03 +08:00

14 lines
353 B
JavaScript

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