rougail-output-doc/tests/docs/base/04_5hidden_calculation2.md

45 lines
7.1 KiB
Markdown
Raw Normal View History

2024-07-10 21:27:48 +02:00
---
gitea: none
include_toc: true
---
# dictionaries/rougail/00-base.yml
```yaml
---
version: '1.1'
condition: no # a condition
var1:
description: a first variable
hidden:
jinja: |
{% if _.condition != "yes" %}
condition is yes
{% endif %}
description: if condition is yes
default:
jinja: |
{{ _.condition }}
description: the value of condition
var2:
description: a second variable
hidden:
jinja: |
{% if rougail.condition != "yes" %}
condition is yes
{% endif %}
description: if condition is yes
default:
jinja: |
{{ rougail.condition }}
description: the value of condition
```
# Variables for "rougail"
2024-07-10 21:27:48 +02:00
| Variable                                                                                                              | Description                                                                                                           |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **rougail.condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: no |
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`hidden`* | A first variable.<br/>**Default**: the value of condition.<br/>**Hidden**: if condition is yes. |
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`hidden`* | A second variable.<br/>**Default**: the value of condition.<br/>**Hidden**: if condition is yes. |
2024-07-10 21:27:48 +02:00