Kirby Wiki
mNo edit summary
(→‎Reference: category reorganization)
 
(23 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
<source lang="xml">
 
<source lang="xml">
<Typo word="Kirby & the Amazing Mirror" find="[Kk]irby[:|'s|s]? [and|&]? [Tt]he [Aa]mazing [Mm]irror" replace="Kirby & the Amazing Mirror" />
+
<Typo word="" find="" replace="" />
 
</source>
 
</source>
 
<noinclude>
 
<noinclude>
Line 7: Line 7:
   
 
*Kirby / Kirby: / Kirby's / Kirbys / kirby / kirby: / kirby's / kirbys
 
*Kirby / Kirby: / Kirby's / Kirbys / kirby / kirby: / kirby's / kirbys
<pre>[K|k]irby:?('s)?s?</pre>
+
<pre>[Kk]irby:?('s)?s?</pre>
   
 
*Dream Land / DreamLand / Dreamland
 
*Dream Land / DreamLand / Dreamland
<pre>[D|d]ream\s?[L|l]and</pre>
+
<pre>[Dd]ream\s?[Ll]and</pre>
   
 
*(italicize matching title, regardless of whether linked or not)
 
*(italicize matching title, regardless of whether linked or not)
 
<pre>(?:''|)(\[\[)?\b regex here \b(\]\])?(?:''|)</pre>
 
<pre>(?:''|)(\[\[)?\b regex here \b(\]\])?(?:''|)</pre>
  +
  +
Basic construct (copy and paste):
   
 
==Reference==
 
==Reference==
Line 20: Line 22:
 
*[[wikipedia:Wikipedia:AutoWikiBrowser/Typos/Guide]]
 
*[[wikipedia:Wikipedia:AutoWikiBrowser/Typos/Guide]]
 
*[[wikipedia:Wikipedia:AutoWikiBrowser/Regular_expression]]
 
*[[wikipedia:Wikipedia:AutoWikiBrowser/Regular_expression]]
  +
*https://developer.mozilla.org/en/Core_JavaScript_1.5_Guide/Regular_Expressions
[[Category:Kirby Wiki]]</noinclude>
+
[[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