41 lines
955 B
Text
41 lines
955 B
Text
== dictionaries/rougail/01-base.yml
|
|
|
|
[,yaml]
|
|
----
|
|
version: '1.0'
|
|
var:
|
|
redefine: true
|
|
choices:
|
|
- a
|
|
- c
|
|
----
|
|
== dictionaries/rougail/00-base.yml
|
|
|
|
[,yaml]
|
|
----
|
|
version: '1.0'
|
|
var:
|
|
type: choice
|
|
description: A choice
|
|
default: c
|
|
choices:
|
|
- a
|
|
- b
|
|
- c
|
|
----
|
|
== Variables
|
|
|
|
[cols="110a,110a",options="header"]
|
|
|====
|
|
| Variable | Description
|
|
|
|
|
**var** +
|
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `obligatoire` |
|
|
A choice. +
|
|
**Choix**:
|
|
|
|
* a
|
|
* c ← (defaut)
|
|
|====
|
|
|
|
|