Це підсторінкадокументаціїшаблону {{Yesno}}. Вона містить інформацію про використання, категорії та інший вміст, що не є частиною оригінальної сторінки шаблону.
Цей шаблон використовується на 68 000+ сторінках і його зміни будуть дуже помітними. Будь ласка, перевіряйте будь-які зміни на підсторінках /пісочниці та /тестів цього шаблону, або у вашому особистому просторі, та зважайте на обговорення змін на сторінці обговорення перед їхнім впровадженням.
Шаблон призначений для уніфікованої обробки параметрів, які можуть набувати значення «істина» або «хибність». Він не призначений для використання у статтях безпосередньо.
Usage
The template distinguishes five different types of input, supplied on the first unnamed parameter:
Yes: Case-insensitive forms of Yes, y, true, and 1; e.g. {{Yesno|yEs}}
No: Case-insensitive forms of No, n, false, and 0; 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 ¬ or entirely missing; i.e. {{Yesno|¬}} or {{Yesno}}
Anything else: e.g. {{Yesno|Purple monkey dish washer}}
By default, the template returns "yes" in the first and last case but returns blank in the other cases.
Two short-hand templates for the most common uses that override the default behavior:
{{yesno-yes}} or {{YesNo-Yes}} – always returns "yes" (or the specified replacement result in |yes=) unless an explicit negative value is given; i.e., it evaluates to "yes" even when the value is empty or missing.
{{yesno-no}} or {{YesNo-No}} – always returns "no" (or the specified replacement result in |no=) unless an explicit positive value is given; i.e., it evaluates to "no" even when the value is present, as long as it does not contain anything that resolves to "yes".
Customizing the output
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:
Anything else: Template returns the contents of |def=, or of |yes= in absence of the former; otherwise, returns "yes".
{{yesno|purple monkey dish washer|def=cup of tea}} results in "cup of tea"
{{yesno|purple monkey dish washer|yes=bacon}} results in "bacon"
{{yesno|purple monkey dish washer|def=cup of tea|yes=bacon}} results in "cup of tea"
For the named parameters, use of a blank value is not the same as omitting the parameter. Blank named parameters 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
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
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.