Kirby Wiki
mNo edit summary
(→‎Reference: category reorganization)
 
(48 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
<source lang="xml">
 
<source lang="xml">
<Typo word="Kirby Wii" find="(?:''|)(\[\[)?\b[K|k]irby [W|w]ii\b(\]\])?(?:''|)" replace="''$1Kirby's Return to Dream Land$2''" />
+
<Typo word="" find="" replace="" />
  +
</source>
<Typo word="Kirby: Return to Dream Land" find="(?:''|)(\[\[)?\b[K|k]irby([:|'s|s])? [R|r]eturn to [D|d]ream\s?[L|l]and\b(\]\])?(?:''|)" replace="''$1Kirby's Return to Dream Land$3''" />
 
</source><noinclude>
+
<noinclude>
  +
  +
To account for:
  +
  +
*Kirby / Kirby: / Kirby's / Kirbys / kirby / kirby: / kirby's / kirbys
  +
<pre>[Kk]irby:?('s)?s?</pre>
  +
  +
*Dream Land / DreamLand / Dreamland
  +
<pre>[Dd]ream\s?[Ll]and</pre>
  +
  +
*(italicize matching title, regardless of whether linked or not)
  +
<pre>(?:''|)(\[\[)?\b regex here \b(\]\])?(?:''|)</pre>
  +
  +
Basic construct (copy and paste):
   
 
==Reference==
 
==Reference==
  +
 
*[[wikipedia:Regular expressions]]
 
*[[wikipedia:Regular expressions]]
 
*[[wikipedia:Wikipedia:AutoWikiBrowser/Typos/Guide]]
 
*[[wikipedia:Wikipedia:AutoWikiBrowser/Typos/Guide]]
  +
*[[wikipedia:Wikipedia:AutoWikiBrowser/Regular_expression]]
[[Category:Kirby Wiki]]</noinclude>
 
  +
*https://developer.mozilla.org/en/Core_JavaScript_1.5_Guide/Regular_Expressions
 
[[Category:Community]]</noinclude>

Latest revision as of 01:24, 31 August 2020

<Typo word="" find="" replace="" />


To account for:

  • Kirby / Kirby: / Kirby's / Kirbys / kirby / kirby: / kirby's / kirbys
[Kk]irby:?('s)?s?
  • Dream Land / DreamLand / Dreamland
[Dd]ream\s?[Ll]and
  • (italicize matching title, regardless of whether linked or not)
(?:''|)(\[\[)?\b    regex here     \b(\]\])?(?:''|)

Basic construct (copy and paste):

Reference