rougail-output-doc/tests/docs/base/40_8calculation_integer.md
2024-08-05 14:38:59 +02:00

6.5 KiB

Table of Contents

dictionaries/rougail/00-base.yml

---
version: '1.1'
bool: false  # a boolean variable
int1:
  description: first integer variable
  type: number
  default:
    type: jinja
    jinja: |
      {% if rougail.bool %}1{% else %}2{% endif %}      
    description: if bool returns 1 otherwise return 2
int2:
  description: second integer variable
  type: number
  default:
    type: jinja
    jinja: |
      {% if not rougail.bool %}3{% else %}4{% endif %}      
    description: if bool returns 3 otherwise return 4

Variables for "rougail"

Variable                                                                                                   Description                                                                                               
rougail.bool
boolean standard mandatory
A boolean variable.
Default: False
rougail.int1
number standard mandatory
First integer variable.
Default: if bool returns 1 otherwise return 2.
rougail.int2
number standard mandatory
Second integer variable.
Default: if bool returns 3 otherwise return 4.

Example with all variables modifiable

---
rougail:
  bool: false
  int1: 2
  int2: 3