User:Fractalconfusion: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 5: | Line 5: | ||
===Regexes=== | ===Regexes=== | ||
Turning dialog into bold and new paragraph: | ====Turning dialog into bold and new paragraph:==== | ||
<code>(^[a-z]+:)</code> | <code>(^[a-z]+:)</code> | ||
<code><p><B>\1</B></code> | <code><p><B>\1</B></code> | ||
Preventing indentation on double colons: | ====Preventing indentation on double colons:==== | ||
<code>(^[:]{2})</code> | <code>(^[:]{2})</code> | ||
<code>\1</code> | <code>\1</code> |
Revision as of 03:50, 11 October 2009
About Me
Fractalconfusion is the creator of Kevin Breeman. He resides in Canada has a variety of interests. He prefers to keep a level of anonymity about himself. His characters are the best things to speak for him :)
Wiki Tips and Tricks
Regexes
Turning dialog into bold and new paragraph:
(^[a-z]+:)
\1
Preventing indentation on double colons:
(^[:]{2})
\1