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.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
functionformatCitations(vertical){vartxt=document.editform.wpTextbox1;originalCiteTemplates=txt.value.match(/\{\{cite [a-z]+ *\|[^}]+\}\}/g);tweakedCiteTemplates=originalCiteTemplates.slice();for(iinoriginalCiteTemplates){if(vertical){paramsLong=originalCiteTemplates[i].match(/\| *[a-z]+ *=/g);paramsShort=originalCiteTemplates[i].match(/[a-z]+(?= *=)/g);maxWidth=0;for(jinparamsShort){maxWidth=(paramsShort[j].length>maxWidth)?paramsShort[j].length:maxWidth;}for(kinparamsLong){numSpaces=maxWidth+2-paramsShort[k].length;aligned="| "+paramsShort[k]+Array(numSpaces).join(" ")+"=";tweakedCiteTemplates[i]=tweakedCiteTemplates[i].replace(paramsLong[k],aligned);}txt.value=txt.value.replace(originalCiteTemplates[i],tweakedCiteTemplates[i].replace(/\n/g,"").replace(/ *\|/g," |").replace(/= */g,"= ").replace(/ \|/g,"\n |").replace(/\}\}/,"\n}}"));}else{txt.value=txt.value.replace(originalCiteTemplates[i],tweakedCiteTemplates[i].replace(/\n/g,"").replace(/ *\| */g," |").replace(/ *= */g," = "));}}// Update the edit summaryvarsum=document.editform.wpSummary;varsummary=vertical?"Convert citation templates to vertical format, for readability":"Standardize whitespace in citation templates";summary+=" (using [[User:Waldir/formatcitations.js|Regex citation formatter]])";if(sum.value.indexOf(summary)==-1){if(sum.value.match(/[^\*\/\s][^\/\s]?\s*$/)){sum.value+=" | ";}sum.value+=summary;}if(!vertical)document.editform.wpMinoredit.checked=true;}addOnloadHook(function(){if(document.forms.editform){addPortletLink('p-cactions','javascript:formatCitations(false)','{{}}','ca-formatcitations','Format citations: add whitespace','-','');addPortletLink('p-cactions','javascript:formatCitations(true)','{{}}+','ca-formatcitations-vertical','Formats citations vertically','-','');}});