User:Phlsph7/UnfoldedNumberedTOC(Vector2022).js: Difference between revisions

Content deleted Content added
readability
avoid bug for italics
 
(One intermediate revision by the same user not shown)
Line 1:
/*** Unfolded and numbered TOC for Vector 2022 ***/
 
// Unfolds the TOCtable of contents and numbers the sections.
// This script is a modified version of the code found at https://greasyfork.org/en/scripts/458558-wikipedia-vector-2022-better-toc .
// It is licensed under the MIT Licenselicense.
 
(function () {
// check whether the vectorVector 2022 skin is used
if (document.body.classList.contains("skin-vector-2022")){
// compose stylesheet contents
Line 33:
.vector-toc-text {
padding: 2px 0 !important;
gap: 0.25em;
display: flex;
justify-content: flex-start;
gap: 0.25em
}
Line 44 ⟶ 43:
.vector-toc .vector-toc-numb, .vector-toc .vector-toc-numb:after {
display: inline !important; white-space: pre;
}`
`;
// add stylesheet to document
Line 51:
document.head.append(stylesheet);
// unfold the sections
const listElements = document.getElementsByClassName('vector-toc-level-1');
for(var listElement of listElements){
listElement.classList.add('vector-toc-list-item-expanded');
}
// avoid bug showing multiple columns for the use of italics
const tocTextElements = document.getElementsByClassName('vector-toc-text');
for(var tocTextElement of tocTextElements){
// put everything after the number into a separate span element
tocTextElement.innerHTML = tocTextElement.innerHTML.replace('</span>', '</span><span>') + '</span>';
}
}
})();