| 1 | $(function() { |
| 2 | /* Replace '.rst' with '.html' in all internal links like './[Something].rst[#anchor]' */ |
| 3 | $('a[href^="./"][href*=".rst"]').attr('href', (i, val) => { return val.replace('.rst', '.html'); }); |
| 4 |
nothing calls this directly
no test coverage detected