lmzjms's picture
Upload 1162 files
0b32ad6 verified
raw
history blame contribute delete
225 Bytes
/*
change the default sphinx.ext.linkcode's [source] to [Github]
*/
document.querySelectorAll(".reference.external .viewcode-link .pre").forEach(item => {
item.innerHTML = "[Github]"
item.style.marginRight = "3px"
})