Florian Weber 79e87b8af2
Some checks failed
Deploy Jekyll site to Pages / build (push) Failing after 7m43s
trying chirpy theme
2024-11-14 14:44:22 +01:00

23 lines
511 B
JavaScript

export class TocDesktop {
/* Tocbot options Ref: https://github.com/tscanlin/tocbot#usage */
static options = {
tocSelector: '#toc',
contentSelector: '.content',
ignoreSelector: '[data-toc-skip]',
headingSelector: 'h2, h3, h4',
orderedList: false,
scrollSmooth: false,
headingsOffset: 16 * 2 // 2rem
};
static refresh() {
tocbot.refresh(this.options);
}
static init() {
if (document.getElementById('toc-wrapper')) {
tocbot.init(this.options);
}
}
}