rougail-output-doc/tests/docs/no_namespace/00_6choice.adoc

110 lines
3.1 KiB
Text
Raw Normal View History

2024-07-10 21:27:48 +02:00
== dictionaries/rougail/00-base.yml
[,yaml]
----
version: '1.1'
var1:
description: the first variable
choices:
- a
- b
- c
var2:
description: the second variable
choices:
- a
- b
- c
var3:
description: the third variable
choices:
- a
- b
- c
mandatory: false
var4:
description: the forth variable
choices:
-
- b
- c
mandatory: false
var5:
description: the fifth variable
choices:
- a
- b
- c
default: a
var6:
description: the sixth variable
choices:
- 1
- 2
- 3
default: 1
----
== Variables
[cols="110a,110a",options="header"]
2024-07-10 21:27:48 +02:00
|====
| Variable | Description
2024-07-10 21:27:48 +02:00
|
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `obligatoire` |
2024-07-10 21:27:48 +02:00
The first variable. +
**Choix**:
2024-07-10 21:27:48 +02:00
* a
* b
* c
2024-07-10 21:27:48 +02:00
|
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `obligatoire` |
2024-07-10 21:27:48 +02:00
The second variable. +
**Choix**:
2024-07-10 21:27:48 +02:00
* a
* b
* c
2024-07-10 21:27:48 +02:00
|
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` |
2024-07-10 21:27:48 +02:00
The third variable. +
**Choix**:
2024-07-10 21:27:48 +02:00
* a
* b
* c
* null
2024-07-10 21:27:48 +02:00
|
**var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` |
2024-07-10 21:27:48 +02:00
The forth variable. +
**Choix**:
2024-07-10 21:27:48 +02:00
* null
* b
* c
2024-07-10 21:27:48 +02:00
|
**var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `obligatoire` |
2024-07-10 21:27:48 +02:00
The fifth variable. +
**Choix**:
2024-07-10 21:27:48 +02:00
* a ← (defaut)
2024-07-10 21:27:48 +02:00
* b
* c
2024-07-10 21:27:48 +02:00
|
**var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `obligatoire` |
2024-07-10 21:27:48 +02:00
The sixth variable. +
**Choix**:
2024-07-10 21:27:48 +02:00
* 1 ← (defaut)
2024-07-10 21:27:48 +02:00
* 2
* 3
2024-07-10 21:27:48 +02:00
|====