"विकिपीडिया:AutoEd" च्या विविध आवृत्यांमधील फरक

Content deleted Content added
→‎Installation guide: छोटे बदल
छो Bot: Replace deprecated <source> tag and "enclose" parameter [https://lists.wikimedia.org/pipermail/wikitech-ambassadors/2020-April/002284.html]
खूणपताका: अमराठी मजकूर? कृ. मराठी वापरा !!
 
ओळ २५:
AutoEd is also compatible with [[WP:wikEd|wikEd]]. For it to function properly, however, you need to add the following to [[विशेष:Mypage/monobook.js|your]] [[विकिपीडिया:Monobook|monobook.js]] page. This disables the diff page from opening automatically, but at this time is required in order for AutoEd's changes to be made correctly in wikEd.
 
<sourcesyntaxhighlight lang="javascript">
autoEdClick = false;
</syntaxhighlight>
</source>
 
== Presets ==
ओळ ३७:
The "basic" preset serves to clean up various problems with wikitext, headlines, templates, and ISBNs.
 
<sourcesyntaxhighlight lang="javascript">
importScript('Wikipedia:AutoEd/basic.js');
</syntaxhighlight>
</source>
 
Once installed, the "auto ed" tab should appear on all non-talk pages. Clicking it will run the following fixes:
ओळ ६१:
This preset is designed to function as a replacement for the [[WP:FORMATTER|Formatter script]], and it includes most all of the functions of that script, plus a few more.
 
<sourcesyntaxhighlight lang="javascript">
importScript('Wikipedia:AutoEd/formatter.js');
</syntaxhighlight>
</source>
 
This script features all of the functions of the basic script except for template and ISBN cleanup, along with the following:
ओळ ७५:
This preset is designed to fix as many of the errors listed at [[विकिपीडिया:WikiProject Check Wikipedia]] as is possible for a semi-automated script.
 
<sourcesyntaxhighlight lang="javascript">
importScript('Wikipedia:AutoEd/wikichecker.js');
</syntaxhighlight>
</source>
 
This script features all of the functions of the basic script along with the following:
ओळ ९०:
This preset does just what it sounds like it should: It contains almost all of the modules created for AutoEd. The only current exception is [[विकिपीडिया:AutoEd/fullwidth.js|Fullwidth]], which has a higher-than-normal number of false positives. You can still use this module by following the instructions at [[विकिपीडिया:AutoEd/Customization]].
 
<sourcesyntaxhighlight lang="javascript">
importScript('Wikipedia:AutoEd/complete.js');
</syntaxhighlight>
</source>
 
The code for this preset can be viewed at [[विकिपीडिया:AutoEd/complete.js]].