Template:Yesno/doc
This template is used on approximately 76,000 pages and changes may be widely noticed. Test changes in the template's /sandbox or /testcases subpages, or in your own user subpage. Consider discussing changes on the talk page before implementing them. |
This is a documentation subpage for Template:Yesno. It contains usage information, categories and other content that is not part of the original template page. |
{{yesno}} (or {{YesNo|nolink=on|code=on}}) evaluates any input and produces a normalized yes or nil output, based on the content of the input and several configurable options. It is not used in article prose, but in coding complex templates.
Usage
[edit]The template distinguishes five different types of input, supplied on the first unnamed parameter:
- Yes: Case-insensitive forms of
Yes
,y
,true
,on
, and1
; e.g. {{yesno|yEs}} → yes - No: Case-insensitive forms of
No
,n
,false
,off
, and0
; e.g. {{yesno|nO}} → - Nothing: When the input is defined but either contains no value or consists of whitespace character only; i.e.
{{Yesno|}}
or {{yesno| }} → - Negation: When the input is either
¬
(alt code 170) or entirely missing; i.e. {{yesno|¬}} or {{yesno}} → - Anything else: e.g. {{yesno|Purple monkey dish washer}} → yes
By default, the template returns "yes" in the first and last case but returns nil (blank, empty string) in the other cases.
Customizing the output
[edit]Template's default output can be customized with five named parameters, respectively: |yes=
, |no=
, |blank=
, |¬=
and |def=
. If these parameters are specified, the template response is as follows:
- Yes: Template returns the contents of
|yes=
, otherwise returns "yes". For example: - No: Template returns the contents of
|no=
, otherwise returns blank. For example: - Nothing: Template returns the contents of
|blank=
, or of|no=
in absence of the former; otherwise, returns blank. - Negation: Template returns the contents of
|¬=
, otherwise returns blank. For example:- {{yesno|¬|¬=sausage}} results in "sausage"
- Anything else: Template returns the contents of
|def=
, or of|yes=
in absence of the former; otherwise, returns "yes".
For the named parameters, use of a blank value is not the same as omitting the parameter. A blank named parameter tells the template that the customized return value is blank. For example:
- {{yesno|purple monkey dish washer}} results in "yes"
- {{yesno|purple monkey dish washer|def=}} results in "" [blank]
Logical distinctions
[edit]Overview of {{yesno}} logical values and their associated texts | ||||||
---|---|---|---|---|---|---|
Input parameter 1 ( 1= )
|
In code | Logical return value | Default return text |
Return text when set:yes=Pos no=Neg blank=Blank ¬=Undefined def=Def
|
Note | |
yes, y, true, 1* | {{yesno|yes}}
|
yes by definition
|
"yes" | "Pos" | * Case-insensitive (Y=y) | |
Some Text | {{yesno|Some Text}}
|
yes by default
|
"yes" | "Def" | "Pos" when def=[omitted]
| |
no, n, false, 0* | {{yesno|no}}
|
no by definition
|
"" [blank] | "Neg" | * Case-insensitive (N=n) | |
[blank] | {{yesno|}}
|
blank
|
"" [blank] | "Blank" | "Neg" when blank=[omitted]
| |
1=[blank] | {{yesno|1=}}
|
blank
|
"" [blank] | "Blank" | "Neg" when blank=[omitted]
| |
¬ | {{yesno|¬}}
|
¬
|
"" [blank] | "Undefined" | ||
[omitted] | {{yesno}}
|
¬
|
"" [blank] | "Undefined" |
Full parameter list
[edit]Unnamed parameter 1= the input value to be evaluated. The other parameters (all named, all optional), are the return values for their respective logical outcome. When set, each one overrules their default return value.
{{yesno
| Input value
| yes = Output on yes
| no = Output on no
| blank = Output on blank input
| ¬ = Output on ¬
| def = Definite output
}}
See also
[edit]TemplateData
[edit]Yesno
This template normalises an input to be a yes or nil output.
Parameter | Description | Type | Status | |
---|---|---|---|---|
Input value | 1 | The value to be evaluated | String | suggested |
Output on yes | yes | Specifies the output of the template when the input value is a case-insensitive forms of 'Yes', 'Y', 'True' or '1' | String | optional |
Output on no | no | Specifies the output of the template when the input value is a case-insensitive forms of 'No', 'N', 'False, or '0' | String | optional |
Output on blank input | blank | Specifies the output of the template when the input value is defined but is either empty or contains nothing but whitespace character(s) | String | optional |
Output on ¬ | ¬ | Specifies the output of the template when the input value is either '¬' (negation) or entirely missing (undefined) | String | optional |
Definite output | def | Specifies the output of the template when the input value is defined but not a form of 'yes', 'no', '1', '0', '¬' or blank | String | optional |