in scripts/navigation-loader.js [33:42]
function updateTocLinks() {
document.querySelectorAll(`.${TOC_LINK_CLASS}`).forEach((tocLink) => {
tocLink.setAttribute('href', `${pathToRoot}${tocLink.getAttribute('href')}`);
tocLink.addEventListener('keydown', preventScrollBySpaceKey);
});
document.querySelectorAll(`.${TOC_SKIP_LINK_CLASS}`).forEach((skipLink) => {
skipLink.setAttribute('href', `#main`);
skipLink.addEventListener('keydown', preventScrollBySpaceKey);
})
}