rougail-output-doc/tests/docs/examples/16_6choice_redefine.md

37 lines
388 B
Markdown
Raw Normal View History

2024-11-15 08:13:45 +01:00
---
gitea: none
include_toc: true
---
# 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
```
# Example with all variables modifiable
```yaml
---
rougail:
var: c
```