Update Tavros quirk

This commit is contained in:
Kiooeht 2012-01-02 17:30:12 -08:00
parent 79b147d7bf
commit 3c1e50ed5a

View file

@ -24,13 +24,25 @@ REPLACED WITH: " ribbit ", " ", " ", " ", " ", " ", etc....
Tavros
------
<pre>
REGEXP: "\b(\w)(\w*)"
REPLACED WITH: "lower(\1)upper(\2)"
REGEXP: "([a-z])"
REPLACED WITH: "upper(\1)"
</pre>
<pre>
REGEXP: "\.?"
REGEXP: "(^[A-Za-z])"
WITH: "lower(\1)"
</pre>
<pre>
REGEXP: "([iI])\b"
WITH: "lower(\1)"
</pre>
<pre>
REGEXP: "([\.\?!]|$)"
WITH: ","
</pre>
<pre>
REGEXP: "(,\s?\w)"
WITH: "lower(\1)"
</pre>
Sollux
------
@ -167,4 +179,4 @@ REPLACE WITH: ")("
<pre>
REPLACE: "E"
WITH: "-E"
</pre>
</pre>