class Liquid::If

@liquid_public_docs @liquid_type tag @liquid_category conditional @liquid_name if @liquid_summary

Renders an expression if a specific condition is `true`.

@liquid_syntax

{% if condition %}
  expression
{% endif %}

@liquid_syntax_keyword condition The condition to evaluate. @liquid_syntax_keyword expression The expression to render if the condition is met.