1
0
mirror of synced 2026-01-08 12:01:53 -05:00
Files
docs/tests/fixtures/content/get-started/liquid/ifversion.md
2023-04-24 21:08:20 +00:00

1.1 KiB

title, intro, versions, type
title intro versions type
Ifversion liquid tag Tests functionality of `ifversion` and its operators {% ifversion not fpt %}(not on fpt){% else %}(on fpt){% endif %}
fpt ghes ghae ghec
* * * *
how_to

ifversion without operators

This section isn't conditioned.

{% ifversion fpt %} condition-a {% endif %}

{% ifversion fpt %} condition-b {% else %} condition-c {% endif %}

{% ifversion fpt %} condition-d {% elsif ghes %} condition-e {% endif %}

ifversion with ranges

{% ifversion ghes > 3.4 %} condition-f {% endif %}

{% ifversion ghes < 3.6 %} condition-g {% endif %}

{% ifversion ghes > 3.4 and ghes < 3.6 %} condition-h {% endif %}

ifversion with equality

{% ifversion not ghec %} condition-i {% endif %}

{% ifversion ghes != 3.5 %} condition-j {% endif %}

{% ifversion ghes = 3.5 %} condition-k {% endif %}

ifversion with ors

{% ifversion fpt or ghec %} condition-l {% endif %}

ifversion nested

{% ifversion ghes %} condition-m {% ifversion ghes = 3.4 %} condition-n {% endif %} {% endif %}

ifversion combined operations

{% ifversion not fpt and ghes > 3.4 %} condition-o {% endif %}