rougail-output-doc/tests/docs/no_namespace/04_5validators.adoc

29 lines
920 B
Text
Raw Permalink Normal View History

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