web/_javascript/modules/components/toc.js
2023-03-16 03:00:29 +08:00

11 lines
280 B
JavaScript

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
});
}