1
0
mirror of synced 2026-01-07 09:01:31 -05:00
Files
docs/tests/fixtures/content/get-started/foo/table-with-ifversions.md
2023-06-09 14:32:23 +00:00

24 lines
419 B
Markdown

---
title: Table with ifversions
intro: Demonstrates a page that uses Liquid if statements to hide certain rows in a Markdown table
versions:
fpt: '*'
ghes: '*'
ghec: '*'
---
## Intro
Here's an inline mention of {% data variables.product.product_name %} in Liquid.
## Table
| Key | Value |
|---|---|
{% ifversion ghes -%}
| GHES | Present |
{%- endif -%}
{%- ifversion not ghes -%}
| GHES | Not |
{% endif %}