Provide support for determining community/product guides

Closes #22762
This commit is contained in:
Martin Bartoš 2023-08-28 16:34:02 +02:00 committed by Alexander Schwartz
parent e6ebbc4fe2
commit 430c883eda

View file

@ -0,0 +1,11 @@
<#macro ifProduct>
ifeval::[{project_product} == true]
<#nested>
endif::[]
</#macro>
<#macro ifCommunity>
ifeval::[{project_product} != true]
<#nested>
endif::[]
</#macro>