Variables

These are to be used as values.

{% for doc in site.docs %} {% if doc.type == "variable" %}

{{ doc.title }}

{% if doc.description %}

{{ doc.description }}

{% endif %} {% if doc.deprecation %}

⚠️ This variable is planning to be deprecated soon. Use {{ doc.deprecation-instead }} instead.

{% endif %} {% for rule in doc.rules %} {% endfor %}
{{ rule.rule }} {{ rule.description }} {% if rule.sub-note %} Note: {{ rule.sub-note }} {% endif %}
{% if doc.code-example %} {{ doc.content }} {% endif %}
Back to Variables List
{% endif %} {% endfor %}