mirror of
https://github.com/peter-tanner/peter-tanner.github.io.git
synced 2024-11-30 20:10:18 +08:00
16 lines
425 B
JavaScript
16 lines
425 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
|
||
|
});
|
||
|
|
||
|
document.getElementById('toc-wrapper').classList.remove('d-none');
|
||
|
}
|
||
|
}
|