rougail-output-doc/tests/docs/base/40_8calculation_boolean.adoc

60 lines
1.3 KiB
Text
Raw Normal View History

2024-07-10 21:27:48 +02:00
== dictionaries/rougail/00-base.yml
[,yaml]
----
---
2024-07-10 21:27:48 +02:00
version: '1.1'
bool: false # a boolean variable
multi1:
description: a first multi variable
type: boolean
multi: true
default:
jinja: |
{% if _.bool %}
True
False
{% else %}
False
{% endif %}
description: a calculation
multi2:
description: a second multi variable
type: boolean
multi: true
default:
jinja: |
{% if not _.bool %}
True
False
{% else %}
False
{% endif %}
description: a calculation
----
2024-11-15 08:13:45 +01:00
== Variables for "Rougail"
2024-07-10 21:27:48 +02:00
[cols="1a,1a"]
2024-07-10 21:27:48 +02:00
|====
2024-11-15 08:13:45 +01:00
| Variable | Description
2024-07-10 21:27:48 +02:00
|
2024-11-15 08:13:45 +01:00
2024-07-10 21:27:48 +02:00
**rougail.bool** +
2024-11-15 08:13:45 +01:00
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
2024-07-10 21:27:48 +02:00
A boolean variable. +
2024-11-15 08:13:45 +01:00
**Default**: false
2024-07-10 21:27:48 +02:00
|
2024-11-15 08:13:45 +01:00
2024-07-10 21:27:48 +02:00
**rougail.multi1** +
2024-11-15 08:13:45 +01:00
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
2024-07-10 21:27:48 +02:00
A first multi variable. +
2024-11-15 08:13:45 +01:00
**Default**: a calculation.
2024-07-10 21:27:48 +02:00
|
2024-11-15 08:13:45 +01:00
2024-07-10 21:27:48 +02:00
**rougail.multi2** +
2024-11-15 08:13:45 +01:00
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
2024-07-10 21:27:48 +02:00
A second multi variable. +
2024-11-15 08:13:45 +01:00
**Default**: a calculation.
2024-07-10 21:27:48 +02:00
|====