Skip to content

Commit 073898f

Browse files
committed
Clean up bits markdown does not like.
1 parent 259a788 commit 073898f

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,22 @@ Sometimes it is desired that wiki markup be parsed (or remain unparsed) under ce
33

44
* \l ('''l'''ess than) is translated to <
55
* \g ('''g'''reater than) is translated to >
6-
----
76
* \o ('''o'''pen double curly braces) is translated to {<nowiki/>{
87
* \c ('''c'''lose double curly braces) is translated to }<nowiki/>}
98
* \p ('''p'''ipe) is translated to |
10-
----
119
* \\ is translated to '''\'''
12-
----
1310
* \n is translated to a '''n'''ewline
1411

1512
The first two translations make it possible to embed a ''wiki tag extension'' into a parameter of a parser function call. The next three translations make it possible to ''call a template, invoke a magic word, or call a parser function'' which prevents them from executing until conditions dictate that the results of such a call will be displayed. The next one is for times where you want to display text like "\p" without having it converted into a pipe, which is done by writing it as "\\p". The last one is for tags that use newline characters as delimiters for parameters. It allows a newline character to be passed as part of the parameter instead of indicating the beginning/ending of a parameter.
1613

1714
##Installation
18-
{{ {{TNTN|ExtensionInstall}}|registration=yes |download-link=[https://github.com/CurseStaff/CharacterEscapes/archive/master.zip Download]}}
15+
Download and place the file(s) in a directory called CharacterEscapes in your extensions/ folder.
16+
Add the following code at the bottom of your LocalSettings.php:
17+
18+
wfLoadExtension( 'CharacterEscapes' );
19+
20+
Yes Done - Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
21+
1922

2023
##Example
2124
```

0 commit comments

Comments
 (0)