2024-11-06 17:39:13 +01:00
|
|
|
---
|
|
|
|
gitea: none
|
|
|
|
include_toc: true
|
|
|
|
---
|
2024-12-02 20:21:31 +01:00
|
|
|
# Variables
|
2024-11-06 17:39:13 +01:00
|
|
|
|
2024-12-02 20:21:31 +01:00
|
|
|
| Variable | Description |
|
|
|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
|
|
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable. |
|
2024-11-06 17:39:13 +01:00
|
|
|
|
|
|
|
## A dynamic family
|
|
|
|
|
|
|
|
`basic`
|
|
|
|
|
|
|
|
This family builds families dynamically.
|
|
|
|
|
2024-12-02 20:21:31 +01:00
|
|
|
**Identifiers**: the value of the variable "var".
|
2024-11-06 17:39:13 +01:00
|
|
|
|
2024-12-02 20:21:31 +01:00
|
|
|
| Variable | Description |
|
|
|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
|
|
| **dyn*example*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
|
2024-11-06 17:39:13 +01:00
|
|
|
|
2024-12-02 20:21:31 +01:00
|
|
|
# Example with mandatory variables not filled in
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
---
|
|
|
|
dynexample:
|
|
|
|
var: example
|
|
|
|
```
|
|
|
|
# Example with all variables modifiable
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
---
|
|
|
|
var:
|
|
|
|
- example
|
|
|
|
dynexample:
|
|
|
|
var: example
|
|
|
|
```
|