User:Davey2010/vector.js

This is an old revision of this page, as edited by Davey2010 (talk | contribs) at 17:37, 7 June 2023 (Trying this..... suspecting this wont work either). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
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('Wikipedia:AutoEd/core.js');
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/TablesToWikitext.js');
importScript('Wikipedia:AutoEd/Templates.js')
;importScript('Wikipedia:AutoEd/UnicodeControlChars.js');
importScript('Wikipedia:AutoEd/Unicodify.js');
importScript('Wikipedia:AutoEd/Wikilinks.js');
autoEdTag = "Cleaned up using [[Wikipedia:AutoEd|AutoEd]]";

importScript('User:Salix alba/Citoid.js'); // Linkback: [[User:Salix alba/Citoid.js]]


autoEdTag = "Cleaned up using [[WP:AutoEd|AutoEd]] – article listed in [[Wikipedia:WikiProject Check Wikipedia|Check Wikipedia]] report";
autoEdLinkName = 'AutoEd';

function autoEdFunctions()
{
    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 = autoEdTablestoWikitext(txt.value);
    txt.value = autoEdTemplates(txt.value);
    txt.value = autoEdUnicodeControlChars(txt.value);
    txt.value = autoEdUnicodeHex(txt.value);
    txt.value = autoEdWikilinks(txt.value);
    txt.value = autoEdWhitespace(txt.value);
    txt.value = autoEdCustombrCorrector(txt.value);
    txt.value = autoEdCustomEllipsisCorrector(txt.value);
    txt.value = autoEdDashes(txt.value);
}