Template:Documentation subpage
This template normalises an input to be a yes/no output.
Usage[edit]
The template has five possible outputs depending on the default parameter (input if you will).
In its simplest usage, these will all be either "yes" or "" (blank = nothing no characters).
{{Yesno|yes}}
→ "yes" (also applies to "Yes", "YeS", etc, "Y", "y" and "1"){{Yesno|no}}
→ "" (also applies to "No", "NO", "nO", "N", "n" and "0"){{Yesno}}
→ ""{{Yesno|¬}}
→ ""{{Yesno|purplemonkeydishwasher}}
→ "yes" (also applies to any other value not given above)
Each of these can be over-ridden.
{{Yesno|yes|yes=bacon}}
→ "bacon" (also applies to "Yes", "YeS", etc, "Y", "y" and "1"){{Yesno|no|no=ham}}
→ "ham" (also applies to "No", "NO", "nO", "N", "n" and "0"){{Yesno|blank=eggs}}
→ "eggs"{{Yesno|¬|¬=sausage|blank=eggs|no=ham}}
→ "sausage"- and
{{Yesno|¬=sausage|blank=eggs|no=ham}}
→ "sausage"
- and
{{Yesno|purplemonkeydishwasher|def=cup-of-tea}}
→ "{{Yesno|purplemonkeydishwasher|def=cup-of-tea}}
" (also applies to any other value not given above)
This may be used (apparently perversely) thus:
This creates a logical inversion.
TemplateData[edit]
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 | required |
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 '¬' 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 |
See also[edit]