28 lines
943 B
Text
28 lines
943 B
Text
== dictionaries/rougail/00-base.yml
|
|
|
|
[,yaml]
|
|
----
|
|
version: '1.1'
|
|
int:
|
|
description: A number
|
|
type: number
|
|
validators:
|
|
- jinja: |
|
|
{% if _.int > 100 %}
|
|
value is too high
|
|
{% endif %}
|
|
description: the max value is 100
|
|
----
|
|
== Variables pour "rougail"
|
|
|
|
[cols="107a,107a",options="header"]
|
|
|====
|
|
| Variable | Description
|
|
|
|
|
**rougail.int** +
|
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `basic` `obligatoire` |
|
|
A number. +
|
|
**Validator**: the max value is 100.
|
|
|====
|
|
|
|
|