Wikipedia:AutoEd/templates.js
Appearance
From Wikipedia, the free encyclopedia
functionautoEdTemplates(str){//MAIN FUNCTION describes list of fixes //Remove unneeded Template: text from transclusions str=str.replace(/{{[_ ]*Template:[_ ]*/gi,'{{'); //Replace redirects to Reflist with Reflist str=str.replace(/{{[_ ]*(?:Reference[_ ]+List|References-Small|Reflink)[_ ]*(\||}})/gi,'{{Reflist1ドル'); str=str.replace(/{{[_ ]*(?:Refs|Reference|Ref-list|Listaref|FootnotesSmall)[_ ]*(\||}})/gi,'{{Reflist1ドル'); //Replace a long version of Reflist with Reflist str=str.replace(/<div[^<>]*[ ]+class=['"]*references-small['"]*[^<>]*>[\r\n]*<references[ ]*\/>[\r\n]*<\/div>/gim,'{{Reflist}}'); //Replace redirects to about with about str=str.replace(/{{[_ ]*(?:Otheruses4|Four[_ ]+other[_ ]+uses|Otherusesabout|This2)[_ ]*(\||}})/gi,'{{about1ドル'); returnstr; }