Provide support for determining community/product guides

Closes #22762
This commit is contained in:
Martin Bartoš
2023-08-28 16:34:02 +02:00
parent 580c5ca5bc
commit 2e2bc1b420
+11
View File
@@ -0,0 +1,11 @@
<#macro ifProduct>
ifeval::[{project_product} == true]
<#nested>
endif::[]
</#macro>
<#macro ifCommunity>
ifeval::[{project_product} != true]
<#nested>
endif::[]
</#macro>