User:Aidan9382/scripts/refsByName.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Aidan9382/scripts/refsByName. |
//Modified version of [[User:Smith609/refsByName.js]]
//This version keeps the number when adding the name and fixes the broken regex
var active = false;
function refsByName() {
active = !active;
var links = document.getElementsByTagName("a");
var countLinks = links.length;
var refName = /#cite_note-([^\"\s]*)-\d+$/;
for (var i=1; i<countLinks; i++) {
if (refName.test(links[i].href) && links[i].href) {
var ref = refName.exec(links[i].href)[1];
if (ref.substring(0,8) != "FOOTNOTE") {
var cur = links[i].innerHTML;
if (active) {
links[i].innerHTML = "[" + cur.substring(1,cur.length-1) + " | " + ref + "]";
} else {
var splitter = cur.search("\\|");
if (splitter > -1) {
links[i].innerHTML = cur.substring(0,splitter-1) + "]";
}
}
}
}
}
}
addOnloadHook(refsByName);
//Script can cause formatting nightmares in some scenarios, so keep a toggleoff if its activated
mw.util.addPortletLink('p-tb', 'javascript:refsByName()', "Toggle refsByName");