60 lines
12 KiB
Markdown
60 lines
12 KiB
Markdown
---
|
|
gitea: none
|
|
include_toc: true
|
|
---
|
|
# dictionaries/rougail/00-base.yml
|
|
|
|
```yaml
|
|
---
|
|
version: '1.1'
|
|
|
|
var1:
|
|
description: the first variable
|
|
test:
|
|
- test
|
|
|
|
var2:
|
|
description: the second variable
|
|
test:
|
|
- test
|
|
default: value
|
|
|
|
var3:
|
|
description: the third variable
|
|
test:
|
|
- test1
|
|
- test2
|
|
|
|
var4:
|
|
description: the forth variable
|
|
test:
|
|
-
|
|
- test1
|
|
- test2
|
|
mandatory: false
|
|
|
|
var5:
|
|
description: the fifth variable
|
|
type: boolean
|
|
test:
|
|
- false
|
|
|
|
var6:
|
|
description: the sixth variable
|
|
multi: true
|
|
test:
|
|
- test1
|
|
- test2
|
|
```
|
|
# Variables
|
|
|
|
| Variable | Description |
|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | The first variable.<br/>**Exemple**: test |
|
|
| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The second variable.<br/>**Défaut**: value<br/>**Exemple**: test |
|
|
| **var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | The third variable.<br/>**Exemple**: test1 |
|
|
| **var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The forth variable.<br/>**Exemple**: None |
|
|
| **var5**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The fifth variable.<br/>**Défaut**: True<br/>**Exemple**: False |
|
|
| **var6**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` `unique` `multiple` | The sixth variable.<br/>**Exemples**: <br/>- test1<br/>- test2 |
|
|
|
|
|