Template:Ifndef
This template provides branching without Extension:ParserFunctions for simple "if defined then void else do" statements with blank then part. It is the opposite of Template:Ifdef.
Usage
edit{{Ifndef|value|result}}
yields result if value is blank.
It uses the code {{{2{{{1|}}}|}}}
See Template:Ifwpc for an overview of results, and comparisons.
Examples
editCode | Result |
{{Ifndef|x|y}}
|
|
{{Ifndef||y}}
|
y |
{{Ifndef|2=y}}
|
y |
{{Ifndef|x}}
|
|
{{Ifndef|}}
|
|
{{Ifndef}}
|
Substitution
editConvenient of the parameter default mechanism is that substitution works also, without any extra code.