This page is protected against editing.

Template:IsNum

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

0

Template documentationview · edit · history · purge ]
This documentation is transcluded from Template:IsNum/doc.

Outputs "1" (numeric one) if the parameter has a numeric value, or "0" (numeric zero) if not (i.e. text or empty).

Usage

{{IsNum |1= }}

Template parameters

<templatedata>JSON</templatedata> ./. {{TemplateBox}}
TemplateData

TemplateData is a way to store information about template parameters (the description of those and of the whole template) for both humans and machines. It is used by VisualEditor and possibly other tools like Upload Wizard.


Existing template documentation
At Wikimedia Commons, it is recommended to use {{TemplateBox}} with either ‎useTemplateData=1 or ‎useTemplateData=only on the ‎/doc subpage and transcluding it with {{Documentation}} into the template. ‎<nowiki>-tags can be wrapped around the arguments, if required, to avoid templates being expanded.

Newly created template documentation and imports
Another option, especially for imported templates, or for users with JSON experience, is placing raw ‎<templatedata>-tags into the Wikitext of the template, as described in various Wikipediae.

Discussion
There is an ongoing discussion about that matter. Feel invited to comment if you are experienced in either way, your time permits and if you like to share your opinion or to make a suggestion.


Wikipedia's help about TemplateDataCommons-specific information

Outputs "1" (numeric one) if the parameter has a numeric value, or "0" (numeric zero) if not (i.e. text or empty).

Template parameters[Edit template data]

This template prefers inline formatting of parameters.

ParameterDescriptionTypeStatus
value1

Numeric or non-numeric value

Unknownrequired

Additional information

The template is intended to be used in the following namespaces: all namespaces

The template is intended to be used by the following user groups: all users

Localization

This template is not intended to be localized.

Examples

Example for a numeric value

{{IsNum|1=100}} = 1
{{IsNum|1=-2}} = 1
{{IsNum|1=0}} = 1
{{IsNum|1=2e10}} = 1
{{IsNum|1=2.12}} = 1

Example for a non-numeric value

{{IsNum|1=abc}} = 0
{{IsNum|1=2a}} = 0

Example for a missing value

{{IsNum|1=}} = 0