It breaks legitimate constructions like e.g.
[[Carbon|C]][[Hydrogen|H]]₄ (CH₄)benzo[''e''][1,4]diazepine (benzo[e][1,4]diazepine)[Co(NH₃)₆][Cr(CN)₆] (both-ion coordination complex salts)by adding a space between ] and [.
(See e.g. my revert 1340002663, btw with edit link in summary.)
Rude str = str.replace(/\]\[/g, "] [") in links.js is to blame.
--Mykhal (talk) 16:15, 23 February 2026 (UTC)
After an afternoon editing stoppage, my auto ed tab disappeared. Any suggestions? Regards Keith-264 (talk) 21:09, 5 March 2026 (UTC)
On the article Web design, I recently fixed up some poorly place <nowiki> tags and discovered that this script isn't respecting those tags. As of writing, there's an instance of the following code snippet which this script attempts to transform into a wikitext table: <code><nowiki><table></nowiki></code>. Newtbytes (talk) 01:17, 20 April 2026 (UTC)
<table> case mentioned only happens on two articles and doesn't seem to appear anywhere else outside of discussion pages. I cannot think of a way to fix this case just in htmltowikitext without using way too much performance resources since this change would not produce a benefit anywhere it is run other than those two articles (AutoEd usually is not run on discussion pages). Aaron Liu (talk) 22:53, 20 April 2026 (UTC)
After a lot of experimentation to try to get the thing to work, it appears to me that it doesn't work at all when User:Ohconfucius/dashes.js is installed. No mention of this on the page though. Am I wrong? Nurg (talk) 23:06, 24 May 2026 (UTC)
function autoEd (in this case, autoEdDashes).autoEdFunctions(), right before saving (so usually the second-to-last line), transform the text with the function name you found (in this case, add above line 39 the line txt = autoEdDashes(txt);).autoEdFunctions() in File 1.var AutoEd_baseurl = 'https://en.wikipedia.org/w/index.php?action=raw&ctype=text/javascript&title=Wikipedia:AutoEd/';
//Import individual modules for use
mw.loader.load(AutoEd_baseurl + 'unicodify.js'); // autoEdUnicodify() converts HTML entities to WikiText
mw.loader.load(AutoEd_baseurl + 'isbn.js'); // autoEdISBN() fixes ISBN syntax so that WikiMagic can work
mw.loader.load(AutoEd_baseurl + 'whitespace.js'); // autoEdWhitespace() cleans up whitespace
mw.loader.load(AutoEd_baseurl + 'wikilinks.js'); // autoEdWikilinks() simplifies and shortens wikilinks where appropriate
mw.loader.load(AutoEd_baseurl + 'htmltowikitext.js'); // autoEdHTMLtoWikitext() converts HTML to wikitext
mw.loader.load(AutoEd_baseurl + 'headlines.js'); // autoEdHeadlines() fixes common headline errors and renames some headers
mw.loader.load(AutoEd_baseurl + 'unicodecontrolchars.js'); // autoEdUnicodeControlChars() converts HTML to wikitext
mw.loader.load(AutoEd_baseurl + 'unicodehex.js'); // autoEdUnicodeHex() converts hex encoded characters to unicode
mw.loader.load(AutoEd_baseurl + 'templates.js'); // autoEdTemplates() cleans up templates
mw.loader.load(AutoEd_baseurl + 'tablestowikitext.js'); // autoEdTablestoWikitext() replaces HTML tables with wikitables
mw.loader.load(AutoEd_baseurl + 'extrabreaks.js'); // autoEdExtraBreaks() removes extra BR tags
mw.loader.load(AutoEd_baseurl + 'links.js'); // autoEdLinks() cleans up common link errors
mw.loader.load(AutoEd_baseurl + 'fullwidth.js');
mw.loader.load(AutoEd_baseurl + 'curlyfixer.js');
importScript('User:Ohconfucius/dashes.js'); // Backlink: [[User:Ohconfucius/dashes.js]]
importScript('User:Aaron Liu/AutowIll.js'); // Backlink: [[User:Aaron Liu/AutowIll.js]]
//importScript('User:Aaron Liu/AliasPam.js'); // Backlink: [[User:Aaron Liu/AliasPam.js]]
//importScript('User:Aaron Liu/NoPiper.js'); // Backlink: [[User:Aaron Liu/NoPiper.js]]
function autoEdFunctions() { //Activates individual modules when "auto ed" tab is clicked
var $textbox = $( '#wpTextbox1' );
var txt = $textbox.textSelection('getContents');
txt = autoEdUnicodify(txt);
txt = autoEdISBN(txt);
txt = autoEdWhitespace(txt);
txt = autoEdUnicodeHex(txt);
txt = autoEdWikilinks(txt);
txt = autoEdHTMLtoWikitext(txt);
txt = autoEdHeadlines(txt);
txt = autoEdUnicodeControlChars(txt);
txt = autoEdTemplates(txt);
txt = autoEdTablestoWikitext(txt);
txt = autoEdExtraBreaks(txt);
txt = autoEdLinks(txt);
txt = autoEdDashes(txt);
txt = autoEdFullwidth(txt);
txt = autoEdCurlyFixer(txt);
txt = autoEdwIll(txt);
if(txt===$textbox.textSelection('getContents')){ autoEdTag = ""; mw.notify("No changes required!"); }
else $textbox.textSelection('setContents', txt);
}
mw.loader.load(AutoEd_baseurl + 'core.js'); //Imports the "framework" script needed to make this function before you load any script that checks whether AutoEd is loaded any replaces your autoEdFunctions with its own. So you would move Line 57 anywhere before Line 33. In solidarity, Aaron Liu (talk) 02:47, 25 May 2026 (UTC)When using auto ed I don't see any changes. Also, the documentation is vague about the purpose of AutoEd. What is it for? Thanks! Robloxguest3 (talk)
20:41, 26 May 2026 (UTC)
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.