Community Central
Community Central
(cleanup unused categories)
m (→‎Further help and feedback: Mass editing of links)
Tag: Help
(46 intermediate revisions by 29 users not shown)
Line 1: Line 1:
  +
{{enabled by default}}
 
{{Tocright}}
 
{{Tocright}}
A "parser function" is a special piece of code in [[Help:MediaWiki|MediaWiki]] which extends the [[Help:Template|template]] functionality to perform logical operations. When rendered, parser functions use the parameters included in the definition to print out a specific result.
+
A '''parser function''' is a form of basic coding that happens within the [[Help:MediaWiki|MediaWiki]] language, [[Help:Wikitext|wikitext]]. It allows you to make [[Help:Templates|a template]] more robust and adaptable. Written well enough, a parser function definition produces different results in different situations.
   
  +
For instance, instead of simply repeating the same statement on every page where the template <nowiki>{{tlx|My Great Template}}</nowiki> is used, you can use a parser function to print one result if the page is in [[:Category:Files]], and a completely different one if it's in [[:Category:Opinions]].
Parser functions are written out the same way templates are, surrounded by curly brackets. They are most easily identified by either having a colon in the function name or have a pound sign (#) in the function name (or both, as is in the case of the <code><nowiki>{{#if:}}</nowiki></code> function).
 
   
A list of all parser functions for use on a wiki is visible at [[:Special:Version]].
+
The ways in which you can use parser functions are far too varied for us to share here. But hopefully we can help you start exploring them.
   
  +
== Basic usage ==
==Step-By-Step Use==
 
  +
To ''parse'' something is merely to examine a statement for its logical components and then take action upon it. For instance:
<!-- Note, this section uses the examples from http://www.mediawiki.org/wiki/Help:Extension:ParserFunctions#.23ifexpr. Credit goes to the original authors of that page. -->
 
#Identify the parser function that is appropriate for the task you are trying to do. There are a wide variety of parser functions, so be sure to do your research.<br />Below this step-by-step is extra information and links to help you direct you to full-fledged documentation of each parser function.
 
#Identify the proper syntax for the parser function you wish to use.<br />In this step-by-step guide, we will be using the [[mediawikiwiki:Help:Extension:ParserFunctions#.23ifexpr|<code><nowiki>{{#ifexpr:}}</nowiki></code>]] (if expression) parser function, which is enabled on each Wikia wiki by default. It's syntax is:<br /><tt><nowiki>{{#ifexpr:</nowiki> ''expression'' <nowiki>|</nowiki> ''value if true'' <nowiki>|</nowiki> ''value if false'' <nowiki>}}</nowiki></tt>
 
#Fill in the syntax.<br /><tt><nowiki>{{#ifexpr: 1 > 0 | yes | no }}</nowiki></tt><br />In the example above, we filled in the mathematical expression (1 > 0), set the function to say "yes" if 1 > 0 is mathematically correct and say "no" if 1 > 0 is not mathematically incorrect.
 
#Save the page and verify that the function seems to be returning the expected value. In our example, "yes" should be returned because 1 is indeed greater than 0. <br /><tt><nowiki>{{#ifexpr: 1 > 0 | yes | no }}</nowiki></tt> → '''{{#ifexpr: 1 > 0 | yes | no }}'''.<br />Note what would have happened if we had tweaked the expression but kept the returned values the same. The equation proves false because 0 is not greater than 1 and "no" is returned.<br /><tt><nowiki>{{#ifexpr: 1 < 0 | yes | no }}</nowiki></tt> → '''{{#ifexpr: 1 < 0 | yes | no }}'''.
 
   
  +
:'''If''' this article's name is "Supergirl 23", '''then''' make the "next issue" field in the infobox be "Supergirl 24".
While the above example might seem silly, because one should always know 1 > 0, the power of the parser function is revealed when it is passed a parameter. Let's say you are designing an infobox for a wiki about a TV show. You want to include a character's age and determine if they are an adult or not.
 
   
  +
That's a parser function.
If within the infobox you have <code><nowiki>{{#ifexpr: {{{Age}}} >= 18 | This character is an adult. | This character is not an adult. }}</nowiki></code>, the code would say "This character is an adult" if the given age of the character is at or above 18. If the given age was less than 18, the code would instead say "this character is not an adult."
 
   
 
How do you write one out? Parser functions look like templates, surrounded by curly brackets. They are most easily identified by having either a colon or a hash sign (#) in the function name (or both, as is in the case of the <code><nowiki>{{#if:}}</nowiki></code> function).
==Built-in MediaWiki Parser Functions==
 
  +
The MediaWiki software itself includes multiple parser functions at the core. A full list of these are available [[mediawikiwiki:Help:Magic_words#Parser_functions|here on MediaWiki.org]]. This page will illustrate the most useful.
 
  +
Let's say that you wanted to send people to the page called '''Supergirl''', unless you were already on that page. Here's one simple way of doing it:
  +
  +
:<tt><nowiki>{{#if:{{PAGENAME}}|Supergirl| |Go see [[Supergirl]]}}</nowiki></tt>
  +
  +
This means, "If the page I'm on is called 'Supergirl' (exactly), print nothing. Otherwise, print, 'Go see <nowiki>[[Supergirl]]</nowiki>'."
  +
  +
Maybe, though, you are designing an infobox for a wiki about a TV show, and you want to do some simple math to act upon the value of the {{{Age}}} variable.
  +
 
By having <code><nowiki>{{#ifexpr: {{{Age}}} >= 18 | This character is an adult. | This character is not an adult. }}</nowiki></code>, the infobox could print, "This character is an adult," if the given age of the character is at or above 18. If the given age was less than 18, the code would instead say, "This character is not an adult."
  +
 
== Built-in MediaWiki parser functions ==
 
The MediaWiki software itself includes multiple parser functions at the core. A full list of these are available [[mediawikiwiki:Help:Magic words#Parser functions|here on MediaWiki.org]]. This page will illustrate the most useful.
   
 
;<code><nowiki>{{fullurl:}}</nowiki></code>
 
;<code><nowiki>{{fullurl:}}</nowiki></code>
Line 37: Line 46:
 
:<code><nowiki>{{plural:2|is|are}}</nowiki></code> → {{plural:2|is|are}}
 
:<code><nowiki>{{plural:2|is|are}}</nowiki></code> → {{plural:2|is|are}}
   
==ParserFunctions Extension==
+
== ParserFunctions extension ==
 
[[File:Ifelselogic.png|thumb|The ParserFunctions extension relies on simple logic to return useful code.]]
 
[[File:Ifelselogic.png|thumb|The ParserFunctions extension relies on simple logic to return useful code.]]
The [[mediawikiwiki:Extension:ParserFunctions|ParserFunctions]] extension is a popular [[mediawikiwiki:Help:Extensions|MediaWiki extension]] that added a number of useful parser functions on top of the MediaWiki ones listed above. This extension is enabled by default across all of Wikia.
+
The [[mediawikiwiki:Extension:ParserFunctions|ParserFunctions]] extension is a popular [[mediawikiwiki:Help:Extensions|MediaWiki extension]] that adds a number of useful parser functions on top of the MediaWiki ones listed above. This extension is enabled by default across all of Fandom, so you don't need to ask for it.
 
As of July 2012, this extension will include most of the parser functions found in the now deprecated extension [[mediawikiwiki:Extension:StringFunctions|StringFunctions]], most notably <tt><nowiki>{{#explode}}</nowiki></tt>.
 
 
The ParserFunctions extension has functions for mathematical operations, if/else statements, and time functions. To view a complete list of these functions and extremely useful documentation on how to use them, please visit [[mediawikiwiki:Help:Extension:ParserFunctions|the extension's official help page]].
 
   
  +
Parser functions can perform mathematical operations, evaluate if/else statements, and even manipulate time itself! (Well, the expression of time, anyway!)
==Other Extensions==
 
   
 
To view a complete list of these functions and extremely useful documentation on how to use them, please visit [[mediawikiwiki:Help:Extension:ParserFunctions|the extension's official help page]].
Quite a few other extensions that are popular on Wikia add some parser functions. Here are some common ones.
 
  +
=== String functions ===
  +
[[mediawikiwiki:Extension:StringFunctions|String functions]] are now a part of the ParserFunctions extension. But they used to be a part of their own, separate extension. So don't get confused when you read about it. Only the StringFunctions ''extension'' is deprecated. String functions themselves are alive and well!
   
  +
String functions are a series of specialised parser functions that work on text strings. They allow you to do things like:
* [[mediawikiwiki:Extension:Arrays|Arrays]] - adds <tt><nowiki>{{#arraydefine}}, {{#arrayprint}}, {{#arraysearcharray}}</nowiki></tt>.
 
  +
* determine the length of a string
* [[mediawikiwiki:Extension:Semantic MediaWiki|Semantic MediaWiki]] - adds <tt><nowiki>{{#ask}}, {{#set}}, {{#show}}</nowiki></tt>.
 
  +
* figure out which position in the string a particular character occupies
* [[mediawikiwiki:Extension:SemanticForms|Semantic Forms]] - adds <tt><nowiki>{{#formlink}}, {{#forminput}}, {{#arraymap}} </nowiki></tt>
 
  +
* find a whole word in a string
* [[mediawikiwiki:Extension:Simple Calendar|Simple Calendar]] - adds <tt><nowiki>{{#calendar}}</nowiki></tt>
 
  +
On their own, string functions may seem arcane, but they're vital when you're trying to do something like turn '''Ant-Man (Earth-616)''' into just '''Ant-Man'''. They allow you to detect the parenthetical '''(Earth-616)''' and chop it off!
* [[mediawikiwiki:Extension:Variables|Variables]] - adds <tt><nowiki>{{#var}}, {{#vardefine}}, {{#vardefineecho}}</nowiki></tt>.
 
   
 
== Other extensions ==
So if an extension you are interested in has a parser function included, please consult that extensions page on [[mediawikiwiki:MediaWiki|MediaWiki.org]].
 
  +
Some other [[Help:Extensions|extensions]] that are popular on Fandom add their own parser functions. Two of the more common are [[mediawikiwiki:Extension:Arrays|Arrays]] and [[mediawikiwiki:Extension:Variables|Variables]].
   
 
To find out more about these, please consult that extension's page on [[mediawikiwiki:MediaWiki|MediaWiki.org]].
==See Also==
 
  +
=== Which parser functions are available here? ===
  +
Because different wikis can have different parser functions, it may be useful to figure out precisely what's on a particular wiki. Look on the [[:Special:Version]] of your wiki for the full list.
 
== See also ==
 
* [[Help:Magic words|Information about magic words, a related MediaWiki feature]]
 
* [[Help:Magic words|Information about magic words, a related MediaWiki feature]]
* [[Help:Extensions|Information about all extensions on Wikia and what they do]]
+
* [[Help:Extensions|Information about all extensions on Fandom and what they do]]
* [[m:Help:Parser function|General info about parser function on Meta-Wiki]]
+
* [[m:Help:Parser function|General info about parser functions on Meta-Wiki]]
   
  +
== Further help and feedback ==
[[de:Hilfe:Parser-Funktionen]]
 
  +
{{Help and feedback section}}
 
[[de:Hilfe:ParserFunctions]]
  +
[[es:Ayuda:Funciones parser]]
  +
[[fr:Aide:Fonctions parseur]]
  +
[[it:Aiuto:Funzioni parser]]
  +
[[ja:ヘルプ:パーサー関数]]
  +
[[ko:도움말:파서 함수]]
  +
[[pl:Pomoc:Funkcje parsera]]
  +
[[pt:Ajuda:Funções parser]]
  +
[[ru:Справка:Синтаксический анализатор]]
  +
[[tr:Yardım:Ayrıştırıcı işlevler]]
  +
[[uk:Довідка:Синтаксичний аналізатор]]
  +
[[vi:Trợ giúp:Hàm phân tích cú pháp]]
  +
[[zh:Help:解析器函數]]
  +
[[Category:Editing]]
  +
[[Category:Source editing]]
 
[[Category:Help|{{PAGENAME}}]]
 
[[Category:Help|{{PAGENAME}}]]
  +
[[Category:Tools & shortcuts|{{PAGENAME}}]]

Revision as of 07:05, 1 December 2019

This extension is enabled by default on Fandom.

A parser function is a form of basic coding that happens within the MediaWiki language, wikitext. It allows you to make a template more robust and adaptable. Written well enough, a parser function definition produces different results in different situations.

For instance, instead of simply repeating the same statement on every page where the template {{tlx|My Great Template}} is used, you can use a parser function to print one result if the page is in Category:Files, and a completely different one if it's in Category:Opinions.

The ways in which you can use parser functions are far too varied for us to share here. But hopefully we can help you start exploring them.

Basic usage

To parse something is merely to examine a statement for its logical components and then take action upon it. For instance:

If this article's name is "Supergirl 23", then make the "next issue" field in the infobox be "Supergirl 24".

That's a parser function.

How do you write one out? Parser functions look like templates, surrounded by curly brackets. They are most easily identified by having either a colon or a hash sign (#) in the function name (or both, as is in the case of the {{#if:}} function).

Let's say that you wanted to send people to the page called Supergirl, unless you were already on that page. Here's one simple way of doing it:

{{#if:{{PAGENAME}}|Supergirl| |Go see [[Supergirl]]}}

This means, "If the page I'm on is called 'Supergirl' (exactly), print nothing. Otherwise, print, 'Go see [[Supergirl]]'."

Maybe, though, you are designing an infobox for a wiki about a TV show, and you want to do some simple math to act upon the value of the {{{Age}}} variable.

By having {{#ifexpr: {{{Age}}} >= 18 | This character is an adult. | This character is not an adult. }}, the infobox could print, "This character is an adult," if the given age of the character is at or above 18. If the given age was less than 18, the code would instead say, "This character is not an adult."

Built-in MediaWiki parser functions

The MediaWiki software itself includes multiple parser functions at the core. A full list of these are available here on MediaWiki.org. This page will illustrate the most useful.

{{fullurl:}}
Returns the full URL of a given page.
{{fullurl:Help:Contents}}https://community.fandom.com/wiki/Help:Contents
{{#language:}}
Converts a language code to the language name.
{{#language:es}} → español
{{lc:}}
Makes a string lowercase (opposite of {{uc:}}).
{{lc:CASE}} → case
{{ns:}}
Takes a namespace number and tells you what the namespace is.
{{ns:4}} → Community Central
{{plural:}}
If a given expression equals one, returns the singular value given. If a given expression equals two, returns the plural value given.
{{plural:1|is|are}} → is
{{plural:2|is|are}} → are

ParserFunctions extension

Ifelselogic

The ParserFunctions extension relies on simple logic to return useful code.

The ParserFunctions extension is a popular MediaWiki extension that adds a number of useful parser functions on top of the MediaWiki ones listed above. This extension is enabled by default across all of Fandom, so you don't need to ask for it.

Parser functions can perform mathematical operations, evaluate if/else statements, and even manipulate time itself! (Well, the expression of time, anyway!)

To view a complete list of these functions and extremely useful documentation on how to use them, please visit the extension's official help page.

String functions

String functions are now a part of the ParserFunctions extension. But they used to be a part of their own, separate extension. So don't get confused when you read about it. Only the StringFunctions extension is deprecated. String functions themselves are alive and well!

String functions are a series of specialised parser functions that work on text strings. They allow you to do things like:

  • determine the length of a string
  • figure out which position in the string a particular character occupies
  • find a whole word in a string

On their own, string functions may seem arcane, but they're vital when you're trying to do something like turn Ant-Man (Earth-616) into just Ant-Man. They allow you to detect the parenthetical (Earth-616) and chop it off!

Other extensions

Some other extensions that are popular on Fandom add their own parser functions. Two of the more common are Arrays and Variables.

To find out more about these, please consult that extension's page on MediaWiki.org.

Which parser functions are available here?

Because different wikis can have different parser functions, it may be useful to figure out precisely what's on a particular wiki. Look on the Special:Version of your wiki for the full list.

See also

Further help and feedback