52 lines
7.1 KiB
Markdown
52 lines
7.1 KiB
Markdown
|
---
|
||
|
gitea: none
|
||
|
include_toc: true
|
||
|
---
|
||
|
# dictionaries/rougail/00-base.yml
|
||
|
|
||
|
```yaml
|
||
|
---
|
||
|
version: '1.0'
|
||
|
leadership:
|
||
|
description: A leadership
|
||
|
type: leadership
|
||
|
leader:
|
||
|
description: The leader
|
||
|
multi: true
|
||
|
follower1:
|
||
|
description: The first follower
|
||
|
multi: true
|
||
|
follower2:
|
||
|
description: The second follower
|
||
|
multi: true
|
||
|
default:
|
||
|
- value
|
||
|
```
|
||
|
# Variables
|
||
|
|
||
|
## A leadership
|
||
|
|
||
|
`basic`
|
||
|
|
||
|
|
||
|
This family contains lists of variable blocks.
|
||
|
|
||
|
| Variable | Description |
|
||
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||
|
| **leadership.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The leader. |
|
||
|
| **leadership.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `multiple` | The first follower. |
|
||
|
| **leadership.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | The second follower.<br/>**Default**: <br/>- value |
|
||
|
|
||
|
|
||
|
# Example with all variables modifiable
|
||
|
|
||
|
```yaml
|
||
|
---
|
||
|
leadership:
|
||
|
- leader: example
|
||
|
follower1:
|
||
|
- example
|
||
|
follower2:
|
||
|
- value
|
||
|
```
|