using System; namespace mustache { /// /// Defines a tag that renders its content depending on the truthyness /// of its argument, with optional elif and else nested tags. /// internal sealed class IfTagDefinition : ConditionTagDefinition { /// /// Initializes a new instance of a IfTagDefinition. /// public IfTagDefinition() : base("if") { } } }