78 lines
2.6 KiB
Text
78 lines
2.6 KiB
Text
|
== dictionaries/rougail/00-base.yml
|
||
|
|
||
|
[,yaml]
|
||
|
----
|
||
|
version: '1.1'
|
||
|
condition: no # a condition
|
||
|
var1:
|
||
|
description: a first variable
|
||
|
hidden:
|
||
|
type: jinja
|
||
|
jinja: |
|
||
|
{% if unknown is not defined %}
|
||
|
unknown is undefined
|
||
|
{% elif unknown == "no" %}
|
||
|
unknown is no
|
||
|
{% endif %}
|
||
|
params:
|
||
|
unknown:
|
||
|
type: variable
|
||
|
variable: _.unknown
|
||
|
optional: true
|
||
|
description: calculation from an unknown variable
|
||
|
var2:
|
||
|
description: a second variable
|
||
|
hidden:
|
||
|
type: jinja
|
||
|
jinja: |
|
||
|
{% if condition is not defined %}
|
||
|
condition is undefined
|
||
|
{% elif condition == "no" %}
|
||
|
condition is no
|
||
|
{% endif %}
|
||
|
params:
|
||
|
condition:
|
||
|
type: variable
|
||
|
variable: _.condition
|
||
|
optional: true
|
||
|
description: calculation from an condition variable
|
||
|
----
|
||
|
== Variables
|
||
|
|
||
|
[cols="116a,116a",options="header"]
|
||
|
|====
|
||
|
| Variable | Description
|
||
|
|
|
||
|
**condition** +
|
||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||
|
A condition. +
|
||
|
**Default**: no
|
||
|
|
|
||
|
**var1** +
|
||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` _`hidden`_ |
|
||
|
A first variable. +
|
||
|
**Hidden**: calculation from an unknown variable.
|
||
|
|
|
||
|
**var2** +
|
||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` _`hidden`_ |
|
||
|
A second variable. +
|
||
|
**Hidden**: calculation from an condition variable.
|
||
|
|====
|
||
|
|
||
|
|
||
|
== Example with mandatory variables not filled in
|
||
|
|
||
|
[,yaml]
|
||
|
----
|
||
|
var1: example
|
||
|
var2: example
|
||
|
----
|
||
|
== Example with all variables modifiable
|
||
|
|
||
|
[,yaml]
|
||
|
----
|
||
|
condition: no
|
||
|
var1: example
|
||
|
var2: example
|
||
|
----
|