Benutzer:PK2/If/Doku

aus Wikipedia, der freien Enzyklopädie
< Benutzer:PK2‎ | If
Dies ist die aktuelle Version dieser Seite, zuletzt bearbeitet am 19. Juli 2009 um 18:51 Uhr durch imported>Sternstefan(80226) (hat „Vorlage:If/Doku“ nach „Benutzer:PK2/If/Doku“ verschoben: unfertig).
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)


With this template the parser functions of the ParserFunctions collection with names starting with "#if" can be used in a way such that they do not strip spaces and newlines from the "then" and "else" part. Spaces still do not affect the outcome of the condition.

Usage

  • {{if||x| p | q }} gives ""
  • {{if|expr|2<3| p | q }} gives " p "
  • {{if|eq| u |u| p | q }} gives ""
  • {{if|exist| Help:Link | p | q }} gives ""
  • {{if|error|{{#expr:x}}| p | q }} gives ""

Compare:

  • {{#if:x| p | q }} gives "p"
  • {{#ifexpr:2<3| p | q }} gives "p"
  • {{#ifeq: u |u| p | q }} gives "p"
  • {{#ifexist: Help:Link | p | q }} gives "p"
  • {{#iferror:{{#expr:x}}| p | q }} gives "p"

For full substitution, use e.g. {{subst:if|expr|2<3| p | q |subst=subst:}}. If the condition contains a parser function or template etc., that should be substituted too. Optionally the "then" or "else" part can also be substituted.

See also