2023-03-15 21:56:54 +03:00
|
|
|
export function toc() {
|
2023-03-31 00:05:33 +03:00
|
|
|
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
|
|
|
|
});
|
|
|
|
}
|
2023-03-15 21:56:54 +03:00
|
|
|
}
|