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.
importScript('User:Dr_pda/prosesize.js'); //[[User:Dr_pda/prosesize.js]]
importScript('User:Dr pda/persondata.js'); //[[User:Dr pda/persondata.js]]
importScript('User:Dr_pda/templatecheck.js'); //[[User:Dr_pda/templatecheck.js]]
importScript('User:Cameltrader/Advisor.js'); //[[User:Cameltrader/Advisor]]
importScript('User:Splarka/dabfinder.js'); //[[User:Splarka/dabfinder.js]]
importScript('User:Plastikspork/date.js'); //[[User:Plastikspork/date.js]]
importScript('User:Tra/sidebartranslate.js'); //[[User:Tra/sidebartranslate.js]]
importScript('User:NuclearWarfare/Mark-blocked script.js');
// importScript("User:EpochFail/NOOB.js");
importScript('User:Ohconfucius/script/EngvarB.js');  //[[User:Ohconfucius/script/EngvarB.js]]
importScript('Wikipedia:AutoEd/core.js'); //Imports the "framework" script needed to make this function
importScript('Wikipedia:AutoEd/extrabreaks.js');
importScript('Wikipedia:AutoEd/headlines.js');
importScript('Wikipedia:AutoEd/htmltowikitext.js');
importScript('Wikipedia:AutoEd/isbn.js');
importScript('Wikipedia:AutoEd/links.js');
importScript('Wikipedia:AutoEd/templates.js');
importScript('Wikipedia:AutoEd/unicodecontrolchars.js');
importScript('Wikipedia:AutoEd/whitespace.js');
importScript('Wikipedia:AutoEd/wikilinks.js');
importScript('User:GregU/dashes.js'); //[[User:GregU/dashes.js]]
autoEdClick = true;
autoEdTag = "Cleaned up using [[WP:AutoEd|AutoEd]], [[User:GregU/dashes.js]]";
autoEdLinkHover = "Run AutoEd";
autoEdLinkName = "auto ed";
autoEdLinkLocation = "p-cactions";
function autoEdFunctions() { //Activates individual modules when "auto ed" tab is clicked
    var txt = document.editform.wpTextbox1;
    txt.value = autoEdExtraBreaks(txt.value);
    txt.value = autoEdHeadlines(txt.value);
    txt.value = autoEdHTMLtoWikitext(txt.value);
    txt.value = autoEdISBN(txt.value);
    txt.value = autoEdLinks(txt.value);
    txt.value = autoEdTemplates(txt.value);
    txt.value = autoEdUnicodeControlChars(txt.value);
    txt.value = autoEdWhitespace(txt.value);
    txt.value = autoEdWikilinks(txt.value);
    var str = txt.value.
                  replace(/—/g, '—').
                  replace(/–/g, '–').     // simplify core regexes
                  replace(/−/g, '−');
    txt.value = autoEdDashes( str );
}