rougail-output-doc/tests/docs/examples/04_5disabled_calculation_optional.md

50 lines
961 B
Markdown

---
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 unknown is not defined %}
unknown is undefined
{% elif unknown == "no" %}
unknown is no
{% endif %}
params:
unknown:
variable: _.unknown
optional: true
description: calculation from an unknown variable
mandatory: false
var2:
description: a second variable
hidden:
jinja: |
{% if condition is not defined %}
condition is undefined
{% elif condition == "no" %}
condition is no
{% endif %}
params:
condition:
variable: _.condition
optional: true
description: calculation from an condition variable
mandatory: false
```
# Example with all variables modifiable
```yaml
---
rougail:
condition: no
var1: example
var2: example
```