55 lines
6 KiB
Markdown
55 lines
6 KiB
Markdown
|
---
|
||
|
gitea: none
|
||
|
include_toc: true
|
||
|
---
|
||
|
# dictionaries/rougail/00-base.yml
|
||
|
|
||
|
```yaml
|
||
|
---
|
||
|
version: 1.1
|
||
|
leader:
|
||
|
description: leader
|
||
|
type: leadership
|
||
|
leader: # a leader
|
||
|
- a
|
||
|
- b
|
||
|
follower:
|
||
|
description: a follower
|
||
|
disabled:
|
||
|
type: jinja
|
||
|
jinja: |
|
||
|
{% if _.leader == "a" %}
|
||
|
the value of "leader" is "a"
|
||
|
{% endif %}
|
||
|
description: if the value of "leader" is "a"
|
||
|
default:
|
||
|
type: variable
|
||
|
variable: _.leader
|
||
|
```
|
||
|
# Variables for "rougail"
|
||
|
|
||
|
## rougail.leader
|
||
|
|
||
|
`standard`
|
||
|
|
||
|
|
||
|
This family contains lists of variable blocks.
|
||
|
|
||
|
| Variable | Description |
|
||
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||
|
| **rougail.leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- a<br/>- b |
|
||
|
| **rougail.leader.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` _`disabled`_ | A follower.<br/>**Default**: the value of the variable "rougail.leader.leader".<br/>**Disabled**: if the value of "leader" is "a". |
|
||
|
|
||
|
|
||
|
# Example with all variables modifiable
|
||
|
|
||
|
```yaml
|
||
|
---
|
||
|
rougail:
|
||
|
leader:
|
||
|
- leader: a
|
||
|
follower: b
|
||
|
- leader: b
|
||
|
follower: b
|
||
|
```
|