29 lines
415 B
Markdown
29 lines
415 B
Markdown
|
---
|
||
|
gitea: none
|
||
|
include_toc: true
|
||
|
---
|
||
|
# dictionaries/rougail/00-base.yml
|
||
|
|
||
|
```yaml
|
||
|
---
|
||
|
version: 1.1
|
||
|
my_variable:
|
||
|
default: val1
|
||
|
my_calculated_variable:
|
||
|
multi: true
|
||
|
default:
|
||
|
- variable: _.my_variable_unexists
|
||
|
optional: true
|
||
|
- variable: _.my_variable
|
||
|
optional: true
|
||
|
```
|
||
|
# Example with all variables modifiable
|
||
|
|
||
|
```yaml
|
||
|
---
|
||
|
rougail:
|
||
|
my_variable: val1
|
||
|
my_calculated_variable:
|
||
|
- val1
|
||
|
```
|