Strip discord.ext in genindex page and unbreak PEP links.

This commit is contained in:
Rapptz 2019-06-28 21:29:43 -04:00
parent acda808803
commit ab00bc0686

View File

@ -9,6 +9,14 @@
// this is pretty finicky but it should work.
for(let el of elements) {
let key = el.getAttribute('href').split('#', 2)[1]
if(!key.startsWith('discord.')) {
continue;
}
if(key.startsWith('discord.ext.')) {
key = key.substr(12); // discord.ext.
}
if(el.textContent.endsWith('method)') || el.textContent.indexOf('()') !== -1) {
key = key + '()'
}