87 lines
3.3 KiB
Text
87 lines
3.3 KiB
Text
== 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
|
|
|
|
[cols="127a,127a",options="header"]
|
|
|====
|
|
| Variable | Description
|
|
|
|
|
**var1** +
|
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
|
The first variable. +
|
|
**Exemple**: test
|
|
|
|
|
**var2** +
|
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
|
The second variable. +
|
|
**Défaut**: value +
|
|
**Exemple**: test
|
|
|
|
|
**var3** +
|
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
|
The third variable. +
|
|
**Exemple**: test1
|
|
|
|
|
**var4** +
|
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
|
The forth variable. +
|
|
**Exemple**: None
|
|
|
|
|
**var5** +
|
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` |
|
|
The fifth variable. +
|
|
**Défaut**: True +
|
|
**Exemple**: False
|
|
|
|
|
**var6** +
|
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` `unique` `multiple` |
|
|
The sixth variable. +
|
|
**Exemples**:
|
|
|
|
* test1
|
|
* test2
|
|
|====
|
|
|
|
|