Template:Ifnumber: Difference between revisions

From 118Wiki
Jump to navigation Jump to search
m (Formatting)
m (Formatting fix in documentation)
Line 3: Line 3:
Examples:
Examples:
* '''<nowiki>{{ifnumber|3|yes|no}}</nowiki>''' -> {{ifnumber|3|yes|no}}
* '''<nowiki>{{ifnumber|3|yes|no}}</nowiki>''' -> {{ifnumber|3|yes|no}}
* '''<nowiki>{{ifnumber|This is not a number|yes|no}}'''</nowiki> -> {{ifnumber|This is not a number|yes|no}}
* '''<nowiki>{{ifnumber|This is not a number|yes|no}}</nowiki>''' -> {{ifnumber|This is not a number|yes|no}}


The other parameters are optional:
The other parameters are optional:

Revision as of 16:55, 4 July 2021

Checks if the first parameter results in a numeric value, for use in other templates. Copied from the French Wikisource wiki.

Examples:

  • {{ifnumber|3|yes|no}} -> yes
  • {{ifnumber|This is not a number|yes|no}} -> no

The other parameters are optional:

  • {{ifnumber|3||no}} ->
  • {{ifnumber|3|yes}} -> yes
  • {{ifnumber|This is not a number||no}} -> no
  • {{ifnumber|This is not a number|yes}} ->