Skip to content

Latest commit

 

History

History
79 lines (60 loc) · 3.48 KB

README.wiki

File metadata and controls

79 lines (60 loc) · 3.48 KB

Sometimes it is desired that wiki markup be parsed (or remain unparsed) under certain conditions. Since certain characters or character sequences are processed before reaching the parser function, we have to use escapes to prevent markup being parsed prematurely. MediaWiki does not have built-in mechanism for this, so we have to make our own:

  • \l (less than) is translated to <
  • \g (greater than) is translated to >

  • \o (open double curly braces) is translated to {{
  • \c (close double curly braces) is translated to }}
  • \p (pipe) is translated to |

  • \\ is translated to \

  • \n is translated to a newline
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.

Table of Contents

Installation

Example

{{ #vardefine: i | 0 }}{{
  #while: expr
  | <esc>{{ #var: i }} < 5</esc>
  |* <esc>{{ #var: i }}{{ #vardefine: i | {{ #expr: {{ #var: i }} + 1 }} }}</esc>
}}

produces the following:

  • 0
  • 1
  • 2
  • 3
  • 4
Note that the example uses the variables and control structure functions extensions.

Limitations

MediaWiki does not support nested tags of the same type (see bug #1310). Given the following:

 <esc>{{ #ifexpr:... | <esc>{{ templateB | param }}</esc> | param }}</esc>

The text:

 {{ #ifexpr:... | <esc>{{ templateB | param }}

is passed to the underlying function instead of:

 {{ #ifexpr:... | <esc>{{ templateB | param }}</esc> | param }}

A workaround is to explicitly write out the nested escape sequences:

 <esc>{{ #ifexpr:... | \o templateB \p param \c | param }}</esc>

Another solution is to apply the modification given in the discussion of bug #1310.

Writing Extensions that Use Character Escapes

If you would like your extension to make use of character escapes, the class CharacterEscapes contains two static functions for replacing characters with escapes (CharacterEscapesHooks::charEsc()) and replacing escapes with characters (CharacterEscapesHooks::charUnesc()).

See also

  • Extension:Control Structure Functions
  • Extension:VariablesExtension