tocbot_english
2024-10-12
tocbot Options
option | value | description |
---|---|---|
tocSelector | .js-toc |
Where to render the table of contents |
tocElement | element | Or, you can pass in a DOM node instead |
contentSelector | .js-toc-content |
Where to grab the headings to build the table of contents |
contentElement | element | Or, you can pass in a DOM node instead |
headingSelector | ‘h1, h2, h3’ | Which headings to grab inside of the contentSelector element |
ignoreSelector | '.js-toc-ignore' |
Headings that match the ignoreSelector will be skipped |
hasInnerContainers | false | For headings inside relative or absolute positioned containers within content |
linkClass | 'toc-link' |
Main class to add to links |
extraLinkClasses | '' |
Extra classes to add to links |
activeLinkClass | 'is-active-link' |
Class to add to active links,the link corresponding to the top most heading on the page |
listClass | 'toc-list' |
Main class to add to lists |
extraListClasses | " |
Extra classes to add to lists |
isCollapsedClass | 'is-collapsed' |
Class that gets added when a list should be collapsed |
collapsibleClass | 'is-collapsible' |
Class that gets added when a list should be able to be collapsed but isn’t necessarily collapsed |
listItemClass | 'toc-list-item' |
Class to add to list items |
activeListItemClass | 'is-active-li' |
Class to add to active list items |
collapseDepth | 0 | How many heading levels should not be collapsed.For example, number 6 will show everything since there are only 6 heading levels and number 0 will collapse them all. The sections that are hidden will open and close as you scroll to headings within them. |
scrollSmooth | true | Smooth scrolling enabled |
scrollSmoothDuration | 420 | Smooth scroll duration |
scrollSmoothOffset | 0 | Smooth scroll offset |
scrollEndCallback | function (e) {} |
Callback for scroll end |
headingsOffset | 1 | Headings offset between the headings and the top of the document (this is meant for minor adjustments) |
throttleTimeout | 50 | Timeout between events firing to make sure it’s not too rapid (for performance reasons) |
positionFixedSelector | null | Element to add the positionFixedClass to |
positionFixedClass | 'is-position-fixed' |
Fixed position class to add to make sidebar fixed after scrolling down past the fixedSidebarOffset |
fixedSidebarOffset | 'auto' |
fixedSidebarOffset can be any number but by default is set to auto which sets the fixedSidebarOffset to the sidebar element’s offsetTop from the top of the document on init |
includeHtml | false | includeHtml can be set to true to include the HTML markup from the heading node instead of just including the textContent |
includeTitleTags | false | includeTitleTags automatically sets the html title tag of the link to match the title. This can be useful for SEO purposes or when truncating titles |
onClick | function (e) {} |
onclick function to apply to all links in toc. will be called with the event as the first parameter, and this can be used to stop, propagation, prevent default or perform action |
orderedList | true | orderedList can be set to false to generate unordered lists (ul) instead of ordered lists (ol) |
scrollContainer | null | If there is a fixed article scroll container, set to calculate titles’ offset |
skipRendering | false | prevent ToC DOM rendering if it’s already rendered by an external system |
headingLabelCallback | false | Optional callback to change heading labels.For example it can be used to cut down and put ellipses on multiline headings you deem too long.Called each time a heading is parsed. Expects a string and returns the modified label to display.Additionally, the attribute data-heading-label may be used on a heading to specify a shorter string to be used in the TOC.function (string) => string |
ignoreHiddenElements | false | ignore headings that are hidden in DOM |
headingObjectCallback | null | Optional callback to modify properties of parsed headings. The heading element is passed in node parameter and information parsed by default parser is provided in obj parameter. Function has to return the same or modified obj. The heading will be excluded from TOC if nothing is returned.function (object, HTMLElement) => object | void
|
basePath | '' |
Set the base path, useful if you use a base tag in head
|
disableTocScrollSync | false | Only takes affect when tocSelector is scrolling, keep the toc scroll position in sync with the content |
tocScrollOffset | 0 | Offset for the toc scroll (top) position when scrolling the page. Only effective if disableTocScrollSync is false. |