• 首页
  • 随机
  • 登录
  • 设置
  • 关于悠日計画 維基百科 ~ Yuuni Wiki
  • 免责声明
悠日計画 維基百科 ~ Yuuni Wiki

模板:Yesno

  • 语言
  • 监视
  • 查看源代码
文件:Test Template Info-Icon - Version (2).svg Template documentation[view] [edit] [history] [purge]
WarningThis template is used on approximately 13,100,000 pages, or roughly 839744% of all pages.
To avoid major disruption and server load, any changes should be tested in the template's /sandbox or /testcases subpages, or in your own user subpage. The tested changes can be added to this page in a single edit. Consider discussing changes on the talk page before implementing them.

{{Yesno}} (or {{YesNo}}) 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.

目录

  • 1 Usage
    • 1.1 Customizing the output
    • 1.2 Logical distinctions
  • 2 Full parameter list
  • 3 See also
  • 4 TemplateData

Usage

The template distinguishes five different types of input, supplied on the first unnamed parameter:

  1. Yes: Case-insensitive forms of Yes, y, true, on, and 1; e.g. {{Yesno|yEs}}
  2. No: Case-insensitive forms of No, n, false, off, and 0; e.g. {{Yesno|nO}}
  3. Nothing: When the input is defined but either contains no value or consists of whitespace character only; i.e. {{Yesno|}} or {{Yesno| }}
  4. Negation: When the input is either ¬ or entirely missing; i.e. {{Yesno|¬}} or {{Yesno}}
  5. Anything else: e.g. {{Yesno|Purple monkey dish washer}}

By default, the template returns "yes" in the first and last case but returns nil (blank, empty string) 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:

  1. Yes: Template returns the contents of |yes=, otherwise returns "yes". For example:
    • {{yesno|y|yes=Yeah}} results in "Yeah"
    • {{yesno|y|yes=bacon}} results in "bacon"
  2. No: Template returns the contents of |no=, otherwise returns blank. For example:
    • {{yesno|n|no=Nay}} results in "Nay"
    • {{yesno|n|no=ham}} results in "ham"
  3. Nothing: Template returns the contents of |blank=, or of |no= in absence of the former; otherwise, returns blank.
    • {{yesno|blank=eggs}} results in "eggs"
    • {{yesno|no=ham}} results in "ham"
    • {{yesno|blank=eggs|no=ham}} results in "eggs"
  4. Negation: Template returns the contents of |¬=, otherwise returns blank. For example:
    • {{yesno|¬|¬=sausage}} results in "sausage"
  5. 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. 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

Overview of {{yesno}} logical values and their associated texts
Input
parameter 1
(<syntaxhighlight lang="text" class="" id="" style="" inline="1">1=</syntaxhighlight>)
In code Logical return value Default
return text
Return text when set:
<syntaxhighlight lang="text" class="" id="" style="" inline="1">yes=Pos</syntaxhighlight>
<syntaxhighlight lang="text" class="" id="" style="" inline="1">no=Neg</syntaxhighlight>
<syntaxhighlight lang="text" class="" id="" style="" inline="1">blank=Blank</syntaxhighlight>
<syntaxhighlight lang="text" class="" id="" style="" inline="1">¬=Undefined</syntaxhighlight>
<syntaxhighlight lang="text" class="" id="" style="" inline="1">def=Def</syntaxhighlight>
Note
yes, y, true, 1* <syntaxhighlight lang="text" class="" id="" style="" inline="1">{{yesno|yes}}</syntaxhighlight> <syntaxhighlight lang="text" class="" id="" style="" inline="1">yes by definition</syntaxhighlight> "yes" "Pos" * Case-insensitive (Y=y)
Some Text <syntaxhighlight lang="text" class="" id="" style="" inline="1">{{yesno|Some Text}}</syntaxhighlight> <syntaxhighlight lang="text" class="" id="" style="" inline="1">yes by default</syntaxhighlight> "yes" "Def" "Pos" when def=[omitted]
no, n, false, 0* <syntaxhighlight lang="text" class="" id="" style="" inline="1">{{yesno|no}}</syntaxhighlight> <syntaxhighlight lang="text" class="" id="" style="" inline="1">no by definition</syntaxhighlight> "" [blank] "Neg" * Case-insensitive (N=n)
[blank] <syntaxhighlight lang="text" class="" id="" style="" inline="1">{{yesno|}}</syntaxhighlight> <syntaxhighlight lang="text" class="" id="" style="" inline="1">blank</syntaxhighlight> "" [blank] "Blank" "Neg" when blank=[omitted]
1=[blank] <syntaxhighlight lang="text" class="" id="" style="" inline="1">{{yesno|1=}}</syntaxhighlight> <syntaxhighlight lang="text" class="" id="" style="" inline="1">blank</syntaxhighlight> "" [blank] "Blank" "Neg" when blank=[omitted]
¬ <syntaxhighlight lang="text" class="" id="" style="" inline="1">{{yesno|¬}}</syntaxhighlight> <syntaxhighlight lang="text" class="" id="" style="" inline="1">¬</syntaxhighlight> "" [blank] "Undefined"
[omitted] <syntaxhighlight lang="text" class="" id="" style="" inline="1">{{yesno}}</syntaxhighlight> <syntaxhighlight lang="text" class="" id="" style="" inline="1">¬</syntaxhighlight> "" [blank] "Undefined"
Comparison with related templates
Input parameter 1 (<syntaxhighlight lang="text" class="" id="" style="" inline="1">1=</syntaxhighlight>) {{yesno}} {{yesno-yes}} {{yesno-no}}
yes, y, true, 1* "yes" "yes" "yes"
Some Text "yes" "yes" "no"
no, n, false, 0* "" [blank] "no" "no"
[blank] "" [blank] "yes" "no"
1=[blank] "" [blank] "yes" "no"
¬ "" [blank] "yes" "no"
[omitted] "" [blank] "yes" "no"

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.

{{yesno
|
| yes  =
| no   =
| blank=
| ¬    =
| def  =
}}

See also

  • Module:yesno
  • {{Yesno-yes}} – variant of Yesno that defaults to "yes" if value is not explicitly negative
    • {{Yesno-yes/fallback}} – variant that first defaults to the yes parameter, then falls back to "yes", if value is not explicitly negative
  • {{Yesno-no}} – variant of Yesno that defaults to "no" if value is not explicitly positive

TemplateData

This is the TemplateData for this template used by TemplateWizard, VisualEditor and other tools. Click here to see a monthly parameter usage report for this template based on this TemplateData.

TemplateData for Yesno

This template normalises an input to be a yes or nil output.

模板参数[编辑模板数据]

参数描述类型状态
Input value1

The value to be evaluated

字符串必需
Output on yesyes

Specifies the output of the template when the input value is a case-insensitive forms of 'Yes', 'Y', 'True' or '1'

字符串可选
Output on nono

Specifies the output of the template when the input value is a case-insensitive forms of 'No', 'N', 'False, or '0'

字符串可选
Output on blank inputblank

Specifies the output of the template when the input value is defined but is either empty or contains nothing but whitespace character(s)

字符串可选
Output on ¬¬

Specifies the output of the template when the input value is either '¬' or entirely missing (undefined)

字符串可选
Definite outputdef

Specifies the output of the template when the input value is defined but not a form of 'yes', 'no', '1', '0', '¬' or blank

字符串可选
The above documentation is transcluded from 模板:Yesno/doc. (edit | history)
Editors can experiment in this template's sandbox (create | mirror) and testcases (create) pages.
Add categories to the /doc subpage. Subpages of this template.
检索自“https://wiki.czzzz.work/index.php?title=模板:Yesno&oldid=144”
最后编辑于2022年9月18日 (星期日) 17:37

语言

    此页面在其他语言不可用。

    悠日計画 維基百科 ~ Yuuni Wiki
    • 此页面最后编辑于2022年9月18日 (星期日) 17:37。
    • 除非另有声明,本网站内容采用知识共享署名-非商业性使用-相同方式共享授权。
    • 隐私政策
    • 关于悠日計画 維基百科 ~ Yuuni Wiki
    • 免责声明
    • 桌面版