jan/docs/src/js/custom_toc.js
2023-11-01 17:22:01 +07:00

9 lines
338 B
JavaScript

document.addEventListener('DOMContentLoaded', function () {
const toc = document.querySelector('.table-of-contents');
if (toc) {
const title = document.createElement('div');
title.className = 'custom-toc-title';
title.innerText = 'On this page';
toc.insertBefore(title, toc.firstChild);
}
});