rst_links_fix.js 429 Bytes
Newer Older
1
2
3
$(function() {
    $('a[href^="./"][href*=".rst"]').attr('href', (i, val) => { return val.replace('.rst', '.html'); });  /* Replace '.rst' with '.html' in all internal links like './[Something].rst[#anchor]' */
    $('.wy-nav-content').each(function () { this.style.setProperty('max-width', 'none', 'important'); });
4
    $('.wy-menu.wy-menu-vertical > ul:nth-of-type(2)').hide();  /* Fix theme navbar shows hidden toctree */
5
});