×
Create a new article
Write your page title here:
We currently have 3,033 articles on YumeWiki. Type your article name above or click on one of the titles below and start writing!



YumeWiki
3,033Articles

User:SmiVan: Difference between revisions

 
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[File:Zenmaigahara Charset 01box.png|frameless|center|link=Yume_2kki:Hakoko]]
* ''[//{{SERVERNAME}}/index.php?title={{FULLPAGENAMEE}}&useskin=vector Viewing with the Vector theme is recommended for this page]''
 
 
[[File:Industrial_tunnels_exterior.png|640px|frameless|center|link=Braingirl:Industrial Tunnels]]
 
== Search & replace regex for fixing links ==
 
Here are the regexes I use to repair links in various migrated articles on [[Yume 2kki:Yume 2kki Wiki|Yume2kki Wiki]].
 
I strongly recommend looking at each detected case individually before applying!
 
Designed for use with [https://github.com/VSCodium/vscodium Codium] or a similarly capable editor.
 
=== Without description ===
<pre>
\[\[([^#][^[|:]*)\]\]
</pre>
<pre>
[[Yume 2kki:$1|$1]]
</pre>
 
=== With description ===
<pre>
\[\[([^#][^[:]*)\|([^[]*)\]\]
</pre>
<pre>
[[Yume 2kki:$1|$2]]
</pre>
 
=== Fix spaces in ids ===
''Note: I'm not sure if this is strictly necessary to do, but I've had some problems with spaces in ids.''
<pre>
\[\[([^#|]*)#([^ |]*) ([^|]*)\|
</pre>
<pre>
[[$1#$2_$3|
</pre>
 
=== Full hyperlinks (Yume 2kki Wiki) ===
<pre>
\[https?://yume2kki.(wikia|fandom).com/wiki/([^ ]*) ([^\]]*)\]
</pre>
<pre>
[[Yume 2kki:$2|$3]]
</pre>
 
=== Full hyperlinks (Yume Nikki Wiki) ===
<pre>
\[https?://yumenikki.(wikia|fandom).com/wiki/([^ ]*) ([^\]]*)\]
</pre>
<pre>
[[Yume Nikki:$2|$3]]
</pre>
 
[[File:Zenmaigahara Charset 01box.png|104px|frameless|center|link=Yume_2kki:Hakoko]]

Latest revision as of 00:13, 18 November 2022


Industrial tunnels exterior.png

Search & replace regex for fixing links

Here are the regexes I use to repair links in various migrated articles on Yume2kki Wiki.

I strongly recommend looking at each detected case individually before applying!

Designed for use with Codium or a similarly capable editor.

Without description

\[\[([^#][^[|:]*)\]\]
[[Yume 2kki:$1|$1]]

With description

\[\[([^#][^[:]*)\|([^[]*)\]\]
[[Yume 2kki:$1|$2]]

Fix spaces in ids

Note: I'm not sure if this is strictly necessary to do, but I've had some problems with spaces in ids.

\[\[([^#|]*)#([^ |]*) ([^|]*)\|
[[$1#$2_$3|

Full hyperlinks (Yume 2kki Wiki)

\[https?://yume2kki.(wikia|fandom).com/wiki/([^ ]*) ([^\]]*)\]
[[Yume 2kki:$2|$3]]

Full hyperlinks (Yume Nikki Wiki)

\[https?://yumenikki.(wikia|fandom).com/wiki/([^ ]*) ([^\]]*)\]
[[Yume Nikki:$2|$3]]
Zenmaigahara Charset 01box.png