diff --git a/src/rougail/output_doc/doc.py b/src/rougail/output_doc/doc.py
index 571147891..50c06578a 100644
--- a/src/rougail/output_doc/doc.py
+++ b/src/rougail/output_doc/doc.py
@@ -568,10 +568,10 @@ class RougailOutputDoc(Examples):
def _parse_properties(
self,
- variable,
+ child,
):
informations = []
- properties = variable.property.get(uncalculated=True)
+ properties = child.property.get(uncalculated=True)
for mode in self.modes_level:
if mode not in properties:
continue
@@ -588,8 +588,8 @@ class RougailOutputDoc(Examples):
"type": "property",
"name": translated_prop,
}
- elif variable.information.get(f"{prop}_calculation", False):
- annotation = self._to_string(variable, prop)
+ elif child.information.get(f"{prop}_calculation", False):
+ annotation = self._to_string(child, prop)
if annotation is None or isinstance(annotation, bool):
if annotation is None and prop in HIDDEN_PROPERTIES:
return False, {}
@@ -701,19 +701,11 @@ class RougailOutputDoc(Examples):
def _calculation_variable_to_string(self, child, calculation, prop):
if prop in PROPERTY_ATTRIBUTE:
variable_path, value, condition = calculation["value"]
- variable = self.conf.forcepermissive.option(variable_path)
+ variable = self.conf.unrestraint.option(variable_path)
try:
variable.value.get()
except AttributeError as err:
variable = None
-# else:
-# uncalculated = variable.value.get(uncalculated=True)
-# if child.name() == 'datasource':
-# print(child, variable, prop, uncalculated, variable)
-# if not isinstance(
-# uncalculated, Calculation
-# ) and self._is_inaccessible_user_data(variable):
-# return None
if variable and self._is_inaccessible_user_data(variable):
try:
variable_value = self._get_unmodified_default_value(variable)
diff --git a/src/rougail/output_doc/output/gitlab.py b/src/rougail/output_doc/output/gitlab.py
index 5c2aae4e2..fb4ca0bf5 100644
--- a/src/rougail/output_doc/output/gitlab.py
+++ b/src/rougail/output_doc/output/gitlab.py
@@ -36,10 +36,10 @@ class Formater(GithubFormater):
def title(self, title: str, level: int) -> str:
# self.max_line_variable = 0
- return " " * level + '' + title + '
\n\n'
+ return '' + title + '
\n\n'
def end_family(self, level):
- return " " * level + ' \n\n'
+ return ' \n\n'
def columns(
self,
diff --git a/tests/results/test/00_6choice_variable_link2.gitlab.md b/tests/results/test/00_6choice_variable_link2.gitlab.md
index ddc06e0c1..ca7cd3b15 100644
--- a/tests/results/test/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test/00_6choice_variable_link2.gitlab.md
@@ -3,7 +3,7 @@
| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Default**:
- a
- b
- c |
| **var2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Choices**: the value of the variable "var1".
**Default**: a |
- family
+family
>>> [!note] Informations
**family**
`standard`
@@ -14,5 +14,5 @@
|-------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
| **family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "family.var1".
**Default**: the value of the variable "var2". |
-
+
diff --git a/tests/results/test/04_5disabled_calculation_variable10.adoc b/tests/results/test/04_5disabled_calculation_variable10.adoc
new file mode 100644
index 000000000..d8ea1cccc
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable10.adoc
@@ -0,0 +1,17 @@
+[cols="1a,1a"]
+|====
+| Variable | Description
+|
+
+**condition** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
+A condition. +
+**Default**: true
+|
+
+**variable** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` |
+A variable. +
+**Disabled**: when the variable "condition" has the value "true".
+|====
+
diff --git a/tests/results/test/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test/04_5disabled_calculation_variable10.gitlab.md
new file mode 100644
index 000000000..ada308768
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable10.gitlab.md
@@ -0,0 +1,5 @@
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "condition" has the value "true". |
+
diff --git a/tests/results/test/04_5disabled_calculation_variable10.json b/tests/results/test/04_5disabled_calculation_variable10.json
new file mode 100644
index 000000000..4e174ccca
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable10.json
@@ -0,0 +1,63 @@
+{
+ "condition": {
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": true
+ },
+ "properties": [
+ {
+ "type": "type",
+ "name": "boolean"
+ },
+ {
+ "type": "mode",
+ "name": "standard"
+ },
+ {
+ "type": "property",
+ "name": "mandatory"
+ }
+ ],
+ "paths": [
+ "condition"
+ ],
+ "names": [
+ "condition"
+ ],
+ "descriptions": [
+ "A condition."
+ ]
+ },
+ "variable": {
+ "type": "variable",
+ "properties": [
+ {
+ "type": "type",
+ "name": "string"
+ },
+ {
+ "type": "mode",
+ "name": "basic"
+ },
+ {
+ "type": "property",
+ "name": "mandatory"
+ },
+ {
+ "type": "property",
+ "name": "disabled",
+ "annotation": "when the variable \"condition\" has the value \"true\"."
+ }
+ ],
+ "paths": [
+ "variable"
+ ],
+ "names": [
+ "variable"
+ ],
+ "descriptions": [
+ "A variable."
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tests/results/test/04_5disabled_calculation_variable10.md b/tests/results/test/04_5disabled_calculation_variable10.md
new file mode 100644
index 000000000..e02bb435f
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable10.md
@@ -0,0 +1,5 @@
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "condition" has the value "true". |
+
diff --git a/tests/results/test/04_5disabled_calculation_variable10.sh b/tests/results/test/04_5disabled_calculation_variable10.sh
new file mode 100644
index 000000000..1053e2005
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable10.sh
@@ -0,0 +1,10 @@
+┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
+┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
+┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
+│ [1mcondition[0m │ A condition. │
+│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: true │
+├───────────────────────────────────────┼──────────────────────────────────────┤
+│ [1mvariable[0m │ A variable. │
+│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;3;7m [0m │ [1mDisabled[0m: when the variable │
+│ [1;3;7mdisabled [0m │ "condition" has the value "true". │
+└───────────────────────────────────────┴──────────────────────────────────────┘
diff --git a/tests/results/test/04_5disabled_calculation_variable5.adoc b/tests/results/test/04_5disabled_calculation_variable5.adoc
new file mode 100644
index 000000000..12f239021
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable5.adoc
@@ -0,0 +1,10 @@
+[cols="1a,1a"]
+|====
+| Variable | Description
+|
+
+**variable** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
+A variable.
+|====
+
diff --git a/tests/results/test/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test/04_5disabled_calculation_variable5.gitlab.md
new file mode 100644
index 000000000..41c59b273
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable5.gitlab.md
@@ -0,0 +1,4 @@
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------|---------------|
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
+
diff --git a/tests/results/test/04_5disabled_calculation_variable5.json b/tests/results/test/04_5disabled_calculation_variable5.json
new file mode 100644
index 000000000..20c11af3f
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable5.json
@@ -0,0 +1,28 @@
+{
+ "variable": {
+ "type": "variable",
+ "properties": [
+ {
+ "type": "type",
+ "name": "string"
+ },
+ {
+ "type": "mode",
+ "name": "basic"
+ },
+ {
+ "type": "property",
+ "name": "mandatory"
+ }
+ ],
+ "paths": [
+ "variable"
+ ],
+ "names": [
+ "variable"
+ ],
+ "descriptions": [
+ "A variable."
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tests/results/test/04_5disabled_calculation_variable5.md b/tests/results/test/04_5disabled_calculation_variable5.md
new file mode 100644
index 000000000..547c2a690
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable5.md
@@ -0,0 +1,4 @@
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
+
diff --git a/tests/results/test/04_5disabled_calculation_variable5.sh b/tests/results/test/04_5disabled_calculation_variable5.sh
new file mode 100644
index 000000000..638072145
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable5.sh
@@ -0,0 +1,6 @@
+┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
+┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
+┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
+│ [1mvariable[0m │ A variable. │
+│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ │
+└───────────────────────────────────────┴──────────────────────────────────────┘
diff --git a/tests/results/test/04_5disabled_calculation_variable6.adoc b/tests/results/test/04_5disabled_calculation_variable6.adoc
new file mode 100644
index 000000000..12f239021
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable6.adoc
@@ -0,0 +1,10 @@
+[cols="1a,1a"]
+|====
+| Variable | Description
+|
+
+**variable** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
+A variable.
+|====
+
diff --git a/tests/results/test/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test/04_5disabled_calculation_variable6.gitlab.md
new file mode 100644
index 000000000..41c59b273
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable6.gitlab.md
@@ -0,0 +1,4 @@
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------|---------------|
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
+
diff --git a/tests/results/test/04_5disabled_calculation_variable6.json b/tests/results/test/04_5disabled_calculation_variable6.json
new file mode 100644
index 000000000..20c11af3f
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable6.json
@@ -0,0 +1,28 @@
+{
+ "variable": {
+ "type": "variable",
+ "properties": [
+ {
+ "type": "type",
+ "name": "string"
+ },
+ {
+ "type": "mode",
+ "name": "basic"
+ },
+ {
+ "type": "property",
+ "name": "mandatory"
+ }
+ ],
+ "paths": [
+ "variable"
+ ],
+ "names": [
+ "variable"
+ ],
+ "descriptions": [
+ "A variable."
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tests/results/test/04_5disabled_calculation_variable6.md b/tests/results/test/04_5disabled_calculation_variable6.md
new file mode 100644
index 000000000..547c2a690
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable6.md
@@ -0,0 +1,4 @@
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
+
diff --git a/tests/results/test/04_5disabled_calculation_variable6.sh b/tests/results/test/04_5disabled_calculation_variable6.sh
new file mode 100644
index 000000000..638072145
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable6.sh
@@ -0,0 +1,6 @@
+┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
+┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
+┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
+│ [1mvariable[0m │ A variable. │
+│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ │
+└───────────────────────────────────────┴──────────────────────────────────────┘
diff --git a/tests/results/test/04_5disabled_calculation_variable7.adoc b/tests/results/test/04_5disabled_calculation_variable7.adoc
new file mode 100644
index 000000000..7dc190c33
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable7.adoc
@@ -0,0 +1,17 @@
+[cols="1a,1a"]
+|====
+| Variable | Description
+|
+
+**condition** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
+A condition. +
+**Default**: false
+|
+
+**variable** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` |
+A variable. +
+**Disabled**: when the variable "condition" has the value "true".
+|====
+
diff --git a/tests/results/test/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test/04_5disabled_calculation_variable7.gitlab.md
new file mode 100644
index 000000000..2490c7b4d
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable7.gitlab.md
@@ -0,0 +1,5 @@
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "condition" has the value "true". |
+
diff --git a/tests/results/test/04_5disabled_calculation_variable7.json b/tests/results/test/04_5disabled_calculation_variable7.json
new file mode 100644
index 000000000..0a19da78f
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable7.json
@@ -0,0 +1,63 @@
+{
+ "condition": {
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": false
+ },
+ "properties": [
+ {
+ "type": "type",
+ "name": "boolean"
+ },
+ {
+ "type": "mode",
+ "name": "standard"
+ },
+ {
+ "type": "property",
+ "name": "mandatory"
+ }
+ ],
+ "paths": [
+ "condition"
+ ],
+ "names": [
+ "condition"
+ ],
+ "descriptions": [
+ "A condition."
+ ]
+ },
+ "variable": {
+ "type": "variable",
+ "properties": [
+ {
+ "type": "type",
+ "name": "string"
+ },
+ {
+ "type": "mode",
+ "name": "basic"
+ },
+ {
+ "type": "property",
+ "name": "mandatory"
+ },
+ {
+ "type": "property",
+ "name": "disabled",
+ "annotation": "when the variable \"condition\" has the value \"true\"."
+ }
+ ],
+ "paths": [
+ "variable"
+ ],
+ "names": [
+ "variable"
+ ],
+ "descriptions": [
+ "A variable."
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tests/results/test/04_5disabled_calculation_variable7.md b/tests/results/test/04_5disabled_calculation_variable7.md
new file mode 100644
index 000000000..dcfd3424b
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable7.md
@@ -0,0 +1,5 @@
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "condition" has the value "true". |
+
diff --git a/tests/results/test/04_5disabled_calculation_variable7.sh b/tests/results/test/04_5disabled_calculation_variable7.sh
new file mode 100644
index 000000000..135742779
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable7.sh
@@ -0,0 +1,10 @@
+┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
+┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
+┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
+│ [1mcondition[0m │ A condition. │
+│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: false │
+├───────────────────────────────────────┼──────────────────────────────────────┤
+│ [1mvariable[0m │ A variable. │
+│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;3;7m [0m │ [1mDisabled[0m: when the variable │
+│ [1;3;7mdisabled [0m │ "condition" has the value "true". │
+└───────────────────────────────────────┴──────────────────────────────────────┘
diff --git a/tests/results/test/04_5disabled_calculation_variable8.adoc b/tests/results/test/04_5disabled_calculation_variable8.adoc
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test/04_5disabled_calculation_variable8.gitlab.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test/04_5disabled_calculation_variable8.json b/tests/results/test/04_5disabled_calculation_variable8.json
new file mode 100644
index 000000000..9e26dfeeb
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable8.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/tests/results/test/04_5disabled_calculation_variable8.md b/tests/results/test/04_5disabled_calculation_variable8.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test/04_5disabled_calculation_variable8.sh b/tests/results/test/04_5disabled_calculation_variable8.sh
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test/04_5disabled_calculation_variable9.adoc b/tests/results/test/04_5disabled_calculation_variable9.adoc
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test/04_5disabled_calculation_variable9.gitlab.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test/04_5disabled_calculation_variable9.json b/tests/results/test/04_5disabled_calculation_variable9.json
new file mode 100644
index 000000000..9e26dfeeb
--- /dev/null
+++ b/tests/results/test/04_5disabled_calculation_variable9.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/tests/results/test/04_5disabled_calculation_variable9.md b/tests/results/test/04_5disabled_calculation_variable9.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test/04_5disabled_calculation_variable9.sh b/tests/results/test/04_5disabled_calculation_variable9.sh
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test/16_2family_redefine_calculation.gitlab.md b/tests/results/test/16_2family_redefine_calculation.gitlab.md
index dd54b4978..804654c57 100644
--- a/tests/results/test/16_2family_redefine_calculation.gitlab.md
+++ b/tests/results/test/16_2family_redefine_calculation.gitlab.md
@@ -1,4 +1,4 @@
- family
+family
>>> [!note] Informations
**family**
`basic` *`disabled`*
@@ -9,5 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var1. |
-
+
diff --git a/tests/results/test/16_3family_empty_at_ends.gitlab.md b/tests/results/test/16_3family_empty_at_ends.gitlab.md
index d725e4c7b..de37e6e69 100644
--- a/tests/results/test/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test/16_3family_empty_at_ends.gitlab.md
@@ -1,4 +1,4 @@
- family
+family
>>> [!note] Informations
**family**
`basic`
@@ -9,5 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var1. |
-
+
diff --git a/tests/results/test/16_5redefine_family.gitlab.md b/tests/results/test/16_5redefine_family.gitlab.md
index cbdda57ef..24eaa108e 100644
--- a/tests/results/test/16_5redefine_family.gitlab.md
+++ b/tests/results/test/16_5redefine_family.gitlab.md
@@ -1,4 +1,4 @@
- new description
+new description
>>> [!note] Informations
**family**
`basic`
@@ -9,5 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
diff --git a/tests/results/test/16_5redefine_help.gitlab.md b/tests/results/test/16_5redefine_help.gitlab.md
index 72df0077a..20402d95a 100644
--- a/tests/results/test/16_5redefine_help.gitlab.md
+++ b/tests/results/test/16_5redefine_help.gitlab.md
@@ -1,4 +1,4 @@
- a family
+a family
Redefine help family ok.
@@ -11,5 +11,5 @@ Redefine help family ok.
|--------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
| **family.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Redefine help.
Redefine help ok. |
-
+
diff --git a/tests/results/test/16_6exists_redefine_family.gitlab.md b/tests/results/test/16_6exists_redefine_family.gitlab.md
index 5364ff5a7..eb95d6828 100644
--- a/tests/results/test/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test/16_6exists_redefine_family.gitlab.md
@@ -1,4 +1,4 @@
- new description
+new description
>>> [!note] Informations
**family1**
`basic`
@@ -9,9 +9,9 @@
|----------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family1.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
- a second family
+a second family
>>> [!note] Informations
**family2**
`basic`
@@ -22,5 +22,5 @@
|----------------------------------------------------------------------------------------------------------------------------------|--------------------|
| **family2.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
-
+
diff --git a/tests/results/test/20_0family_append.gitlab.md b/tests/results/test/20_0family_append.gitlab.md
index 9a3e0e962..3eec8d4fb 100644
--- a/tests/results/test/20_0family_append.gitlab.md
+++ b/tests/results/test/20_0family_append.gitlab.md
@@ -1,4 +1,4 @@
- A family
+A family
>>> [!note] Informations
**family**
`basic`
@@ -10,5 +10,5 @@
| **family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. |
| **family.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable. |
-
+
diff --git a/tests/results/test/20_0multi_family.gitlab.md b/tests/results/test/20_0multi_family.gitlab.md
index 4e17a5443..00c160b9a 100644
--- a/tests/results/test/20_0multi_family.gitlab.md
+++ b/tests/results/test/20_0multi_family.gitlab.md
@@ -1,11 +1,11 @@
- a family
+a family
>>> [!note] Informations
**family**
`standard`
>>>
- a sub family
+a sub family
>>> [!note] Informations
**family.subfamily**
`standard`
@@ -16,7 +16,7 @@
|---------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
-
+
-
+
diff --git a/tests/results/test/20_0multi_family_basic.gitlab.md b/tests/results/test/20_0multi_family_basic.gitlab.md
index 43d2edd1c..6f9997759 100644
--- a/tests/results/test/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test/20_0multi_family_basic.gitlab.md
@@ -1,11 +1,11 @@
- a family
+a family
>>> [!note] Informations
**family**
`basic`
>>>
- a sub family
+a sub family
>>> [!note] Informations
**family.subfamily**
`basic`
@@ -16,7 +16,7 @@
|------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
-
+
diff --git a/tests/results/test/20_0multi_family_expert.gitlab.md b/tests/results/test/20_0multi_family_expert.gitlab.md
index f1f0ead1a..e74783c18 100644
--- a/tests/results/test/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test/20_0multi_family_expert.gitlab.md
@@ -1,11 +1,11 @@
- a family
+a family
>>> [!note] Informations
**family**
`advanced`
>>>
- a sub family
+a sub family
>>> [!note] Informations
**family.subfamily**
`advanced`
@@ -16,7 +16,7 @@
|---------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `advanced` | A variable. |
-
+
-
+
diff --git a/tests/results/test/20_0multi_family_order.gitlab.md b/tests/results/test/20_0multi_family_order.gitlab.md
index e0ece747f..75812bcdf 100644
--- a/tests/results/test/20_0multi_family_order.gitlab.md
+++ b/tests/results/test/20_0multi_family_order.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------|---------------|
| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
- a family
+a family
>>> [!note] Informations
**family**
`basic`
@@ -13,7 +13,7 @@
|---------------------------------------------------------------------------------------------------------------------------------|-------------------|
| **family.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
- a sub family
+a sub family
>>> [!note] Informations
**family.subfamily**
`basic`
@@ -24,11 +24,11 @@
|------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
| Variable | Description |
|---------------------------------------------------------------------------------------------------------------------------------|--------------------|
| **family.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
-
+
diff --git a/tests/results/test/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test/20_2family_looks_like_dynamic.gitlab.md
index 4a9471c0b..c20bb17f4 100644
--- a/tests/results/test/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test/20_2family_looks_like_dynamic.gitlab.md
@@ -1,4 +1,4 @@
- my_family
+my_family
>>> [!note] Informations
**my_family**
`standard`
@@ -10,5 +10,5 @@
| **my_family.dynamic**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Dynamic.
**Default**:
- val1
- val2 |
| **my_family.var**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: true |
-
+
diff --git a/tests/results/test/20_2family_looks_like_variable.gitlab.md b/tests/results/test/20_2family_looks_like_variable.gitlab.md
index 8c8dccea1..e3b21e70e 100644
--- a/tests/results/test/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test/20_2family_looks_like_variable.gitlab.md
@@ -1,4 +1,4 @@
- my_family
+my_family
>>> [!note] Informations
**my_family**
`standard`
@@ -9,5 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------|
| **my_family.default**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Default.
**Default**: true |
-
+
diff --git a/tests/results/test/20_9default_information_parent.gitlab.md b/tests/results/test/20_9default_information_parent.gitlab.md
index aff6657e3..328ac8e11 100644
--- a/tests/results/test/20_9default_information_parent.gitlab.md
+++ b/tests/results/test/20_9default_information_parent.gitlab.md
@@ -1,4 +1,4 @@
- family
+family
>>> [!note] Informations
**family**
`basic`
@@ -10,5 +10,5 @@
| **family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
| **family.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of the information "test_information" of the variable "family". |
-
+
diff --git a/tests/results/test/20_9family_absolute.gitlab.md b/tests/results/test/20_9family_absolute.gitlab.md
index f5aa92d33..20a81d85d 100644
--- a/tests/results/test/20_9family_absolute.gitlab.md
+++ b/tests/results/test/20_9family_absolute.gitlab.md
@@ -2,7 +2,7 @@
|---------------------------------------------------------------------------------------------------------------------|-----------------|
| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | First variable. |
- a family
+a family
>>> [!note] Informations
**family**
`basic`
@@ -13,7 +13,7 @@
|----------------------------------------------------------------------------------------------------------------------------|---------------------------------------------|
| **family.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Example**: string6 |
- a sub family
+a sub family
>>> [!note] Informations
**family.subfamily**
`standard`
@@ -24,11 +24,11 @@
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------|
| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Third variable.
**Default**:
- the value of the variable "var1".
- the value of the variable "family.var2". |
-
+
-
+
- a family
+a family
>>> [!note] Informations
**family2**
`standard`
@@ -40,7 +40,7 @@
| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "family.var2". |
| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Var3.
**Default**: string4
**Example**: string5 |
- a sub family
+a sub family
>>> [!note] Informations
**family2.subfamily**
`standard`
@@ -51,7 +51,7 @@
|------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Fourth variable.
**Default**:
- the value of the variable "var1".
- the value of the variable "family.var2".
- the value of the variable "family2.var3". |
-
+
-
+
diff --git a/tests/results/test/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test/24_0family_hidden_condition_sub_family.gitlab.md
index 32361e688..698e3834f 100644
--- a/tests/results/test/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test/24_0family_hidden_condition_sub_family.gitlab.md
@@ -2,14 +2,14 @@
|-----------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.
**Default**: no |
- possibly hidden family
+possibly hidden family
>>> [!note] Informations
**family**
`basic` *`hidden`*
**Hidden**: if condition is yes.
>>>
- family.subfamily
+family.subfamily
>>> [!note] Informations
**family.subfamily**
`basic`
@@ -20,7 +20,7 @@
|--------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.subfamily.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
-
+
diff --git a/tests/results/test/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 3b57fa23f..321812fa2 100644
--- a/tests/results/test/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -2,14 +2,14 @@
|------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.
**Default**: true |
- possibly hidden family
+possibly hidden family
>>> [!note] Informations
**family**
`standard` *`hidden`*
**Hidden**: when the variable "condition" has the value "true".
>>>
- a subfamily
+a subfamily
>>> [!note] Informations
**family.subfamily**
`standard`
@@ -20,7 +20,7 @@
|-----------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.subfamily.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
-
+
-
+
diff --git a/tests/results/test/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test/24_0family_hidden_param_condition_sub_family.gitlab.md
index d73302e9b..5064b7d97 100644
--- a/tests/results/test/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -2,14 +2,14 @@
|-----------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.
**Default**: no |
- possibly hidden family
+possibly hidden family
>>> [!note] Informations
**family**
`basic` *`hidden`*
**Hidden**: if condition is yes.
>>>
- a subfamily
+a subfamily
>>> [!note] Informations
**family.sub_family**
`basic`
@@ -20,7 +20,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.sub_family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
-
+
diff --git a/tests/results/test/24_7validators_variable_optional.gitlab.md b/tests/results/test/24_7validators_variable_optional.gitlab.md
index 8f21cf9be..9cd5cef9c 100644
--- a/tests/results/test/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test/24_7validators_variable_optional.gitlab.md
@@ -1,4 +1,4 @@
- a family
+a family
>>> [!note] Informations
**general**
`basic`
@@ -10,5 +10,5 @@
| **general.int**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first integer.
**Validators**:
- int and int2 must be different.
- int and int3 must be different.
**Example**: 5 |
| **general.int2**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second integer.
**Default**: 1 |
-
+
diff --git a/tests/results/test/40_0leadership.gitlab.md b/tests/results/test/40_0leadership.gitlab.md
index 2fd1005ec..d5e457a78 100644
--- a/tests/results/test/40_0leadership.gitlab.md
+++ b/tests/results/test/40_0leadership.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -13,5 +13,5 @@ This family contains lists of variable blocks.
| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | An other follower. |
-
+
diff --git a/tests/results/test/40_0leadership_diff_name.gitlab.md b/tests/results/test/40_0leadership_diff_name.gitlab.md
index f33826e02..be8cfe59c 100644
--- a/tests/results/test/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test/40_0leadership_diff_name.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -13,5 +13,5 @@ This family contains lists of variable blocks.
| **leadership.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
| **leadership.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | An other follower. |
-
+
diff --git a/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md
index a2ecc884d..570fdca2b 100644
--- a/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -13,5 +13,5 @@ This family contains lists of variable blocks.
| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: value |
| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second follower.
**Default**: returns follower1 value. |
-
+
diff --git a/tests/results/test/40_0leadership_follower_default_value.gitlab.md b/tests/results/test/40_0leadership_follower_default_value.gitlab.md
index 900080c81..af62cc926 100644
--- a/tests/results/test/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test/40_0leadership_follower_default_value.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -12,5 +12,5 @@ This family contains lists of variable blocks.
| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. |
| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower with default value.
**Default**: value |
-
+
diff --git a/tests/results/test/40_0leadership_leader_follower.gitlab.md b/tests/results/test/40_0leadership_leader_follower.gitlab.md
index 7e154f893..5e0a9cabf 100644
--- a/tests/results/test/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test/40_0leadership_leader_follower.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -12,5 +12,5 @@ This family contains lists of variable blocks.
| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 |
| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: the value of the variable "leadership.leader". |
-
+
diff --git a/tests/results/test/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test/40_0leadership_leader_not_multi.gitlab.md
index 41d6bc0c9..f3a0f16a1 100644
--- a/tests/results/test/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test/40_0leadership_leader_not_multi.gitlab.md
@@ -1,4 +1,4 @@
- general
+general
>>> [!note] Informations
**general**
`standard`
@@ -9,16 +9,16 @@
|------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
| **general.mode_conteneur_actif**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | No change.
**Default**: non |
-
+
- general1
+general1
>>> [!note] Informations
**general1**
`basic`
>>>
- general1.leader
+general1.leader
This family contains lists of variable blocks.
@@ -33,7 +33,7 @@ This family contains lists of variable blocks.
| **general1.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Follower1. |
| **general1.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Follower2. |
-
+
-
+
diff --git a/tests/results/test/40_0leadership_reduce.gitlab.md b/tests/results/test/40_0leadership_reduce.gitlab.md
index 33e0f06a0..2ebf38f14 100644
--- a/tests/results/test/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test/40_0leadership_reduce.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -12,5 +12,5 @@ This family contains lists of variable blocks.
| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value_1
- value_2
- value_3
**Examples**:
- val1
- val2 |
| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-
+
diff --git a/tests/results/test/40_1leadership_append_follower.gitlab.md b/tests/results/test/40_1leadership_append_follower.gitlab.md
index 5db0c5be6..536c3b8b3 100644
--- a/tests/results/test/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test/40_1leadership_append_follower.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -14,5 +14,5 @@ This family contains lists of variable blocks.
| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The follower2. |
| **leader.follower3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The follower3. |
-
+
diff --git a/tests/results/test/40_2leadership_calculation_index.gitlab.md b/tests/results/test/40_2leadership_calculation_index.gitlab.md
index a7b5a9825..347774e20 100644
--- a/tests/results/test/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test/40_2leadership_calculation_index.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -12,5 +12,5 @@ This family contains lists of variable blocks.
| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- a
- b
- c |
| **leader.follower1**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: the value of the index. |
-
+
diff --git a/tests/results/test/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test/40_2leadership_calculation_index_2.gitlab.md
index a7b5a9825..347774e20 100644
--- a/tests/results/test/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test/40_2leadership_calculation_index_2.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -12,5 +12,5 @@ This family contains lists of variable blocks.
| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- a
- b
- c |
| **leader.follower1**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: the value of the index. |
-
+
diff --git a/tests/results/test/40_6leadership_follower_multi.gitlab.md b/tests/results/test/40_6leadership_follower_multi.gitlab.md
index fd169975d..c25d80e97 100644
--- a/tests/results/test/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test/40_6leadership_follower_multi.gitlab.md
@@ -1,4 +1,4 @@
- A leadership
+A leadership
This family contains lists of variable blocks.
@@ -13,5 +13,5 @@ This family contains lists of variable blocks.
| **leadership.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `multiple` | The first follower. |
| **leadership.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | The second follower.
**Default**: value |
-
+
diff --git a/tests/results/test/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test/40_6leadership_follower_multi_no_mandatory.gitlab.md
index 17a8b4859..aa39f6b98 100644
--- a/tests/results/test/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,4 +1,4 @@
- A leadership
+A leadership
This family contains lists of variable blocks.
@@ -13,5 +13,5 @@ This family contains lists of variable blocks.
| **leadership.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `multiple` | The first follower. |
| **leadership.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | The second follower.
**Default**: value |
-
+
diff --git a/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md
index be1bba1ba..524a55fe0 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md
@@ -2,7 +2,7 @@
|-----------------------------------------------------------------------------------------------------------------------|---------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
- a family
+a family
>>> [!note] Informations
**fam1**
`standard`
@@ -13,5 +13,5 @@
|----------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------|
| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "var". |
-
+
diff --git a/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md
index 9a2f3b1d2..a3d5b1c1d 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,4 +1,4 @@
- first family
+first family
>>> [!note] Informations
**fam1**
`standard`
@@ -9,9 +9,9 @@
|----------------------------------------------------------------------------------------------------------------------------|---------------------------------|
| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-
+
- second family
+second family
>>> [!note] Informations
**fam2**
`standard`
@@ -22,5 +22,5 @@
|----------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|
| **fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "fam1.var". |
-
+
diff --git a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 1c68e6861..f4e4e9c12 100644
--- a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -12,5 +12,5 @@ This family contains lists of variable blocks.
| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 |
| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A follower.
**Default**: the value of the variable "leadership.leader". |
-
+
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower-first.gitlab.md
index bba7ec15d..100535ec5 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -13,7 +13,7 @@ This family contains lists of variable blocks.
| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-
+
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md
index bba7ec15d..100535ec5 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -13,7 +13,7 @@ This family contains lists of variable blocks.
| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-
+
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 1db965899..84b866ae7 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,4 +1,4 @@
- leader
+leader
This family contains lists of variable blocks.
@@ -12,7 +12,7 @@ This family contains lists of variable blocks.
| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Leader.
**Default**:
- a
- b |
| **leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | Follower. |
-
+
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------|
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md
index 7981fbd42..56be5ab03 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -13,7 +13,7 @@ This family contains lists of variable blocks.
| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-
+
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-leader-first.gitlab.md
index 66c2c8e11..f55d8d216 100644
--- a/tests/results/test/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -13,7 +13,7 @@ This family contains lists of variable blocks.
| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-
+
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md
index 66c2c8e11..f55d8d216 100644
--- a/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -13,7 +13,7 @@ This family contains lists of variable blocks.
| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-
+
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md
index 507be822e..6c2b1bb21 100644
--- a/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -13,7 +13,7 @@ This family contains lists of variable blocks.
| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-
+
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|
diff --git a/tests/results/test/40_9leadership-calculation-variable.gitlab.md b/tests/results/test/40_9leadership-calculation-variable.gitlab.md
index 764ae6065..6363d87f6 100644
--- a/tests/results/test/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-variable.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|
| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A calculated variable.
**Default**:
- value1
- value2 |
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -17,5 +17,5 @@ This family contains lists of variable blocks.
| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-
+
diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test/40_9leadership-calculation-variable_leader_follower.gitlab.md
index c24092199..1eb83f426 100644
--- a/tests/results/test/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -12,9 +12,9 @@ This family contains lists of variable blocks.
| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 |
| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-
+
- a second leadership
+a second leadership
This family contains lists of variable blocks.
@@ -28,5 +28,5 @@ This family contains lists of variable blocks.
| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**: the value of the variable "leadership_1.follower". |
| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
-
+
diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index baf189d7e..0877a682e 100644
--- a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -12,9 +12,9 @@ This family contains lists of variable blocks.
| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 |
| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-
+
- a second leadership
+a second leadership
This family contains lists of variable blocks.
@@ -28,5 +28,5 @@ This family contains lists of variable blocks.
| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 |
| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A follower.
**Default**: the value of the variable "leadership_1.leader". |
-
+
diff --git a/tests/results/test/41_0choice_leader.gitlab.md b/tests/results/test/41_0choice_leader.gitlab.md
index db5f06a24..179d0e0ff 100644
--- a/tests/results/test/41_0choice_leader.gitlab.md
+++ b/tests/results/test/41_0choice_leader.gitlab.md
@@ -1,4 +1,4 @@
- The leadership
+The leadership
This family contains lists of variable blocks.
@@ -12,5 +12,5 @@ This family contains lists of variable blocks.
| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | The leader. |
| **leader.follower1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower.
**Choices**:
- a
- b
- c |
-
+
diff --git a/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md
index 559cb1b02..b93071e51 100644
--- a/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -12,5 +12,5 @@ This family contains lists of variable blocks.
| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Aleader.
**Default**:
- a
- b |
| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A follower.
**Default**: value
**Disabled**: depends on a calculation. |
-
+
diff --git a/tests/results/test/44_4leadership_mandatory.gitlab.md b/tests/results/test/44_4leadership_mandatory.gitlab.md
index a0a4812be..270e64f70 100644
--- a/tests/results/test/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test/44_4leadership_mandatory.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -12,5 +12,5 @@ This family contains lists of variable blocks.
| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. |
| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A follower. |
-
+
diff --git a/tests/results/test/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test/44_4leadership_mandatory_follower.gitlab.md
index 7f7fbe5d5..9365d936e 100644
--- a/tests/results/test/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test/44_4leadership_mandatory_follower.gitlab.md
@@ -1,4 +1,4 @@
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -12,5 +12,5 @@ This family contains lists of variable blocks.
| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. |
| **leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-
+
diff --git a/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md
index 72541e3fb..54bb8ea12 100644
--- a/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -2,7 +2,7 @@
|-----------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: no |
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -16,5 +16,5 @@ This family contains lists of variable blocks.
| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. |
| **leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-
+
diff --git a/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md
index 0c5f08be5..3fabc3c14 100644
--- a/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -2,7 +2,7 @@
|-----------------------------------------------------------------------------------------------------------------------------|-----------------------------------|
| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -16,5 +16,5 @@ This family contains lists of variable blocks.
| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. |
| **leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A follower.
**Disabled**: if condition is yes. |
-
+
diff --git a/tests/results/test/60_0family_dynamic.gitlab.md b/tests/results/test/60_0family_dynamic.gitlab.md
index 3214a59b0..33e160d62 100644
--- a/tests/results/test/60_0family_dynamic.gitlab.md
+++ b/tests/results/test/60_0family_dynamic.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
diff --git a/tests/results/test/60_0family_dynamic_1_1.gitlab.md b/tests/results/test/60_0family_dynamic_1_1.gitlab.md
index 30e0f2c33..66991bceb 100644
--- a/tests/results/test/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_1_1.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **dyn*val1*.vardyn**
**dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
diff --git a/tests/results/test/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test/60_0family_dynamic_1_1_empty.gitlab.md
index ea0e879d4..6ee06e6f8 100644
--- a/tests/results/test/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_1_1_empty.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **dyn*val1*.vardyn**
**dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
diff --git a/tests/results/test/60_0family_dynamic_empty.gitlab.md b/tests/results/test/60_0family_dynamic_empty.gitlab.md
index 2e6867a80..5f0fd13d1 100644
--- a/tests/results/test/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_empty.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------|--------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable. |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **dyn*example*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md
index 1f4038bbf..8686a7c19 100644
--- a/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val.1
- val.2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -16,5 +16,5 @@ This family builds families dynamically.
| **dyn*val_1*.var1**
**dyn*val_2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier. |
| **dyn*val_1*.var2**
**dyn*val_2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: depends on a calculation. |
-
+
diff --git a/tests/results/test/60_0family_dynamic_no_description.gitlab.md b/tests/results/test/60_0family_dynamic_no_description.gitlab.md
index 6e8eb4995..2e4018425 100644
--- a/tests/results/test/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_no_description.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var. |
-
+
diff --git a/tests/results/test/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test/60_0family_dynamic_no_description_empty.gitlab.md
index 5b4a89796..69ee05c6f 100644
--- a/tests/results/test/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_no_description_empty.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var. |
-
+
diff --git a/tests/results/test/60_0family_dynamic_static.gitlab.md b/tests/results/test/60_0family_dynamic_static.gitlab.md
index 19697c870..7c91e2cd8 100644
--- a/tests/results/test/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_static.gitlab.md
@@ -1,4 +1,4 @@
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -11,5 +11,5 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable inside a dynamic family. |
-
+
diff --git a/tests/results/test/60_0family_dynamic_test.gitlab.md b/tests/results/test/60_0family_dynamic_test.gitlab.md
index a56c62a85..101f0e20b 100644
--- a/tests/results/test/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_test.gitlab.md
@@ -2,7 +2,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
diff --git a/tests/results/test/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test/60_0family_dynamic_upper_char.gitlab.md
index 3f1c5018b..9d74b58ae 100644
--- a/tests/results/test/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_upper_char.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- Val1
- VAL2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
diff --git a/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md
index 0003cec0d..c420029d2 100644
--- a/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md
@@ -2,7 +2,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------|--------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A suffix variable. |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
| **dyn*example*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: val |
-
+
diff --git a/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md
index 1240c07b2..4a8db8d10 100644
--- a/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,4 +1,4 @@
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -11,5 +11,5 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
| **dyn*a*.var**
**dyn*b*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: val |
-
+
diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md
index 3716815e5..2cd5bd15e 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable with suffix *val1*.
A dynamic variable with suffix *val2*.
**Default**: a value |
-
+
diff --git a/tests/results/test/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test/60_0family_dynamic_variable_suffix_empty.gitlab.md
index dd24337fa..dde58353d 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -2,7 +2,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable with suffix *val1*.
A dynamic variable with suffix *val2*.
**Default**: a value |
-
+
diff --git a/tests/results/test/60_0family_mode.gitlab.md b/tests/results/test/60_0family_mode.gitlab.md
index ebcb4b7dc..92ef7d3c4 100644
--- a/tests/results/test/60_0family_mode.gitlab.md
+++ b/tests/results/test/60_0family_mode.gitlab.md
@@ -1,4 +1,4 @@
- a family
+a family
>>> [!note] Informations
**family**
`basic`
@@ -9,5 +9,5 @@
|---------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Default**: non |
-
+
diff --git a/tests/results/test/60_1family_dynamic_jinja.gitlab.md b/tests/results/test/60_1family_dynamic_jinja.gitlab.md
index b1fab202a..867c27531 100644
--- a/tests/results/test/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test/60_1family_dynamic_jinja.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
| **dyn*1*.var**
**dyn*2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val |
-
+
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 85d301a99..b1d231580 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -2,7 +2,7 @@
|--------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -11,7 +11,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "var1".
>>>
- a family
+a family
>>> [!note] Informations
**dyn*val1*.family**
**dyn*val2*.family**
`basic`
@@ -22,9 +22,9 @@ This family builds families dynamically.
|------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------|
| **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. |
-
+
-
+
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 1257ea165..21fb9e3cc 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A identifier variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -11,7 +11,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "var".
>>>
- a family inside dynamic family
+a family inside dynamic family
>>> [!note] Informations
**dyn*val1*.family**
**dyn*val2*.family**
`standard`
@@ -22,9 +22,9 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
| **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier. |
-
+
-
+
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------|
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 1966be1b9..1fc8e6c9e 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A identifier variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -11,7 +11,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "var".
>>>
- a family inside dynamic family
+a family inside dynamic family
>>> [!note] Informations
**dyn*val1*.family**
**dyn*val2*.family**
`standard`
@@ -22,9 +22,9 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
| **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier. |
-
+
-
+
| Variable | Description |
|------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------|
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 76d58d8db..d9fb3b144 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -2,7 +2,7 @@
|--------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -11,7 +11,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "var1".
>>>
- a family
+a family
>>> [!note] Informations
**dyn*val1*.family**
**dyn*val2*.family**
`basic`
@@ -22,9 +22,9 @@ This family builds families dynamically.
|------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------|
| **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. |
-
+
-
+
| Variable | Description |
|------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
diff --git a/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md
index 1e7c03978..fa782d56e 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md
@@ -2,7 +2,7 @@
|--------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------|
| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffx variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -15,7 +15,7 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val |
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
diff --git a/tests/results/test/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test/60_2family_dynamic_outside_calc_empty.gitlab.md
index 0cdf47f39..fa8fdf7df 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -2,7 +2,7 @@
|--------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffx variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -15,7 +15,7 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val |
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md
index d29d1b631..eb5cd9e8c 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Suffix has value.
**Default**: the value of the identifier. |
-
+
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index d6a699d15..baf7c8e45 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Suffix has value.
**Default**: the value of the identifier. |
-
+
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix_param.gitlab.md
index 7a90588de..2abebc03a 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A identifier variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: from suffix. |
-
+
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index d905ae39e..105303f80 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A identifier variable.
**Examples**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: from suffix. |
-
+
diff --git a/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md
index e72a9f9cf..601f71897 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md
@@ -2,7 +2,7 @@
|--------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- dyn*val1* or dyn*val2*
+dyn*val1* or dyn*val2*
This family builds families dynamically.
@@ -15,7 +15,7 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------|
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test/60_5family_dynamic_calc_variable_empty.gitlab.md
index 27e6588e1..8f41066fd 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -2,7 +2,7 @@
|--------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- dyn*val1* or dyn*val2*
+dyn*val1* or dyn*val2*
This family builds families dynamically.
@@ -15,7 +15,7 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
diff --git a/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md
index d569ccd8a..0774f335d 100644
--- a/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,4 +1,4 @@
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -11,7 +11,7 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
- a family
+a family
>>> [!note] Informations
**dyn*val1*.family**
**dyn*val2*.family**
`standard`
@@ -22,7 +22,7 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------|
| **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A new variable. |
-
+
-
+
diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 31985b58a..cf879ab1b 100644
--- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -15,7 +15,7 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
| **dyn_*val1*.var**
**dyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: the value of the identifier. |
-
+
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------|
diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index 9930cb0be..2cd80d015 100644
--- a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | Asuffix variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -15,7 +15,7 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
| **dyn_*val1*.var**
**dyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: the value of the identifier. |
-
+
| Variable | Description |
|------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------|
diff --git a/tests/results/test/60_6family_dynamic_leadership.gitlab.md b/tests/results/test/60_6family_dynamic_leadership.gitlab.md
index ed9af4adc..14a62bbfc 100644
--- a/tests/results/test/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test/60_6family_dynamic_leadership.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -11,7 +11,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "var".
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -26,7 +26,7 @@ This family contains lists of variable blocks.
| **dyn*val1*.leadership.follower1**
**dyn*val2*.leadership.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A follower1. |
| **dyn*val1*.leadership.follower2**
**dyn*val2*.leadership.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A follower2. |
-
+
-
+
diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md
index 44976c0e1..b9fb8469b 100644
--- a/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md
@@ -2,7 +2,7 @@
|-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -11,7 +11,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "var".
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -26,7 +26,7 @@ This family contains lists of variable blocks.
| **dyn*val1*.leadership.follower1**
**dyn*val2*.leadership.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A follower1. |
| **dyn*val1*.leadership.follower2**
**dyn*val2*.leadership.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A follower2. |
-
+
-
+
diff --git a/tests/results/test/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test/60_9family_dynamic_calc_both.gitlab.md
index 49b49592e..e548d0a00 100644
--- a/tests/results/test/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test/60_9family_dynamic_calc_both.gitlab.md
@@ -2,7 +2,7 @@
|-----------------------------------------------------------------------------------------------------------------------|------------------------------------------|
| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable.
**Default**: val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -15,5 +15,5 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **dyn*val1*.vardyn**
**dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
diff --git a/tests/results/test/68_0family_leadership_mode.gitlab.md b/tests/results/test/68_0family_leadership_mode.gitlab.md
index 92b8766da..4ec421f3b 100644
--- a/tests/results/test/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test/68_0family_leadership_mode.gitlab.md
@@ -1,4 +1,4 @@
- A leadership
+A leadership
This family contains lists of variable blocks.
@@ -13,5 +13,5 @@ This family contains lists of variable blocks.
| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A follower1. |
| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower2. |
-
+
diff --git a/tests/results/test/warnings_04_5disabled_calculation_variable10 b/tests/results/test/warnings_04_5disabled_calculation_variable10
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test/warnings_04_5disabled_calculation_variable10
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test/warnings_04_5disabled_calculation_variable5 b/tests/results/test/warnings_04_5disabled_calculation_variable5
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test/warnings_04_5disabled_calculation_variable5
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test/warnings_04_5disabled_calculation_variable6 b/tests/results/test/warnings_04_5disabled_calculation_variable6
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test/warnings_04_5disabled_calculation_variable6
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test/warnings_04_5disabled_calculation_variable7 b/tests/results/test/warnings_04_5disabled_calculation_variable7
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test/warnings_04_5disabled_calculation_variable7
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test/warnings_04_5disabled_calculation_variable8 b/tests/results/test/warnings_04_5disabled_calculation_variable8
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test/warnings_04_5disabled_calculation_variable8
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test/warnings_04_5disabled_calculation_variable9 b/tests/results/test/warnings_04_5disabled_calculation_variable9
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test/warnings_04_5disabled_calculation_variable9
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_examples/04_5disabled_calculation_variable10.md b/tests/results/test_examples/04_5disabled_calculation_variable10.md
new file mode 100644
index 000000000..915194deb
--- /dev/null
+++ b/tests/results/test_examples/04_5disabled_calculation_variable10.md
@@ -0,0 +1,13 @@
+# Example with mandatory variables not filled in
+
+```yaml
+---
+variable: example
+```
+# Example with all variables modifiable
+
+```yaml
+---
+condition: true
+variable: example
+```
diff --git a/tests/results/test_examples/04_5disabled_calculation_variable5.md b/tests/results/test_examples/04_5disabled_calculation_variable5.md
new file mode 100644
index 000000000..5f24aaeb3
--- /dev/null
+++ b/tests/results/test_examples/04_5disabled_calculation_variable5.md
@@ -0,0 +1,12 @@
+# Example with mandatory variables not filled in
+
+```yaml
+---
+variable: example
+```
+# Example with all variables modifiable
+
+```yaml
+---
+variable: example
+```
diff --git a/tests/results/test_examples/04_5disabled_calculation_variable6.md b/tests/results/test_examples/04_5disabled_calculation_variable6.md
new file mode 100644
index 000000000..5f24aaeb3
--- /dev/null
+++ b/tests/results/test_examples/04_5disabled_calculation_variable6.md
@@ -0,0 +1,12 @@
+# Example with mandatory variables not filled in
+
+```yaml
+---
+variable: example
+```
+# Example with all variables modifiable
+
+```yaml
+---
+variable: example
+```
diff --git a/tests/results/test_examples/04_5disabled_calculation_variable7.md b/tests/results/test_examples/04_5disabled_calculation_variable7.md
new file mode 100644
index 000000000..dcfa063ee
--- /dev/null
+++ b/tests/results/test_examples/04_5disabled_calculation_variable7.md
@@ -0,0 +1,13 @@
+# Example with mandatory variables not filled in
+
+```yaml
+---
+variable: example
+```
+# Example with all variables modifiable
+
+```yaml
+---
+condition: false
+variable: example
+```
diff --git a/tests/results/test_examples/04_5disabled_calculation_variable8.md b/tests/results/test_examples/04_5disabled_calculation_variable8.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test_examples/04_5disabled_calculation_variable9.md b/tests/results/test_examples/04_5disabled_calculation_variable9.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test_examples/warnings_04_5disabled_calculation_variable10 b/tests/results/test_examples/warnings_04_5disabled_calculation_variable10
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_examples/warnings_04_5disabled_calculation_variable10
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_examples/warnings_04_5disabled_calculation_variable5 b/tests/results/test_examples/warnings_04_5disabled_calculation_variable5
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_examples/warnings_04_5disabled_calculation_variable5
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_examples/warnings_04_5disabled_calculation_variable6 b/tests/results/test_examples/warnings_04_5disabled_calculation_variable6
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_examples/warnings_04_5disabled_calculation_variable6
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_examples/warnings_04_5disabled_calculation_variable7 b/tests/results/test_examples/warnings_04_5disabled_calculation_variable7
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_examples/warnings_04_5disabled_calculation_variable7
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_examples/warnings_04_5disabled_calculation_variable8 b/tests/results/test_examples/warnings_04_5disabled_calculation_variable8
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_examples/warnings_04_5disabled_calculation_variable8
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_examples/warnings_04_5disabled_calculation_variable9 b/tests/results/test_examples/warnings_04_5disabled_calculation_variable9
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_examples/warnings_04_5disabled_calculation_variable9
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace/00_0version_underscore.gitlab.md b/tests/results/test_namespace/00_0version_underscore.gitlab.md
index 9d62577a9..9040afba9 100644
--- a/tests/results/test_namespace/00_0version_underscore.gitlab.md
+++ b/tests/results/test_namespace/00_0version_underscore.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,5 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.version**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
diff --git a/tests/results/test_namespace/00_1empty_variable.gitlab.md b/tests/results/test_namespace/00_1empty_variable.gitlab.md
index 6de2ced34..bbf9dbb80 100644
--- a/tests/results/test_namespace/00_1empty_variable.gitlab.md
+++ b/tests/results/test_namespace/00_1empty_variable.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,5 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.empty**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Empty. |
-
+
diff --git a/tests/results/test_namespace/00_2default_calculated.gitlab.md b/tests/results/test_namespace/00_2default_calculated.gitlab.md
index f65fd6f0e..3cfae8110 100644
--- a/tests/results/test_namespace/00_2default_calculated.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Default**: the value of var1. |
-
+
diff --git a/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md
index 51dfb915e..3dc0290a3 100644
--- a/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A first variable.
**Default**:
- no
- yes
- maybe |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Default**: the value of _.var1. |
-
+
diff --git a/tests/results/test_namespace/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace/00_2default_calculated_params_permissive.gitlab.md
index b3623a69b..d213fc88d 100644
--- a/tests/results/test_namespace/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated_params_permissive.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: depends on a calculation. |
-
+
diff --git a/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md
index ea4ae77a9..433ce47fa 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first variable.
**Validator**: the domain name can be an IP |
| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Default**: the value of the variable "rougail.var1". |
-
+
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace/00_2default_calculated_variable_description.gitlab.md
index 6d6d7efe8..67193328e 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated_variable_description.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: value of a variable!. |
-
+
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.gitlab.md
index 4f53a10a1..356fdbdd9 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -14,5 +14,5 @@ a
variable!. |
| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. |
-
+
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace/00_2default_calculated_variable_transitive.gitlab.md
index d88d78144..410cd298b 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first variable.
**Validator**: the domain name can be an IP |
| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Validator**: the domain name can be an IP
**Default**: the value of the variable "rougail.var1". |
-
+
diff --git a/tests/results/test_namespace/00_4load_subfolder.gitlab.md b/tests/results/test_namespace/00_4load_subfolder.gitlab.md
index c1db24801..54eedb038 100644
--- a/tests/results/test_namespace/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_namespace/00_4load_subfolder.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
diff --git a/tests/results/test_namespace/00_5load_notype.gitlab.md b/tests/results/test_namespace/00_5load_notype.gitlab.md
index 22e1270d8..b897b5253 100644
--- a/tests/results/test_namespace/00_5load_notype.gitlab.md
+++ b/tests/results/test_namespace/00_5load_notype.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **rougail.without_type**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: non |
-
+
diff --git a/tests/results/test_namespace/00_6boolean.gitlab.md b/tests/results/test_namespace/00_6boolean.gitlab.md
index a0cba659b..a85f9f8e1 100644
--- a/tests/results/test_namespace/00_6boolean.gitlab.md
+++ b/tests/results/test_namespace/00_6boolean.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -14,5 +14,5 @@
| **rougail.var5**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.
**Default**: false |
| **rougail.var6**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.
**Default**: false |
-
+
diff --git a/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md
index 5a761a072..301559a35 100644
--- a/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------|-----------------------------------|
| **rougail.variable**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: true |
-
+
diff --git a/tests/results/test_namespace/00_6choice.gitlab.md b/tests/results/test_namespace/00_6choice.gitlab.md
index b8285be00..51341c6d2 100644
--- a/tests/results/test_namespace/00_6choice.gitlab.md
+++ b/tests/results/test_namespace/00_6choice.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -14,5 +14,5 @@
| **rougail.var5**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.
**Choices**:
- a **← (default)**
- b
- c |
| **rougail.var6**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.
**Choices**:
- 1 **← (default)**
- 2
- 3 |
-
+
diff --git a/tests/results/test_namespace/00_6choice_calculation.gitlab.md b/tests/results/test_namespace/00_6choice_calculation.gitlab.md
index e51edb082..11d855d03 100644
--- a/tests/results/test_namespace/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_namespace/00_6choice_calculation.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|
| **rougail.var**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**: choices is 0 to 9.
**Default**: 9 |
-
+
diff --git a/tests/results/test_namespace/00_6choice_link.gitlab.md b/tests/results/test_namespace/00_6choice_link.gitlab.md
index 4ff482b3b..c4ac931cd 100644
--- a/tests/results/test_namespace/00_6choice_link.gitlab.md
+++ b/tests/results/test_namespace/00_6choice_link.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
- a
- b
- c |
| **rougail.var2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.
**Choices**:
- a
- b
- c
**Default**: the value of the variable "rougail.var1". |
-
+
diff --git a/tests/results/test_namespace/00_6choice_variable.gitlab.md b/tests/results/test_namespace/00_6choice_variable.gitlab.md
index c903c927b..8fa85f207 100644
--- a/tests/results/test_namespace/00_6choice_variable.gitlab.md
+++ b/tests/results/test_namespace/00_6choice_variable.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Default**:
- a
- b
- c |
| **rougail.var2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Choices**: the value of the variable "rougail.var1".
**Default**: a |
-
+
diff --git a/tests/results/test_namespace/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace/00_6choice_variable_link.gitlab.md
index 5617fc2c5..4a9ab089d 100644
--- a/tests/results/test_namespace/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_namespace/00_6choice_variable_link.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -11,5 +11,5 @@
| **rougail.var2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Choices**: the value of the variable "rougail.var1".
**Default**: a |
| **rougail.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "rougail.var1".
**Default**: the value of the variable "rougail.var2". |
-
+
diff --git a/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md
index 018602538..1abf6cf84 100644
--- a/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,7 +10,7 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Default**:
- a
- b
- c |
| **rougail.var2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Choices**: the value of the variable "rougail.var1".
**Default**: a |
- rougail.family
+rougail.family
>>> [!note] Informations
**rougail.family**
`standard`
@@ -21,7 +21,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------|
| **rougail.family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "rougail.family.var1".
**Default**: the value of the variable "rougail.var2". |
-
+
-
+
diff --git a/tests/results/test_namespace/00_6custom.gitlab.md b/tests/results/test_namespace/00_6custom.gitlab.md
index b13f73cbb..ab0eb8a35 100644
--- a/tests/results/test_namespace/00_6custom.gitlab.md
+++ b/tests/results/test_namespace/00_6custom.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.custom1**
[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. |
| **rougail.custom2**
[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The seconf variable.
**Default**: value |
-
+
diff --git a/tests/results/test_namespace/00_6domainname.gitlab.md b/tests/results/test_namespace/00_6domainname.gitlab.md
index d7b7d903c..255a14909 100644
--- a/tests/results/test_namespace/00_6domainname.gitlab.md
+++ b/tests/results/test_namespace/00_6domainname.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------|
| **rougail.variable**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A domain name variable.
**Default**: my.domain.name |
-
+
diff --git a/tests/results/test_namespace/00_6domainname_params.gitlab.md b/tests/results/test_namespace/00_6domainname_params.gitlab.md
index 5bf5acadb..b12c2272d 100644
--- a/tests/results/test_namespace/00_6domainname_params.gitlab.md
+++ b/tests/results/test_namespace/00_6domainname_params.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------|
| **rougail.variable**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A domain name variable.
**Validator**: the domain name can be an IP
**Default**: my.domain.name |
-
+
diff --git a/tests/results/test_namespace/00_6float.gitlab.md b/tests/results/test_namespace/00_6float.gitlab.md
index 3514d1d2f..fe6682cac 100644
--- a/tests/results/test_namespace/00_6float.gitlab.md
+++ b/tests/results/test_namespace/00_6float.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -14,5 +14,5 @@
| **rougail.var5**
[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.
**Default**: 10.1 |
| **rougail.var6**
[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.
**Default**: 10.1 |
-
+
diff --git a/tests/results/test_namespace/00_6integer.gitlab.md b/tests/results/test_namespace/00_6integer.gitlab.md
index a65525dab..03d36b272 100644
--- a/tests/results/test_namespace/00_6integer.gitlab.md
+++ b/tests/results/test_namespace/00_6integer.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -14,5 +14,5 @@
| **rougail.var5**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.
**Default**: 10 |
| **rougail.var6**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.
**Default**: 10 |
-
+
diff --git a/tests/results/test_namespace/00_6ip.gitlab.md b/tests/results/test_namespace/00_6ip.gitlab.md
index 6e51a4c4c..99cd1b437 100644
--- a/tests/results/test_namespace/00_6ip.gitlab.md
+++ b/tests/results/test_namespace/00_6ip.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -11,5 +11,5 @@
| **rougail.var2**
[`IP`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP in CIDR format.
**Validators**:
- IP must be in CIDR format
- reserved IP are allowed
**Default**: 1.1.1.1/24
**Example**: 192.168.0.128/25 |
| **rougail.var3**
[`cidr`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP in CIDR format with obsolete CIDR type.
**Default**: 1.1.1.1/24 |
-
+
diff --git a/tests/results/test_namespace/00_6network.gitlab.md b/tests/results/test_namespace/00_6network.gitlab.md
index 73f5b5c2e..d61c5e6f0 100644
--- a/tests/results/test_namespace/00_6network.gitlab.md
+++ b/tests/results/test_namespace/00_6network.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -11,5 +11,5 @@
| **rougail.var2**
[`network`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network in CIDR format.
**Validator**: network must be in CIDR format
**Default**: 1.1.1.0/24 |
| **rougail.var3**
[`network_cidr`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network in CIDR format with obsolete CIDR type.
**Default**: 1.1.1.0/24 |
-
+
diff --git a/tests/results/test_namespace/00_6number.gitlab.md b/tests/results/test_namespace/00_6number.gitlab.md
index a65525dab..03d36b272 100644
--- a/tests/results/test_namespace/00_6number.gitlab.md
+++ b/tests/results/test_namespace/00_6number.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -14,5 +14,5 @@
| **rougail.var5**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.
**Default**: 10 |
| **rougail.var6**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.
**Default**: 10 |
-
+
diff --git a/tests/results/test_namespace/00_6port.gitlab.md b/tests/results/test_namespace/00_6port.gitlab.md
index 6622f9401..cbadde283 100644
--- a/tests/results/test_namespace/00_6port.gitlab.md
+++ b/tests/results/test_namespace/00_6port.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -11,5 +11,5 @@
| **rougail.variable2**
[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with default value.
**Validators**:
- well-known ports (1 to 1023) are allowed
- registred ports (1024 to 49151) are allowed
- private ports (greater than 49152) are allowed
**Default**: 8080 |
| **rougail.variable3**
[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with integer default value.
**Validators**:
- well-known ports (1 to 1023) are allowed
- registred ports (1024 to 49151) are allowed
- private ports (greater than 49152) are allowed
**Default**: 8080 |
-
+
diff --git a/tests/results/test_namespace/00_6regexp.gitlab.md b/tests/results/test_namespace/00_6regexp.gitlab.md
index 7e382707b..7afb62633 100644
--- a/tests/results/test_namespace/00_6regexp.gitlab.md
+++ b/tests/results/test_namespace/00_6regexp.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **rougail.var**
[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"
**Default**: #a1a1a1
**Examples**:
- #b1b1b1
- #b2b2b2 |
-
+
diff --git a/tests/results/test_namespace/00_6regexp_link.gitlab.md b/tests/results/test_namespace/00_6regexp_link.gitlab.md
index 790585d2a..6e92f209e 100644
--- a/tests/results/test_namespace/00_6regexp_link.gitlab.md
+++ b/tests/results/test_namespace/00_6regexp_link.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"
**Default**: #a1a1a1
**Examples**:
- #b1b1b1
- #b2b2b2 |
| **rougail.var2**
[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"
**Default**: the value of the variable "rougail.var1".
**Examples**:
- #b2b1b1
- #b3b2b2 |
-
+
diff --git a/tests/results/test_namespace/00_6secret.gitlab.md b/tests/results/test_namespace/00_6secret.gitlab.md
index a78c363a1..bb84409e2 100644
--- a/tests/results/test_namespace/00_6secret.gitlab.md
+++ b/tests/results/test_namespace/00_6secret.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.secret1**
[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. |
| **rougail.secret2**
[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.
**Default**: value |
-
+
diff --git a/tests/results/test_namespace/00_6secret_param.gitlab.md b/tests/results/test_namespace/00_6secret_param.gitlab.md
index 9fd817a68..933c8c796 100644
--- a/tests/results/test_namespace/00_6secret_param.gitlab.md
+++ b/tests/results/test_namespace/00_6secret_param.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -11,5 +11,5 @@
| **rougail.secret2**
[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.
**Validators**:
- maximum length for the secret is 10 characters
- forbidden characters: "$" and "^"
**Default**: value |
| **rougail.secret3**
[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The third variable.
**Validators**:
- maximum length for the secret is 10 characters
- forbidden characters: "$"
**Default**: value |
-
+
diff --git a/tests/results/test_namespace/00_6string.gitlab.md b/tests/results/test_namespace/00_6string.gitlab.md
index 1b217dd66..c4afd61fa 100644
--- a/tests/results/test_namespace/00_6string.gitlab.md
+++ b/tests/results/test_namespace/00_6string.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -16,5 +16,5 @@
| **rougail.var7**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The seventh variable.
**Default**: 8080 |
| **rougail.var8**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The height variable.
**Default**: true |
-
+
diff --git a/tests/results/test_namespace/00_7choice_quote.gitlab.md b/tests/results/test_namespace/00_7choice_quote.gitlab.md
index 1612eddcf..07851b4ea 100644
--- a/tests/results/test_namespace/00_7choice_quote.gitlab.md
+++ b/tests/results/test_namespace/00_7choice_quote.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|
| **rougail.var**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A choice.
**Choices**:
- quote' **← (default)**
- quote"
- quote"' |
-
+
diff --git a/tests/results/test_namespace/00_7help.gitlab.md b/tests/results/test_namespace/00_7help.gitlab.md
index f7ccd345c..f457ef44a 100644
--- a/tests/results/test_namespace/00_7help.gitlab.md
+++ b/tests/results/test_namespace/00_7help.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
Multi line
Help
With useful information. |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable.
Multi line
Help
With useful information. |
-
+
diff --git a/tests/results/test_namespace/00_7help_quote.gitlab.md b/tests/results/test_namespace/00_7help_quote.gitlab.md
index f2bf7dcb4..a3a33e593 100644
--- a/tests/results/test_namespace/00_7help_quote.gitlab.md
+++ b/tests/results/test_namespace/00_7help_quote.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
Message with '. |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable.
Message with ". |
-
+
diff --git a/tests/results/test_namespace/00_7help_sup.gitlab.md b/tests/results/test_namespace/00_7help_sup.gitlab.md
index d5eb892cf..d1e826966 100644
--- a/tests/results/test_namespace/00_7help_sup.gitlab.md
+++ b/tests/results/test_namespace/00_7help_sup.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first <variable>.
Multi line
<Help>
With useful information. |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second <variable>.
Multi line
<Help>
With useful information. |
-
+
diff --git a/tests/results/test_namespace/00_7value_doublequote.gitlab.md b/tests/results/test_namespace/00_7value_doublequote.gitlab.md
index ce684048d..ed53783ea 100644
--- a/tests/results/test_namespace/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_namespace/00_7value_doublequote.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: quote" |
-
+
diff --git a/tests/results/test_namespace/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace/00_7value_doublequote2.gitlab.md
index c5ee7925b..c4a39d8c5 100644
--- a/tests/results/test_namespace/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_namespace/00_7value_doublequote2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: quote'" |
-
+
diff --git a/tests/results/test_namespace/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace/00_7value_doublequote3.gitlab.md
index a77cd0a49..f64401a5a 100644
--- a/tests/results/test_namespace/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_namespace/00_7value_doublequote3.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: quote\"\' |
-
+
diff --git a/tests/results/test_namespace/00_7value_quote.gitlab.md b/tests/results/test_namespace/00_7value_quote.gitlab.md
index 7321acbf2..68514184a 100644
--- a/tests/results/test_namespace/00_7value_quote.gitlab.md
+++ b/tests/results/test_namespace/00_7value_quote.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: quote' |
-
+
diff --git a/tests/results/test_namespace/00_8calculation_information.gitlab.md b/tests/results/test_namespace/00_8calculation_information.gitlab.md
index bba56661d..a8c0de5de 100644
--- a/tests/results/test_namespace/00_8calculation_information.gitlab.md
+++ b/tests/results/test_namespace/00_8calculation_information.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get information test_information. |
-
+
diff --git a/tests/results/test_namespace/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace/00_8calculation_namespace.gitlab.md
index 3ae3ccd36..b62daa3f4 100644
--- a/tests/results/test_namespace/00_8calculation_namespace.gitlab.md
+++ b/tests/results/test_namespace/00_8calculation_namespace.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the namespace. |
-
+
diff --git a/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md
index c820f815f..5c9259863 100644
--- a/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md
+++ b/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: depends on a calculation. |
-
+
diff --git a/tests/results/test_namespace/00_8test.gitlab.md b/tests/results/test_namespace/00_8test.gitlab.md
index 81098aa7e..86aa9d4f9 100644
--- a/tests/results/test_namespace/00_8test.gitlab.md
+++ b/tests/results/test_namespace/00_8test.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -14,5 +14,5 @@
| **rougail.var5**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.
**Default**: true
**Example**: false |
| **rougail.var6**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The sixth variable.
**Examples**:
- test1
- test2 |
-
+
diff --git a/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md
index d91547429..77eb84fb7 100644
--- a/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.variable1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first variable.
**Choices**:
- val1
- val2 |
| **rougail.variable2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A second variable.
**Choices**:
- val1
- val2 |
-
+
diff --git a/tests/results/test_namespace/00_9choice_variables.gitlab.md b/tests/results/test_namespace/00_9choice_variables.gitlab.md
index c8e79ffb1..a3c123127 100644
--- a/tests/results/test_namespace/00_9choice_variables.gitlab.md
+++ b/tests/results/test_namespace/00_9choice_variables.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -11,5 +11,5 @@
| **rougail.source_variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.
**Default**: val2 |
| **rougail.my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
- the value of the variable "rougail.source_variable_1".
- the value of the variable "rougail.source_variable_2".
**Default**: val1 |
-
+
diff --git a/tests/results/test_namespace/00_9default_calculation.gitlab.md b/tests/results/test_namespace/00_9default_calculation.gitlab.md
index c36cbbd8c..914d1e0cf 100644
--- a/tests/results/test_namespace/00_9default_calculation.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: concat all parameters. |
-
+
diff --git a/tests/results/test_namespace/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace/00_9default_calculation_information.gitlab.md
index 4b3d84a5c..7ad405f3d 100644
--- a/tests/results/test_namespace/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_information.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: returns the information. |
-
+
diff --git a/tests/results/test_namespace/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace/00_9default_calculation_information_other_variable.gitlab.md
index 8f44d8b17..777e9dcf5 100644
--- a/tests/results/test_namespace/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: depends on a calculation. |
-
+
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace/00_9default_calculation_multi_optional.gitlab.md
index c5d1fc887..d6f8a98b1 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.
**Default**: val1 |
| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.
**Default**: the value of the variable "rougail.my_variable" if it is defined. |
-
+
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace/00_9default_calculation_multi_optional2.gitlab.md
index c5d1fc887..d6f8a98b1 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.
**Default**: val1 |
| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.
**Default**: the value of the variable "rougail.my_variable" if it is defined. |
-
+
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.gitlab.md
index c5d1fc887..d6f8a98b1 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.
**Default**: val1 |
| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.
**Default**: the value of the variable "rougail.my_variable" if it is defined. |
-
+
diff --git a/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md
index 2c297e80a..bf2fdcd55 100644
--- a/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------|
| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable. |
-
+
diff --git a/tests/results/test_namespace/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace/00_9default_calculation_optional_exists.gitlab.md
index 2377180a3..a0fbf0620 100644
--- a/tests/results/test_namespace/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_variable.
**Default**:
- val1
- val2 |
| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.
**Default**: the value of the variable "rougail.my_variable" if it is defined. |
-
+
diff --git a/tests/results/test_namespace/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace/00_9default_calculation_param_optional.gitlab.md
index 3a9e53c6c..1d29989e0 100644
--- a/tests/results/test_namespace/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_param_optional.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable.
**Default**: returns a value. |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
-
+
diff --git a/tests/results/test_namespace/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace/00_9default_information_other_variable.gitlab.md
index 48547f41b..3d13e6077 100644
--- a/tests/results/test_namespace/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace/00_9default_information_other_variable.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of the information "test_information" of the variable "rougail.var1". |
-
+
diff --git a/tests/results/test_namespace/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace/00_9default_information_other_variable2.gitlab.md
index 48547f41b..3d13e6077 100644
--- a/tests/results/test_namespace/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_namespace/00_9default_information_other_variable2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of the information "test_information" of the variable "rougail.var1". |
-
+
diff --git a/tests/results/test_namespace/00_9default_integer.gitlab.md b/tests/results/test_namespace/00_9default_integer.gitlab.md
index 545eeb98f..6b557e4c1 100644
--- a/tests/results/test_namespace/00_9default_integer.gitlab.md
+++ b/tests/results/test_namespace/00_9default_integer.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|
| **rougail.var**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**: choice for 0 to 9.
**Default**: 9 |
-
+
diff --git a/tests/results/test_namespace/00_9default_number.gitlab.md b/tests/results/test_namespace/00_9default_number.gitlab.md
index 545eeb98f..6b557e4c1 100644
--- a/tests/results/test_namespace/00_9default_number.gitlab.md
+++ b/tests/results/test_namespace/00_9default_number.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|
| **rougail.var**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**: choice for 0 to 9.
**Default**: 9 |
-
+
diff --git a/tests/results/test_namespace/00_9extra.gitlab.md b/tests/results/test_namespace/00_9extra.gitlab.md
index 9d073fde2..d738998e0 100644
--- a/tests/results/test_namespace/00_9extra.gitlab.md
+++ b/tests/results/test_namespace/00_9extra.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,9 +9,9 @@
|------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: rougail |
-
+
- extra
+extra
>>> [!note] Informations
**extra**
`standard`
@@ -22,5 +22,5 @@
|----------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------|
| **extra.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: return no. |
-
+
diff --git a/tests/results/test_namespace/00_9extra_calculation.gitlab.md b/tests/results/test_namespace/00_9extra_calculation.gitlab.md
index 0ac4d0ae2..24ee89381 100644
--- a/tests/results/test_namespace/00_9extra_calculation.gitlab.md
+++ b/tests/results/test_namespace/00_9extra_calculation.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,9 +9,9 @@
|------------------------------------------------------------------------------------------------------------------------------------|------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value |
-
+
- extra
+extra
>>> [!note] Informations
**extra**
`standard`
@@ -24,5 +24,5 @@
| **extra.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: copy the value of rougail.variable. |
| **extra.variable3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: copy the value of rougail.variable. |
-
+
diff --git a/tests/results/test_namespace/00_9extra_ouside.gitlab.md b/tests/results/test_namespace/00_9extra_ouside.gitlab.md
index 7ea09031f..dca273870 100644
--- a/tests/results/test_namespace/00_9extra_ouside.gitlab.md
+++ b/tests/results/test_namespace/00_9extra_ouside.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,9 +9,9 @@
|------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "extra.variable". |
-
+
- extra
+extra
>>> [!note] Informations
**extra**
`standard`
@@ -22,5 +22,5 @@
|----------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------|
| **extra.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value in extra |
-
+
diff --git a/tests/results/test_namespace/01_6boolean_multi.gitlab.md b/tests/results/test_namespace/01_6boolean_multi.gitlab.md
index ba4e8d2f5..e3d53b995 100644
--- a/tests/results/test_namespace/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_namespace/01_6boolean_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -16,5 +16,5 @@
| **rougail.var7**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The seventh variable.
**Default**: true |
| **rougail.var8**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The eighth variable.
**Default**: true |
-
+
diff --git a/tests/results/test_namespace/01_6custom_multi.gitlab.md b/tests/results/test_namespace/01_6custom_multi.gitlab.md
index aa737010d..dd4231d2d 100644
--- a/tests/results/test_namespace/01_6custom_multi.gitlab.md
+++ b/tests/results/test_namespace/01_6custom_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.custom1**
[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first custom variable. |
| **rougail.custom2**
[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second custom variable.
**Default**: value |
-
+
diff --git a/tests/results/test_namespace/01_6float_multi.gitlab.md b/tests/results/test_namespace/01_6float_multi.gitlab.md
index b35e23010..3a3db6997 100644
--- a/tests/results/test_namespace/01_6float_multi.gitlab.md
+++ b/tests/results/test_namespace/01_6float_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -16,5 +16,5 @@
| **rougail.var7**
[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The seventh variable.
**Default**: 0.0 |
| **rougail.var8**
[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The eighth variable.
**Default**: 0.0 |
-
+
diff --git a/tests/results/test_namespace/01_6integer_multi.gitlab.md b/tests/results/test_namespace/01_6integer_multi.gitlab.md
index 91b29aed8..35721bbaf 100644
--- a/tests/results/test_namespace/01_6integer_multi.gitlab.md
+++ b/tests/results/test_namespace/01_6integer_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -16,5 +16,5 @@
| **rougail.var7**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The seventh variable.
**Default**: 0 |
| **rougail.var8**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The eighth variable.
**Default**: 0 |
-
+
diff --git a/tests/results/test_namespace/01_6string_empty.gitlab.md b/tests/results/test_namespace/01_6string_empty.gitlab.md
index 900f46199..59681302d 100644
--- a/tests/results/test_namespace/01_6string_empty.gitlab.md
+++ b/tests/results/test_namespace/01_6string_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The second variable.
**Default**:
- value
- null |
-
+
diff --git a/tests/results/test_namespace/01_6string_multi.gitlab.md b/tests/results/test_namespace/01_6string_multi.gitlab.md
index 99497a224..2ce265e1b 100644
--- a/tests/results/test_namespace/01_6string_multi.gitlab.md
+++ b/tests/results/test_namespace/01_6string_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -16,5 +16,5 @@
| **rougail.var7**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The seventh variable.
**Default**: value |
| **rougail.var8**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The eighth variable.
**Default**: value |
-
+
diff --git a/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md
index 4cd1cd097..7045c03ca 100644
--- a/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: quote" |
-
+
diff --git a/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md
index 94d61c47c..68241b669 100644
--- a/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: quote'" |
-
+
diff --git a/tests/results/test_namespace/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace/01_7value_multi_quote.gitlab.md
index f84607a78..14d06b1d9 100644
--- a/tests/results/test_namespace/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_namespace/01_7value_multi_quote.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: quote' |
-
+
diff --git a/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md
index 69b429b0a..ca20d3390 100644
--- a/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: get information test_information. |
-
+
diff --git a/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md
index ba5dec553..56370501d 100644
--- a/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A first variable.
**Default**:
- a
- b
- c |
| **rougail.variable2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Choices**: the value of the variable "rougail.variable1". |
-
+
diff --git a/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md
index 6d78a53f7..f47985211 100644
--- a/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------|
| **rougail.variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
- a
- b
- c **← (default)** |
-
+
diff --git a/tests/results/test_namespace/04_0type_param.gitlab.md b/tests/results/test_namespace/04_0type_param.gitlab.md
index b34670db4..3d20ae222 100644
--- a/tests/results/test_namespace/04_0type_param.gitlab.md
+++ b/tests/results/test_namespace/04_0type_param.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
| **rougail.int**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A limited number.
**Validators**:
- the minimum value is 0
- the maximum value is 100
**Default**: 10 |
-
+
diff --git a/tests/results/test_namespace/04_0type_param_integer.gitlab.md b/tests/results/test_namespace/04_0type_param_integer.gitlab.md
index 1362fde1e..a4d4dd706 100644
--- a/tests/results/test_namespace/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_namespace/04_0type_param_integer.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
| **rougail.int**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A limited integer.
**Validators**:
- the minimum value is 0
- the maximum value is 100
**Default**: 10 |
-
+
diff --git a/tests/results/test_namespace/04_1auto_save.gitlab.md b/tests/results/test_namespace/04_1auto_save.gitlab.md
index 7e1d9402b..c65b6d2c2 100644
--- a/tests/results/test_namespace/04_1auto_save.gitlab.md
+++ b/tests/results/test_namespace/04_1auto_save.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,5 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `auto modified` | An auto save variable.
**Default**: no |
-
+
diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace/04_1auto_save_and_calculated.gitlab.md
index e04251d10..bb55cebc1 100644
--- a/tests/results/test_namespace/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_namespace/04_1auto_save_and_calculated.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `auto modified` | A second variable.
**Default**: the value of the variable "rougail.var1". |
-
+
diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.gitlab.md
index 7fac2c378..a9eae1450 100644
--- a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`hidden`* `auto modified` | A second variable.
**Default**: the value is always yes.
**Hidden**: only if the variable var1 has value "yes". |
-
+
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md
index 269c6977d..895044bca 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -11,5 +11,5 @@
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "rougail.var1" has the value "value". |
| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
-
+
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_2.gitlab.md
index 269c6977d..895044bca 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -11,5 +11,5 @@
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "rougail.var1" has the value "value". |
| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
-
+
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_3.gitlab.md
index 019bbd4e0..cac20a01a 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_3.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,5 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------|
| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
-
+
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_4.gitlab.md
index e7431bd92..c50e85fde 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_4.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
-
+
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_5.gitlab.md
index 523a23b28..2b2fef269 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_5.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A third variable.
**Disabled**: depends on an undocumented variable. |
-
+
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_6.gitlab.md
index 523a23b28..2b2fef269 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_6.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A third variable.
**Disabled**: depends on an undocumented variable. |
-
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation.gitlab.md
index b24df8edd..abced04de 100644
--- a/tests/results/test_namespace/04_5disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -11,5 +11,5 @@
| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A first variable.
**Disabled**: if condition is egal to "yes". |
| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: if condition is egal to "yes". |
-
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md
index 994eacf3e..22b7ee47e 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -11,5 +11,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A first variable.
**Default**: the value of condition.
**Disabled**: if condition is yes. |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A second variable.
**Default**: the value of condition.
**Disabled**: if condition is yes. |
-
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md
index f859db24b..542b0ad99 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -11,5 +11,5 @@
| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* `unique` `multiple` | A first variable.
**Disabled**: if condition is egal to "yes". |
| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* `unique` `multiple` | A second variable.
**Disabled**: if condition is egal to "yes". |
-
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md
index 4023c2b42..113e3c20b 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -11,5 +11,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A first variable.
**Hidden**: calculation from an unknown variable. |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: calculation from an condition variable. |
-
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_optional_default.gitlab.md
index 3b47416e6..802b4804c 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -12,5 +12,5 @@
| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "rougail.condition" is defined and has the value "true". |
| **rougail.var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.
**Hidden**: when the variable "rougail.condition" is defined and has the value "true". |
-
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md
index e24d0514a..585ee8ebe 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "rougail.condition" has the value "true". |
-
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable10.adoc
new file mode 100644
index 000000000..9d41c0999
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.adoc
@@ -0,0 +1,23 @@
+== Variables for "Rougail"
+
+**rougail**
+
+`basic`
+
+[cols="1a,1a"]
+|====
+| Variable | Description
+|
+
+**rougail.condition** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
+A condition. +
+**Default**: true
+|
+
+**rougail.variable** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` |
+A variable. +
+**Disabled**: when the variable "rougail.condition" has the value "true".
+|====
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md
new file mode 100644
index 000000000..868ae6c13
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md
@@ -0,0 +1,14 @@
+Rougail
+
+>>> [!note] Informations
+**rougail**
`basic`
+
+
+>>>
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "rougail.condition" has the value "true". |
+
+
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.json b/tests/results/test_namespace/04_5disabled_calculation_variable10.json
new file mode 100644
index 000000000..784c69459
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.json
@@ -0,0 +1,83 @@
+{
+ "rougail": {
+ "type": "namespace",
+ "informations": {
+ "paths": [
+ "rougail"
+ ],
+ "names": [
+ "rougail"
+ ],
+ "description": "Rougail",
+ "properties": [
+ {
+ "type": "mode",
+ "name": "basic"
+ }
+ ]
+ },
+ "children": {
+ "rougail.condition": {
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": true
+ },
+ "properties": [
+ {
+ "type": "type",
+ "name": "boolean"
+ },
+ {
+ "type": "mode",
+ "name": "standard"
+ },
+ {
+ "type": "property",
+ "name": "mandatory"
+ }
+ ],
+ "paths": [
+ "rougail.condition"
+ ],
+ "names": [
+ "condition"
+ ],
+ "descriptions": [
+ "A condition."
+ ]
+ },
+ "rougail.variable": {
+ "type": "variable",
+ "properties": [
+ {
+ "type": "type",
+ "name": "string"
+ },
+ {
+ "type": "mode",
+ "name": "basic"
+ },
+ {
+ "type": "property",
+ "name": "mandatory"
+ },
+ {
+ "type": "property",
+ "name": "disabled",
+ "annotation": "when the variable \"rougail.condition\" has the value \"true\"."
+ }
+ ],
+ "paths": [
+ "rougail.variable"
+ ],
+ "names": [
+ "variable"
+ ],
+ "descriptions": [
+ "A variable."
+ ]
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.md b/tests/results/test_namespace/04_5disabled_calculation_variable10.md
new file mode 100644
index 000000000..448853319
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.md
@@ -0,0 +1,11 @@
+# Variables for "Rougail"
+
+**rougail**
+
+`basic`
+
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "rougail.condition" has the value "true". |
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.sh b/tests/results/test_namespace/04_5disabled_calculation_variable10.sh
new file mode 100644
index 000000000..8b7a9e66c
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.sh
@@ -0,0 +1,26 @@
+
+
+[1;4;96mVariables for [0m[1;4;96m"Rougail"[0m
+
+
+
+[1mrougail[0m
+
+
+
+[1;7m basic [0m
+
+
+
+┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
+┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
+┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
+│ [1mrougail.condition[0m │ A condition. │
+│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: true │
+├───────────────────────────────────────┼──────────────────────────────────────┤
+│ [1mrougail.variable[0m │ A variable. │
+│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;3;7m [0m │ [1mDisabled[0m: when the variable │
+│ [1;3;7mdisabled [0m │ "rougail.condition" has the value │
+│ │ "true". │
+└───────────────────────────────────────┴──────────────────────────────────────┘
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md
index 325a709c6..868ae6c13 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "rougail.condition" has the value "true". |
-
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md
index bded00306..dade584eb 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "rougail.condition" has the value "yes". |
-
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md
index 0faeb561e..2a7dce1c8 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "rougail.condition" hasn't the value "yes". |
-
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable5.adoc
new file mode 100644
index 000000000..e9634d700
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.adoc
@@ -0,0 +1,16 @@
+== Variables for "Rougail"
+
+**rougail**
+
+`basic`
+
+[cols="1a,1a"]
+|====
+| Variable | Description
+|
+
+**rougail.variable** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
+A variable.
+|====
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md
new file mode 100644
index 000000000..f733b48dc
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md
@@ -0,0 +1,13 @@
+Rougail
+
+>>> [!note] Informations
+**rougail**
`basic`
+
+
+>>>
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------|---------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
+
+
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.json b/tests/results/test_namespace/04_5disabled_calculation_variable5.json
new file mode 100644
index 000000000..3458aca1a
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.json
@@ -0,0 +1,48 @@
+{
+ "rougail": {
+ "type": "namespace",
+ "informations": {
+ "paths": [
+ "rougail"
+ ],
+ "names": [
+ "rougail"
+ ],
+ "description": "Rougail",
+ "properties": [
+ {
+ "type": "mode",
+ "name": "basic"
+ }
+ ]
+ },
+ "children": {
+ "rougail.variable": {
+ "type": "variable",
+ "properties": [
+ {
+ "type": "type",
+ "name": "string"
+ },
+ {
+ "type": "mode",
+ "name": "basic"
+ },
+ {
+ "type": "property",
+ "name": "mandatory"
+ }
+ ],
+ "paths": [
+ "rougail.variable"
+ ],
+ "names": [
+ "variable"
+ ],
+ "descriptions": [
+ "A variable."
+ ]
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.md b/tests/results/test_namespace/04_5disabled_calculation_variable5.md
new file mode 100644
index 000000000..177e0e87c
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.md
@@ -0,0 +1,10 @@
+# Variables for "Rougail"
+
+**rougail**
+
+`basic`
+
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace/04_5disabled_calculation_variable5.sh
new file mode 100644
index 000000000..56d76bf69
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.sh
@@ -0,0 +1,21 @@
+
+
+[1;4;96mVariables for [0m[1;4;96m"Rougail"[0m
+
+
+
+[1mrougail[0m
+
+
+
+[1;7m basic [0m
+
+
+
+┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
+┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
+┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
+│ [1mrougail.variable[0m │ A variable. │
+│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ │
+└───────────────────────────────────────┴──────────────────────────────────────┘
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable6.adoc
new file mode 100644
index 000000000..e9634d700
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.adoc
@@ -0,0 +1,16 @@
+== Variables for "Rougail"
+
+**rougail**
+
+`basic`
+
+[cols="1a,1a"]
+|====
+| Variable | Description
+|
+
+**rougail.variable** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
+A variable.
+|====
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md
new file mode 100644
index 000000000..f733b48dc
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md
@@ -0,0 +1,13 @@
+Rougail
+
+>>> [!note] Informations
+**rougail**
`basic`
+
+
+>>>
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------|---------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
+
+
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.json b/tests/results/test_namespace/04_5disabled_calculation_variable6.json
new file mode 100644
index 000000000..3458aca1a
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.json
@@ -0,0 +1,48 @@
+{
+ "rougail": {
+ "type": "namespace",
+ "informations": {
+ "paths": [
+ "rougail"
+ ],
+ "names": [
+ "rougail"
+ ],
+ "description": "Rougail",
+ "properties": [
+ {
+ "type": "mode",
+ "name": "basic"
+ }
+ ]
+ },
+ "children": {
+ "rougail.variable": {
+ "type": "variable",
+ "properties": [
+ {
+ "type": "type",
+ "name": "string"
+ },
+ {
+ "type": "mode",
+ "name": "basic"
+ },
+ {
+ "type": "property",
+ "name": "mandatory"
+ }
+ ],
+ "paths": [
+ "rougail.variable"
+ ],
+ "names": [
+ "variable"
+ ],
+ "descriptions": [
+ "A variable."
+ ]
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.md b/tests/results/test_namespace/04_5disabled_calculation_variable6.md
new file mode 100644
index 000000000..177e0e87c
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.md
@@ -0,0 +1,10 @@
+# Variables for "Rougail"
+
+**rougail**
+
+`basic`
+
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.sh b/tests/results/test_namespace/04_5disabled_calculation_variable6.sh
new file mode 100644
index 000000000..56d76bf69
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.sh
@@ -0,0 +1,21 @@
+
+
+[1;4;96mVariables for [0m[1;4;96m"Rougail"[0m
+
+
+
+[1mrougail[0m
+
+
+
+[1;7m basic [0m
+
+
+
+┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
+┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
+┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
+│ [1mrougail.variable[0m │ A variable. │
+│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ │
+└───────────────────────────────────────┴──────────────────────────────────────┘
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable7.adoc
new file mode 100644
index 000000000..2e99b0e05
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.adoc
@@ -0,0 +1,23 @@
+== Variables for "Rougail"
+
+**rougail**
+
+`basic`
+
+[cols="1a,1a"]
+|====
+| Variable | Description
+|
+
+**rougail.condition** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
+A condition. +
+**Default**: false
+|
+
+**rougail.variable** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` |
+A variable. +
+**Disabled**: when the variable "rougail.condition" has the value "true".
+|====
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md
new file mode 100644
index 000000000..585ee8ebe
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md
@@ -0,0 +1,14 @@
+Rougail
+
+>>> [!note] Informations
+**rougail**
`basic`
+
+
+>>>
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "rougail.condition" has the value "true". |
+
+
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.json b/tests/results/test_namespace/04_5disabled_calculation_variable7.json
new file mode 100644
index 000000000..4f62ceff7
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.json
@@ -0,0 +1,83 @@
+{
+ "rougail": {
+ "type": "namespace",
+ "informations": {
+ "paths": [
+ "rougail"
+ ],
+ "names": [
+ "rougail"
+ ],
+ "description": "Rougail",
+ "properties": [
+ {
+ "type": "mode",
+ "name": "basic"
+ }
+ ]
+ },
+ "children": {
+ "rougail.condition": {
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": false
+ },
+ "properties": [
+ {
+ "type": "type",
+ "name": "boolean"
+ },
+ {
+ "type": "mode",
+ "name": "standard"
+ },
+ {
+ "type": "property",
+ "name": "mandatory"
+ }
+ ],
+ "paths": [
+ "rougail.condition"
+ ],
+ "names": [
+ "condition"
+ ],
+ "descriptions": [
+ "A condition."
+ ]
+ },
+ "rougail.variable": {
+ "type": "variable",
+ "properties": [
+ {
+ "type": "type",
+ "name": "string"
+ },
+ {
+ "type": "mode",
+ "name": "basic"
+ },
+ {
+ "type": "property",
+ "name": "mandatory"
+ },
+ {
+ "type": "property",
+ "name": "disabled",
+ "annotation": "when the variable \"rougail.condition\" has the value \"true\"."
+ }
+ ],
+ "paths": [
+ "rougail.variable"
+ ],
+ "names": [
+ "variable"
+ ],
+ "descriptions": [
+ "A variable."
+ ]
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.md b/tests/results/test_namespace/04_5disabled_calculation_variable7.md
new file mode 100644
index 000000000..bb264423d
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.md
@@ -0,0 +1,11 @@
+# Variables for "Rougail"
+
+**rougail**
+
+`basic`
+
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "rougail.condition" has the value "true". |
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace/04_5disabled_calculation_variable7.sh
new file mode 100644
index 000000000..bc3b21ccc
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.sh
@@ -0,0 +1,26 @@
+
+
+[1;4;96mVariables for [0m[1;4;96m"Rougail"[0m
+
+
+
+[1mrougail[0m
+
+
+
+[1;7m basic [0m
+
+
+
+┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
+┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
+┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
+│ [1mrougail.condition[0m │ A condition. │
+│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: false │
+├───────────────────────────────────────┼──────────────────────────────────────┤
+│ [1mrougail.variable[0m │ A variable. │
+│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;3;7m [0m │ [1mDisabled[0m: when the variable │
+│ [1;3;7mdisabled [0m │ "rougail.condition" has the value │
+│ │ "true". │
+└───────────────────────────────────────┴──────────────────────────────────────┘
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable8.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable8.adoc
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable8.gitlab.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable8.json b/tests/results/test_namespace/04_5disabled_calculation_variable8.json
new file mode 100644
index 000000000..9e26dfeeb
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable8.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable8.md b/tests/results/test_namespace/04_5disabled_calculation_variable8.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable8.sh b/tests/results/test_namespace/04_5disabled_calculation_variable8.sh
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable9.adoc
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.json b/tests/results/test_namespace/04_5disabled_calculation_variable9.json
new file mode 100644
index 000000000..9e26dfeeb
--- /dev/null
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.md b/tests/results/test_namespace/04_5disabled_calculation_variable9.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.sh b/tests/results/test_namespace/04_5disabled_calculation_variable9.sh
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.gitlab.md
index a8c23ab79..22b721c5e 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* `unique` `multiple` | A variable.
**Disabled**: when the variable "rougail.condition" has the value "true". |
-
+
diff --git a/tests/results/test_namespace/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace/04_5hidden_calculation.gitlab.md
index 87b887722..bcf4ccca4 100644
--- a/tests/results/test_namespace/04_5hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace/04_5hidden_calculation.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -11,5 +11,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`hidden`* | A first variable.
**Default**: no
**Hidden**: if condition is yes. |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`hidden`* | A second variable.
**Default**: no
**Hidden**: if condition is yes. |
-
+
diff --git a/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md
index 8efdceb45..619f84477 100644
--- a/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md
+++ b/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -11,5 +11,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`hidden`* | A first variable.
**Default**: the value of condition.
**Hidden**: if condition is yes. |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`hidden`* | A second variable.
**Default**: the value of condition.
**Hidden**: if condition is yes. |
-
+
diff --git a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.gitlab.md
index 837d1a3ef..15cdd14ad 100644
--- a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.gitlab.md
+++ b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -11,5 +11,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`hidden`* | A first variable.
**Default**: returns the condition value.
**Hidden**: if condition is yes. |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`hidden`* | A second variable.
**Default**: returns the condition value.
**Hidden**: if condition is yes. |
-
+
diff --git a/tests/results/test_namespace/04_5validators.gitlab.md b/tests/results/test_namespace/04_5validators.gitlab.md
index b22fbffbb..733f4b9d2 100644
--- a/tests/results/test_namespace/04_5validators.gitlab.md
+++ b/tests/results/test_namespace/04_5validators.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,5 +9,5 @@
|-----------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------|
| **rougail.int**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | An integer.
**Validator**: the max value is 100. |
-
+
diff --git a/tests/results/test_namespace/04_5validators_differ.gitlab.md b/tests/results/test_namespace/04_5validators_differ.gitlab.md
index 77cef1ef2..168a87af0 100644
--- a/tests/results/test_namespace/04_5validators_differ.gitlab.md
+++ b/tests/results/test_namespace/04_5validators_differ.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Validator**: var1 must be different than var2.
**Default**: oui
**Example**: another_value |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
-
+
diff --git a/tests/results/test_namespace/04_5validators_multi.gitlab.md b/tests/results/test_namespace/04_5validators_multi.gitlab.md
index 8bdf06bce..8169d9870 100644
--- a/tests/results/test_namespace/04_5validators_multi.gitlab.md
+++ b/tests/results/test_namespace/04_5validators_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Validator**: check length is less than 10.
**Default**:
- no
- yes |
-
+
diff --git a/tests/results/test_namespace/04_5validators_multi2.gitlab.md b/tests/results/test_namespace/04_5validators_multi2.gitlab.md
index 43d049843..8751db479 100644
--- a/tests/results/test_namespace/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_namespace/04_5validators_multi2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Validator**: check length is less than 3.
**Default**:
- no
- yes
**Examples**:
- val1
- val2 |
-
+
diff --git a/tests/results/test_namespace/04_5validators_multi3.gitlab.md b/tests/results/test_namespace/04_5validators_multi3.gitlab.md
index 7ac390dc6..576c2e5ff 100644
--- a/tests/results/test_namespace/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_namespace/04_5validators_multi3.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
| **rougail.var1**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.
**Validator**: value must be equal to index.
**Default**:
- 0
- 1
- 2
**Example**: 0 |
-
+
diff --git a/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md
index c7daba583..cb6e7e14e 100644
--- a/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A variable.
**Default**: non |
-
+
diff --git a/tests/results/test_namespace/05_0multi_uniq.gitlab.md b/tests/results/test_namespace/05_0multi_uniq.gitlab.md
index b5c0cb9d7..6cd71aa8d 100644
--- a/tests/results/test_namespace/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_namespace/05_0multi_uniq.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: non |
-
+
diff --git a/tests/results/test_namespace/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace/12_1auto_save_expert.gitlab.md
index 5ecbfe7bb..4651cf800 100644
--- a/tests/results/test_namespace/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_namespace/12_1auto_save_expert.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`advanced`
@@ -9,5 +9,5 @@
|-----------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `advanced` `mandatory` `auto modified` | A variable.
**Default**: no |
-
+
diff --git a/tests/results/test_namespace/16_0redefine_description.gitlab.md b/tests/results/test_namespace/16_0redefine_description.gitlab.md
index 483385ee2..224695dfb 100644
--- a/tests/results/test_namespace/16_0redefine_description.gitlab.md
+++ b/tests/results/test_namespace/16_0redefine_description.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,5 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Redefined. |
-
+
diff --git a/tests/results/test_namespace/16_2family_redefine_calculation.gitlab.md b/tests/results/test_namespace/16_2family_redefine_calculation.gitlab.md
index a4e090d8b..fb93396c5 100644
--- a/tests/results/test_namespace/16_2family_redefine_calculation.gitlab.md
+++ b/tests/results/test_namespace/16_2family_redefine_calculation.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- rougail.family
+rougail.family
>>> [!note] Informations
**rougail.family**
`basic` *`disabled`*
@@ -16,7 +16,7 @@
|------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var1. |
-
+
-
+
diff --git a/tests/results/test_namespace/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace/16_3family_empty_at_ends.gitlab.md
index 18f273578..8b01c103d 100644
--- a/tests/results/test_namespace/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_namespace/16_3family_empty_at_ends.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- rougail.family
+rougail.family
>>> [!note] Informations
**rougail.family**
`basic`
@@ -16,7 +16,7 @@
|------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var1. |
-
+
-
+
diff --git a/tests/results/test_namespace/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace/16_5exists_nonexists.gitlab.md
index d1fec58c6..3a5b86d20 100644
--- a/tests/results/test_namespace/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_namespace/16_5exists_nonexists.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A new variable.
**Default**: yes |
-
+
diff --git a/tests/results/test_namespace/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace/16_5redefine_calculation.gitlab.md
index a11495c53..e507edcc4 100644
--- a/tests/results/test_namespace/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_calculation.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: returns yes. |
-
+
diff --git a/tests/results/test_namespace/16_5redefine_choice.gitlab.md b/tests/results/test_namespace/16_5redefine_choice.gitlab.md
index 080915958..6577deaed 100644
--- a/tests/results/test_namespace/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_choice.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,5 +9,5 @@
|---------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------|
| **rougail.variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Choices**:
- a
- b |
-
+
diff --git a/tests/results/test_namespace/16_5redefine_default.gitlab.md b/tests/results/test_namespace/16_5redefine_default.gitlab.md
index 4b4a99d45..5f003a3c4 100644
--- a/tests/results/test_namespace/16_5redefine_default.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_default.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: yes |
-
+
diff --git a/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md
index 2d5ce600c..f733b48dc 100644
--- a/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,5 +9,5 @@
|---------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
diff --git a/tests/results/test_namespace/16_5redefine_family.gitlab.md b/tests/results/test_namespace/16_5redefine_family.gitlab.md
index f19d95eda..1f4b7935e 100644
--- a/tests/results/test_namespace/16_5redefine_family.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_family.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- new description
+new description
>>> [!note] Informations
**rougail.family**
`basic`
@@ -16,7 +16,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/16_5redefine_help.gitlab.md b/tests/results/test_namespace/16_5redefine_help.gitlab.md
index 37cecc882..7376e350b 100644
--- a/tests/results/test_namespace/16_5redefine_help.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_help.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a family
+a family
Redefine help family ok.
@@ -18,7 +18,7 @@ Redefine help family ok.
|----------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
| **rougail.family.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Redefine help.
Redefine help ok. |
-
+
-
+
diff --git a/tests/results/test_namespace/16_5redefine_multi.gitlab.md b/tests/results/test_namespace/16_5redefine_multi.gitlab.md
index b5c0cb9d7..6cd71aa8d 100644
--- a/tests/results/test_namespace/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: non |
-
+
diff --git a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.gitlab.md
index 94a0f327c..6aa0ba438 100644
--- a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: no |
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
diff --git a/tests/results/test_namespace/16_5test_redefine.gitlab.md b/tests/results/test_namespace/16_5test_redefine.gitlab.md
index 1e55d8169..aae8b688e 100644
--- a/tests/results/test_namespace/16_5test_redefine.gitlab.md
+++ b/tests/results/test_namespace/16_5test_redefine.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -11,5 +11,5 @@
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: non
**Example**: test1 |
| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A third variable. |
-
+
diff --git a/tests/results/test_namespace/16_6choice_redefine.gitlab.md b/tests/results/test_namespace/16_6choice_redefine.gitlab.md
index 46f6753f4..24d6ce2cf 100644
--- a/tests/results/test_namespace/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_namespace/16_6choice_redefine.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,5 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A choice.
**Choices**:
- a
- c **← (default)** |
-
+
diff --git a/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md
index db3470d3a..989fcf9db 100644
--- a/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- new description
+new description
>>> [!note] Informations
**rougail.family1**
`basic`
@@ -16,9 +16,9 @@
|------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family1.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
- a second family
+a second family
>>> [!note] Informations
**rougail.family2**
`basic`
@@ -29,7 +29,7 @@
|------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
| **rougail.family2.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/16exists_exists.gitlab.md b/tests/results/test_namespace/16exists_exists.gitlab.md
index d66e4d799..b22b292d2 100644
--- a/tests/results/test_namespace/16exists_exists.gitlab.md
+++ b/tests/results/test_namespace/16exists_exists.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,5 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Description. |
-
+
diff --git a/tests/results/test_namespace/20_0family_append.gitlab.md b/tests/results/test_namespace/20_0family_append.gitlab.md
index 463e24b6d..7612e28f8 100644
--- a/tests/results/test_namespace/20_0family_append.gitlab.md
+++ b/tests/results/test_namespace/20_0family_append.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- A family
+A family
>>> [!note] Informations
**rougail.family**
`basic`
@@ -17,7 +17,7 @@
| **rougail.family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. |
| **rougail.family.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/20_0multi_family.gitlab.md b/tests/results/test_namespace/20_0multi_family.gitlab.md
index 8beced85b..8a6797bfb 100644
--- a/tests/results/test_namespace/20_0multi_family.gitlab.md
+++ b/tests/results/test_namespace/20_0multi_family.gitlab.md
@@ -1,18 +1,18 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a family
+a family
>>> [!note] Informations
**rougail.family**
`standard`
>>>
- a sub family
+a sub family
>>> [!note] Informations
**rougail.family.subfamily**
`standard`
@@ -23,9 +23,9 @@
|-----------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace/20_0multi_family_basic.gitlab.md
index d6c8bc31e..1972400f4 100644
--- a/tests/results/test_namespace/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_namespace/20_0multi_family_basic.gitlab.md
@@ -1,18 +1,18 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a family
+a family
>>> [!note] Informations
**rougail.family**
`basic`
>>>
- a sub family
+a sub family
>>> [!note] Informations
**rougail.family.subfamily**
`basic`
@@ -23,9 +23,9 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace/20_0multi_family_expert.gitlab.md
index 1f8c6b7bd..cbf607161 100644
--- a/tests/results/test_namespace/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_namespace/20_0multi_family_expert.gitlab.md
@@ -1,18 +1,18 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`advanced`
>>>
- a family
+a family
>>> [!note] Informations
**rougail.family**
`advanced`
>>>
- a sub family
+a sub family
>>> [!note] Informations
**rougail.family.subfamily**
`advanced`
@@ -23,9 +23,9 @@
|-----------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `advanced` | A variable. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/20_0multi_family_order.gitlab.md b/tests/results/test_namespace/20_0multi_family_order.gitlab.md
index daa8e961f..8b74c5ce5 100644
--- a/tests/results/test_namespace/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_namespace/20_0multi_family_order.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
- a family
+a family
>>> [!note] Informations
**rougail.family**
`basic`
@@ -20,7 +20,7 @@
|-----------------------------------------------------------------------------------------------------------------------------------------|-------------------|
| **rougail.family.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
- a sub family
+a sub family
>>> [!note] Informations
**rougail.family.subfamily**
`basic`
@@ -31,13 +31,13 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------|--------------------|
| **rougail.family.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md
index 430bfd279..78e62f903 100644
--- a/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -11,5 +11,5 @@
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Validator**: var3 must be different than var2.
**Default**: yes
**Example**: yes |
-
+
diff --git a/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md
index 4efbe6a93..cd162c052 100644
--- a/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- rougail.my_family
+rougail.my_family
>>> [!note] Informations
**rougail.my_family**
`standard`
@@ -17,7 +17,7 @@
| **rougail.my_family.dynamic**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Dynamic.
**Default**:
- val1
- val2 |
| **rougail.my_family.var**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: true |
-
+
-
+
diff --git a/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md
index 5b7af67f1..9c02f0af6 100644
--- a/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- rougail.my_family
+rougail.my_family
>>> [!note] Informations
**rougail.my_family**
`standard`
@@ -16,7 +16,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------|
| **rougail.my_family.default**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Default.
**Default**: true |
-
+
-
+
diff --git a/tests/results/test_namespace/20_9default_information_parent.gitlab.md b/tests/results/test_namespace/20_9default_information_parent.gitlab.md
index 3845938aa..f914c9ab4 100644
--- a/tests/results/test_namespace/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_namespace/20_9default_information_parent.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- rougail.family
+rougail.family
>>> [!note] Informations
**rougail.family**
`basic`
@@ -17,7 +17,7 @@
| **rougail.family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
| **rougail.family.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of the information "test_information" of the variable "rougail.family". |
-
+
-
+
diff --git a/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md
index fec2ce2a3..4d5c2b24c 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md
+++ b/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
| **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.
**Default**: no |
- possibly hidden family
+possibly hidden family
>>> [!note] Informations
**rougail.family**
`basic` *`hidden`*
@@ -20,7 +20,7 @@
|------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md
index a1b492cb3..77c96ed8f 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md
+++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|--------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------|
| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A conditional variable.
**Default**: false |
- a family
+a family
>>> [!note] Informations
**rougail.family**
`standard` *`hidden`*
@@ -20,7 +20,7 @@
|-------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md
index ed30bd4fd..21c5971aa 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,14 +9,14 @@
|-------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
| **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.
**Default**: no |
- possibly hidden family
+possibly hidden family
>>> [!note] Informations
**rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes.
>>>
- rougail.family.subfamily
+rougail.family.subfamily
>>> [!note] Informations
**rougail.family.subfamily**
`basic`
@@ -27,9 +27,9 @@
|----------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.subfamily.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md
index dce199826..d2bc381e8 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,14 +9,14 @@
|--------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.
**Default**: true |
- possibly hidden family
+possibly hidden family
>>> [!note] Informations
**rougail.family**
`standard` *`hidden`*
**Hidden**: when the variable "rougail.condition" has the value "true".
>>>
- a subfamily
+a subfamily
>>> [!note] Informations
**rougail.family.subfamily**
`standard`
@@ -27,9 +27,9 @@
|-------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.subfamily.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md
index 90f298837..6dfa76abe 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md
+++ b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,7 +10,7 @@
| **rougail.condition1**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first conditional variable.
**Default**: false |
| **rougail.condition2**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second conditional variable.
**Default**: false |
- a family
+a family
>>> [!note] Informations
**rougail.family**
`standard` *`hidden`*
@@ -21,7 +21,7 @@
|------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
| **rougail.family.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A variable.
**Hidden**: if condition2 is false. |
-
+
-
+
diff --git a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md
index c107a10d5..1bb77f8d1 100644
--- a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,14 +9,14 @@
|-------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
| **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.
**Default**: no |
- possibly hidden family
+possibly hidden family
>>> [!note] Informations
**rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes.
>>>
- a subfamily
+a subfamily
>>> [!note] Informations
**rougail.family.sub_family**
`basic`
@@ -27,9 +27,9 @@
|-----------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.sub_family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md
index f25d68647..6a8c78dad 100644
--- a/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: no |
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`mandatory`* | A variable.
**Mandatory**: only if rougail.condition has the value "yes". |
-
+
diff --git a/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md
index 327ea0873..ac5dfcd7b 100644
--- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`mandatory`* | A variable.
**Mandatory**: when the variable "rougail.condition" has the value "true". |
-
+
diff --git a/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md
index 4ff63ae9f..409ec6709 100644
--- a/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a family
+a family
>>> [!note] Informations
**rougail.general**
`basic`
@@ -17,7 +17,7 @@
| **rougail.general.int**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first integer.
**Validators**:
- int and int2 must be different.
- int and int3 must be different.
**Example**: 5 |
| **rougail.general.int2**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second integer.
**Default**: 1 |
-
+
-
+
diff --git a/tests/results/test_namespace/40_0leadership.gitlab.md b/tests/results/test_namespace/40_0leadership.gitlab.md
index 22834b754..1de3a6815 100644
--- a/tests/results/test_namespace/40_0leadership.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -20,7 +20,7 @@ This family contains lists of variable blocks.
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | An other follower. |
-
+
-
+
diff --git a/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md
index 66c515717..91b4be971 100644
--- a/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -20,7 +20,7 @@ This family contains lists of variable blocks.
| **rougail.leadership.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
| **rougail.leadership.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | An other follower. |
-
+
-
+
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md
index e4afcb50c..24b6dc917 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -20,7 +20,7 @@ This family contains lists of variable blocks.
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: value |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second follower.
**Default**: returns follower1 value. |
-
+
-
+
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md
index 5387d0cbe..b98667ab2 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -20,7 +20,7 @@ This family contains lists of variable blocks.
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A follower1.
**Default**: value |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A follower2.
**Default**:
- value1
- value2 |
-
+
-
+
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md
index a6748071a..b62a5aa89 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -20,7 +20,7 @@ This family contains lists of variable blocks.
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | The follower1.
**Default**: value |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | The follower2.
**Default**: the value of the variable "rougail.leader.follower1". |
-
+
-
+
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md
index 10db9df06..9c925a917 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -19,7 +19,7 @@ This family contains lists of variable blocks.
| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. |
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower with default value.
**Default**: value |
-
+
-
+
diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md
index ace4a12c9..c04d17fa4 100644
--- a/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -19,7 +19,7 @@ This family contains lists of variable blocks.
| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 |
| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: the value of the variable "rougail.leadership.leader". |
-
+
-
+
diff --git a/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md
index cc2717a61..880126269 100644
--- a/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- rougail.general
+rougail.general
>>> [!note] Informations
**rougail.general**
`standard`
@@ -16,16 +16,16 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
| **rougail.general.mode_conteneur_actif**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | No change.
**Default**: non |
-
+
- rougail.general1
+rougail.general1
>>> [!note] Informations
**rougail.general1**
`basic`
>>>
- rougail.general1.leader
+rougail.general1.leader
This family contains lists of variable blocks.
@@ -40,9 +40,9 @@ This family contains lists of variable blocks.
| **rougail.general1.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Follower1. |
| **rougail.general1.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Follower2. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace/40_0leadership_reduce.gitlab.md
index 8be0f85a3..560ebca30 100644
--- a/tests/results/test_namespace/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_reduce.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -19,7 +19,7 @@ This family contains lists of variable blocks.
| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value_1
- value_2
- value_3
**Examples**:
- val1
- val2 |
| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-
+
-
+
diff --git a/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md
index 3db87c178..cccd61908 100644
--- a/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -21,7 +21,7 @@ This family contains lists of variable blocks.
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The follower2. |
| **rougail.leader.follower3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The follower3. |
-
+
-
+
diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md
index 003b80ebf..c70c5ca4e 100644
--- a/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -19,7 +19,7 @@ This family contains lists of variable blocks.
| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- a
- b
- c |
| **rougail.leader.follower1**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: the value of the index. |
-
+
-
+
diff --git a/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md
index 003b80ebf..c70c5ca4e 100644
--- a/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -19,7 +19,7 @@ This family contains lists of variable blocks.
| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- a
- b
- c |
| **rougail.leader.follower1**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: the value of the index. |
-
+
-
+
diff --git a/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md
index 72e74eeec..e6567c810 100644
--- a/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md
+++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- leadership
+leadership
This family contains lists of variable blocks.
@@ -19,7 +19,7 @@ This family contains lists of variable blocks.
| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- a
- b
- c |
| **rougail.leader.follower1**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: returns index. |
-
+
-
+
diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md
index 56eb781df..6f28ef4f9 100644
--- a/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md
+++ b/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -20,7 +20,7 @@ This family contains lists of variable blocks.
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first follower. |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second follower. |
-
+
-
+
diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md
index f11c89d0b..477a12962 100644
--- a/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- A leadership
+A leadership
This family contains lists of variable blocks.
@@ -20,7 +20,7 @@ This family contains lists of variable blocks.
| **rougail.leadership.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `multiple` | The first follower. |
| **rougail.leadership.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | The second follower.
**Default**: value |
-
+
-
+
diff --git a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md
index 27b18928e..428c32293 100644
--- a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- A leadership
+A leadership
This family contains lists of variable blocks.
@@ -20,7 +20,7 @@ This family contains lists of variable blocks.
| **rougail.leadership.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `multiple` | The first follower. |
| **rougail.leadership.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | The second follower.
**Default**: value |
-
+
-
+
diff --git a/tests/results/test_namespace/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace/40_8calculation_boolean.gitlab.md
index be5eb14ac..ea60d8dd0 100644
--- a/tests/results/test_namespace/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace/40_8calculation_boolean.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -11,5 +11,5 @@
| **rougail.multi1**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A first multi variable.
**Default**: a calculation. |
| **rougail.multi2**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second multi variable.
**Default**: a calculation. |
-
+
diff --git a/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md
index a06463459..f8be3a186 100644
--- a/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md
+++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: yes |
| **rougail.var2**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: return false if the value of var1 is "no". |
-
+
diff --git a/tests/results/test_namespace/40_8calculation_integer.gitlab.md b/tests/results/test_namespace/40_8calculation_integer.gitlab.md
index 5baeffc05..2be9a03ef 100644
--- a/tests/results/test_namespace/40_8calculation_integer.gitlab.md
+++ b/tests/results/test_namespace/40_8calculation_integer.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -11,5 +11,5 @@
| **rougail.int1**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | First integer variable.
**Default**: if bool returns 1 otherwise return 2. |
| **rougail.int2**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Second integer variable.
**Default**: if bool returns 3 otherwise return 4. |
-
+
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md
index 690cfc661..40706ffd2 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -11,5 +11,5 @@
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
-
+
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md
index 571d1d962..e3a684bb4 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|-------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
- a family
+a family
>>> [!note] Informations
**rougail.fam1**
`standard`
@@ -20,7 +20,7 @@
|------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------|
| **rougail.fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "rougail.var". |
-
+
-
+
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md
index 189b97a02..188d0c968 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- first family
+first family
>>> [!note] Informations
**rougail.fam1**
`standard`
@@ -16,9 +16,9 @@
|------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
| **rougail.fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-
+
- second family
+second family
>>> [!note] Informations
**rougail.fam2**
`standard`
@@ -29,7 +29,7 @@
|------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------|
| **rougail.fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "rougail.fam1.var". |
-
+
-
+
diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index ec4160392..03f110d29 100644
--- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -19,7 +19,7 @@ This family contains lists of variable blocks.
| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 |
| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A follower.
**Default**: the value of the variable "rougail.leadership.leader". |
-
+
-
+
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md
index aa8e5c555..db34b9424 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -20,11 +20,11 @@ This family contains lists of variable blocks.
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-
+
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A calculated variable.
**Default**: depends on a calculation. |
-
+
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md
index aa8e5c555..db34b9424 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -20,11 +20,11 @@ This family contains lists of variable blocks.
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-
+
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A calculated variable.
**Default**: depends on a calculation. |
-
+
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index e7dd96147..05670043e 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- rougail.leader
+rougail.leader
This family contains lists of variable blocks.
@@ -19,11 +19,11 @@ This family contains lists of variable blocks.
| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Leader.
**Default**:
- a
- b |
| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | Follower. |
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | Variable.
**Default**: the value of the variable "rougail.leader.follower". |
-
+
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md
index 033d20d8b..f8bf95db6 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -20,11 +20,11 @@ This family contains lists of variable blocks.
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-
+
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A calculated variable.
**Default**: the value of the variable "rougail.leader.follower1". |
-
+
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md
index 20e067196..c469f81f2 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -20,11 +20,11 @@ This family contains lists of variable blocks.
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-
+
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: depends on a calculation. |
-
+
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md
index 20e067196..c469f81f2 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -20,11 +20,11 @@ This family contains lists of variable blocks.
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-
+
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: depends on a calculation. |
-
+
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md
index 636fe76c0..f66a091a2 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -20,11 +20,11 @@ This family contains lists of variable blocks.
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-
+
| Variable | Description |
|---------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|
| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A calculated variable.
**Default**: the value of the variable "rougail.leader.leader". |
-
+
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md
index 9fc2b0616..62dab4de4 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|
| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A calculated variable.
**Default**:
- value1
- value2 |
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -24,7 +24,7 @@ This family contains lists of variable blocks.
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-
+
-
+
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md
index d8ed6f5cd..d16c7dda7 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -19,9 +19,9 @@ This family contains lists of variable blocks.
| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 |
| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-
+
- a second leadership
+a second leadership
This family contains lists of variable blocks.
@@ -35,7 +35,7 @@ This family contains lists of variable blocks.
| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**: the value of the variable "rougail.leadership_1.follower". |
| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
-
+
-
+
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index b4dc2c54f..a573b09da 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -19,9 +19,9 @@ This family contains lists of variable blocks.
| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 |
| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-
+
- a second leadership
+a second leadership
This family contains lists of variable blocks.
@@ -35,7 +35,7 @@ This family contains lists of variable blocks.
| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 |
| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A follower.
**Default**: the value of the variable "rougail.leadership_1.leader". |
-
+
-
+
diff --git a/tests/results/test_namespace/41_0choice_leader.gitlab.md b/tests/results/test_namespace/41_0choice_leader.gitlab.md
index 07d4f86ba..451af14f4 100644
--- a/tests/results/test_namespace/41_0choice_leader.gitlab.md
+++ b/tests/results/test_namespace/41_0choice_leader.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- The leadership
+The leadership
This family contains lists of variable blocks.
@@ -19,7 +19,7 @@ This family contains lists of variable blocks.
| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | The leader. |
| **rougail.leader.follower1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower.
**Choices**:
- a
- b
- c |
-
+
-
+
diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md
index 6d54d20a7..04c52b1ec 100644
--- a/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md
+++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|--------------------------------------------------------------------------------------------------------------------------------------|------------------------------------|
| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -23,7 +23,7 @@ This family contains lists of variable blocks.
| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Aleader.
**Default**: a |
| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A follower.
**Disabled**: if condition is yes. |
-
+
-
+
diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md
index 354ef7cef..cb32d9bca 100644
--- a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -19,7 +19,7 @@ This family contains lists of variable blocks.
| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Aleader.
**Default**:
- a
- b |
| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A follower.
**Default**: value
**Disabled**: depends on a calculation. |
-
+
-
+
diff --git a/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md
index bffd1bfb8..c5530873a 100644
--- a/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -19,7 +19,7 @@ This family contains lists of variable blocks.
| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. |
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A follower. |
-
+
-
+
diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md
index 23e8a8f2d..9c6fa911c 100644
--- a/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -19,7 +19,7 @@ This family contains lists of variable blocks.
| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. |
| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-
+
-
+
diff --git a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md
index 89b2b3bc1..0b116097b 100644
--- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: no |
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -23,7 +23,7 @@ This family contains lists of variable blocks.
| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. |
| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-
+
-
+
diff --git a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md
index 3ff0298c1..8540151e1 100644
--- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------|
| **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -23,7 +23,7 @@ This family contains lists of variable blocks.
| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. |
| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A follower.
**Disabled**: if condition is yes. |
-
+
-
+
diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md
index a119a8b7e..fb265712d 100644
--- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md
+++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- rougail.leader
+rougail.leader
This family contains lists of variable blocks.
@@ -19,7 +19,7 @@ This family contains lists of variable blocks.
| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- a
- b |
| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A follower.
**Default**: the value of the variable "rougail.leader.leader".
**Disabled**: if the value of "leader" is "a". |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic.gitlab.md b/tests/results/test_namespace/60_0family_dynamic.gitlab.md
index a26057405..dcc86cae5 100644
--- a/tests/results/test_namespace/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md
index a7d5174f3..dd463706c 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- rougail.dyn*val1* or rougail.dyn*val2*
+rougail.dyn*val1* or rougail.dyn*val2*
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
| **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | Dynamic variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md
index b419804a1..5211eeee3 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- rougail.dyn*val1* or rougail.dyn*val2*
+rougail.dyn*val1* or rougail.dyn*val2*
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
| **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | Dynamic variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md
index 56adca21b..c6652ea38 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- rougail.dyn*val1* or rougail.dyn*val2*
+rougail.dyn*val1* or rougail.dyn*val2*
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------|
| **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dyn variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md
index 9bd3b40e5..54a7d14b1 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- rougail.dyn*val1* or rougail.dyn*val2*
+rougail.dyn*val1* or rougail.dyn*val2*
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------|
| **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dyn variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md
index ed30b50fb..97484daa6 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md
index 306679cea..b8fba81ec 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md
index 8e3ab0744..69e36d520 100644
--- a/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|--------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable. |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*example*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md
index d2473b21f..fb4b5fec2 100644
--- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val.1
- val.2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -23,7 +23,7 @@ This family builds families dynamically.
| **rougail.dyn*val_1*.var1**
**rougail.dyn*val_2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier. |
| **rougail.dyn*val_1*.var2**
**rougail.dyn*val_2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: depends on a calculation. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.gitlab.md
index 30a96f34c..6bf86a45b 100644
--- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- 1
- 2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
| **rougail.dyn*1*.var**
**rougail.dyn*2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: val |
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of rougail.dyn1.var. |
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md
index f0800a70c..eaaf25758 100644
--- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------|
| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- 1
- 2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
| **rougail.dyn*1*.var**
**rougail.dyn*2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: val |
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of rougail.dyn1.var. |
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md
index fe2563e84..3b3ccebf2 100644
--- a/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md
index 77f01eb28..da6f3a1ac 100644
--- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md
index 66c8f5c0a..7195a1145 100644
--- a/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -18,7 +18,7 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable inside a dynamic family. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md
index de6b3ff90..6e8a18802 100644
--- a/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md
index 43f2475ef..2731a1e48 100644
--- a/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- Val1
- VAL2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md
index 5d77dee9d..74f9f447a 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A suffix variable. |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
| **rougail.dyn*example*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: val |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md
index eccc45a90..f4c347fc5 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -18,7 +18,7 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
| **rougail.dyn*a*.var**
**rougail.dyn*b*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: val |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md
index aa8bf10b7..b626b0acb 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable with suffix *val1*.
A dynamic variable with suffix *val2*.
**Default**: a value |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md
index a72e8f97a..445ed0c16 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable with suffix *val1*.
A dynamic variable with suffix *val2*.
**Default**: a value |
-
+
-
+
diff --git a/tests/results/test_namespace/60_0family_mode.gitlab.md b/tests/results/test_namespace/60_0family_mode.gitlab.md
index 3b7aed8de..c1b4116ce 100644
--- a/tests/results/test_namespace/60_0family_mode.gitlab.md
+++ b/tests/results/test_namespace/60_0family_mode.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- a family
+a family
>>> [!note] Informations
**rougail.family**
`basic`
@@ -16,7 +16,7 @@
|-----------------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **rougail.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Default**: non |
-
+
-
+
diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md
index 86d48180b..a0b5a7e35 100644
--- a/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
| **rougail.dyn*1*.var**
**rougail.dyn*2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val |
-
+
-
+
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index da86f9dfd..7c8961459 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -18,7 +18,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "rougail.var1".
>>>
- a family
+a family
>>> [!note] Informations
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic`
@@ -29,13 +29,13 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------|
| **rougail.dyn*val1*.family.var**
**rougail.dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. |
-
+
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of var. |
-
+
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index a7d3e04de..a15be5e93 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A identifier variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -18,7 +18,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "rougail.var".
>>>
- a family inside dynamic family
+a family inside dynamic family
>>> [!note] Informations
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard`
@@ -29,13 +29,13 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
| **rougail.dyn*val1*.family.var**
**rougail.dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier. |
-
+
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A varible outside dynamic family.
**Default**: the value of var. |
-
+
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index fc04ebbfb..ceb52fe56 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A identifier variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -18,7 +18,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "rougail.var".
>>>
- a family inside dynamic family
+a family inside dynamic family
>>> [!note] Informations
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard`
@@ -29,13 +29,13 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
| **rougail.dyn*val1*.family.var**
**rougail.dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier. |
-
+
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A varible outside dynamic family.
**Default**: the value of var. |
-
+
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 85a629fdd..d192ab0d3 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -18,7 +18,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "rougail.var1".
>>>
- a family
+a family
>>> [!note] Informations
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic`
@@ -29,13 +29,13 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------|
| **rougail.dyn*val1*.family.var**
**rougail.dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. |
-
+
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A second variable.
**Default**: the value of var. |
-
+
diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md
index 97fc98c6b..48a1228cc 100644
--- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffx variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val |
-
+
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **rougail.newvar**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of var. |
-
+
diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md
index 451e9a748..4c085d6a1 100644
--- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffx variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val |
-
+
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **rougail.newvar**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A second variable.
**Default**: the value of var. |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md
index 334110a3b..5c531b728 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,7 +10,7 @@
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -23,7 +23,7 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
| **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val |
-
+
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md
index 13acb611c..50d3629d5 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,7 +10,7 @@
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -23,7 +23,7 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
| **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val |
-
+
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md
index 047addad8..44275fe33 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- rougail.dyn*val1* or rougail.dyn*val2*
+rougail.dyn*val1* or rougail.dyn*val2*
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "rougail.dynval1.var". |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md
index d37414b24..1716bf059 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Suffix has value.
**Default**: the value of the identifier. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 916e88939..088d1f290 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Suffix has value.
**Default**: the value of the identifier. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index e9d4645f3..ac51f9286 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- rougail.dyn*val1* or rougail.dyn*val2*
+rougail.dyn*val1* or rougail.dyn*val2*
This family builds families dynamically.
@@ -18,7 +18,7 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A dynamic variable.
**Disabled**: when the identifier is "val1". |
-
+
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
index 9efd90656..ac4fe76e3 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated. |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md
index b6cd0cf76..2110d6812 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- rougail.dyn*val1* or rougail.dyn*val2*
+rougail.dyn*val1* or rougail.dyn*val2*
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "rougail.dynval1.var" if it is defined. |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
index adb54bc1c..679b9bc15 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Example**: val1 |
- rougail.dyn*val1*
+rougail.dyn*val1*
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "rougail.dynval1.var" if it is defined. |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
index dc41bbe28..93cc58a61 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -10,7 +10,7 @@
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "rougail.dynval1.var" if it is defined. |
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- rougail.dyn*val1* or rougail.dyn*val2*
+rougail.dyn*val1* or rougail.dyn*val2*
This family builds families dynamically.
@@ -23,7 +23,7 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md
index 646a11892..aa1aba63f 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: a value (from an undocumented variable). |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
index 9757d7f20..34e4cd947 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
| **rougail.var2**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: true (from an undocumented variable). |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
index e7f638ea3..400eee027 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,5 +10,5 @@
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable calculated.
**Default**: (from an undocumented variable)
- a value
- a second value. |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md
index 08baea2b4..ceba25448 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A identifier variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: from suffix. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index d60fb5277..bf3b8b96f 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A identifier variable.
**Examples**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: from suffix. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md
index 047addad8..44275fe33 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- rougail.dyn*val1* or rougail.dyn*val2*
+rougail.dyn*val1* or rougail.dyn*val2*
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "rougail.dynval1.var". |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md
index b6cd0cf76..2110d6812 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- rougail.dyn*val1* or rougail.dyn*val2*
+rougail.dyn*val1* or rougail.dyn*val2*
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "rougail.dynval1.var" if it is defined. |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md
index 769e9a128..02bb268a0 100644
--- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -18,7 +18,7 @@ This family builds families dynamically.
|-----------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
- a family
+a family
>>> [!note] Informations
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard`
@@ -29,9 +29,9 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------|
| **rougail.dyn*val1*.family.var**
**rougail.dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A new variable. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md
index b4fdf3de0..e27b18ce9 100644
--- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2
- val3
- val4 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -25,7 +25,7 @@ This family builds families dynamically.
| **rougail.*val1*_dyn.var3**
**rougail.*val2*_dyn.var3**
**rougail.*val3*_dyn.var3**
**rougail.*val4*_dyn.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 3.
**Default**:
- the value of the variable "rougail.*val1*_dyn.var1"
- the value of the variable "rougail.*val2*_dyn.var1"
- the value of the variable "rougail.*val3*_dyn.var1"
- the value of the variable "rougail.*val4*_dyn.var1" |
| **rougail.*val1*_dyn.var4**
**rougail.*val2*_dyn.var4**
**rougail.*val3*_dyn.var4**
**rougail.*val4*_dyn.var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable 4.
**Default**: the value of the variable "rougail.val4_dyn.var1".
**Disabled**: depends on a calculation. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside.gitlab.md
index dab012ccf..f84842665 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
-
+
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- the value of the variable "rougail.my_dyn_family_*val1*.var"
- the value of the variable "rougail.my_dyn_family_*val2*.var" |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md
index 2400cbf79..94088a623 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,7 +10,7 @@
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- the value of the variable "rougail.my_dyn_family_*val1*.var"
- the value of the variable "rougail.my_dyn_family_*val2*.var" |
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -23,7 +23,7 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md
index 4fbdfddab..f55ecc629 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -10,7 +10,7 @@
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- the value of the variable "rougail.my_dyn_family_*val1*.var"
- the value of the variable "rougail.my_dyn_family_*val2*.var" |
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -23,7 +23,7 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.gitlab.md
index dab012ccf..f84842665 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
-
+
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- the value of the variable "rougail.my_dyn_family_*val1*.var"
- the value of the variable "rougail.my_dyn_family_*val2*.var" |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md
index 7a4372a74..3860abf43 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
-
+
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- the value of the variable "rougail.my_dyn_family_*val1*.var"
- the value of the variable "rougail.my_dyn_family_*val2*.var" |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md
index 037cb5a71..50e5f74c2 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
-
+
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: depends on a calculation. |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
index 7c71269a2..d95c51d68 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
-
+
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: depends on a calculation. |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
index 9045a0d0f..d488c1959 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -18,7 +18,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "rougail.var".
>>>
- a sub dynamic family
+a sub dynamic family
This family builds families dynamically.
@@ -31,13 +31,13 @@ This family builds families dynamically.
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
| **rougail.my_dyn_family_*val1*.subdyn_*val1*.var**
**rougail.my_dyn_family_*val1*.subdyn_*val2*.var**
**rougail.my_dyn_family_*val2*.subdyn_*val1*.var**
**rougail.my_dyn_family_*val2*.subdyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside a sub dynamic family.
**Default**: the value of the identifier. |
-
+
-
+
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A variable.
**Default**:
- the value of the variable "rougail.my_dyn_family_val1.subdyn_*val1*.var" if it is defined
- the value of the variable "rougail.my_dyn_family_val1.subdyn_*val2*.var" if it is defined |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md
index e054d6f3d..eca262293 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
| **rougail.dyn_*val1*.var**
**rougail.dyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: the value of the identifier. |
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "rougail.dyn_val1.var". |
-
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index 3a48e394c..5b3d93eed 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | Asuffix variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,11 +22,11 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
| **rougail.dyn_*val1*.var**
**rougail.dyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: the value of the identifier. |
-
+
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "rougail.dyn_val1.var" if it is defined. |
-
+
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md
index 9701bcb33..8b51188e4 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -25,7 +25,7 @@ This family builds families dynamically.
| **rougail.*val1*_dyn.var3**
**rougail.*val2*_dyn.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is relative first variable.
**Default**:
- the value of the variable "rougail.*val1*_dyn.var1"
- the value of the variable "rougail.*val2*_dyn.var1" |
| **rougail.*val1*_dyn.var4**
**rougail.*val2*_dyn.var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable of val1.
**Default**: the value of the variable "rougail.val1_dyn.var1". |
-
+
-
+
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md
index 9e981726e..3ee3e3f14 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -25,7 +25,7 @@ This family builds families dynamically.
| **rougail.*val1*_dyn.var3**
**rougail.*val2*_dyn.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is relative first variable.
**Default**:
- the value of the variable "rougail.*val1*_dyn.var1"
- the value of the variable "rougail.*val2*_dyn.var1" |
| **rougail.*val1*_dyn.var4**
**rougail.*val2*_dyn.var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable of val1.
**Default**: the value of the variable "rougail.val1_dyn.var1". |
-
+
-
+
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md
index 004aae4a4..5c742644f 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -18,7 +18,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "rougail.var".
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -33,9 +33,9 @@ This family contains lists of variable blocks.
| **rougail.dyn*val1*.leadership.follower1**
**rougail.dyn*val2*.leadership.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A follower1. |
| **rougail.dyn*val1*.leadership.follower2**
**rougail.dyn*val2*.leadership.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A follower2. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md
index 4b734ad7c..454386556 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.
**Examples**:
- val1
- val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -18,7 +18,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "rougail.var".
>>>
- a leadership
+a leadership
This family contains lists of variable blocks.
@@ -33,9 +33,9 @@ This family contains lists of variable blocks.
| **rougail.dyn*val1*.leadership.follower1**
**rougail.dyn*val2*.leadership.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A follower1. |
| **rougail.dyn*val1*.leadership.follower2**
**rougail.dyn*val2*.leadership.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A follower2. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md
index 0dfbebd14..167816147 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A identifier variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A dynamic variable.
**Default**: add 't' to each var value. |
- a Second dynamic variable
+a Second dynamic variable
This family builds families dynamically.
@@ -37,9 +37,9 @@ This family builds families dynamically.
| **rougail.dyn*val1*.dyn_*tval1*.var_identifier**
**rougail.dyn*val1*.dyn_*tval2*.var_identifier**
**rougail.dyn*val2*.dyn_*tval1*.var_identifier**
**rougail.dyn*val2*.dyn_*tval2*.var_identifier**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Identifier from first family.
**Default**: the value of the identifier. |
| **rougail.dyn*val1*.dyn_*tval1*.var_identifiers**
**rougail.dyn*val1*.dyn_*tval2*.var_identifiers**
**rougail.dyn*val2*.dyn_*tval1*.var_identifiers**
**rougail.dyn*val2*.dyn_*tval2*.var_identifiers**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Merge identifiers.
**Default**: join identifier 1 et identifier 2. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
index 0dfbebd14..167816147 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A identifier variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A dynamic variable.
**Default**: add 't' to each var value. |
- a Second dynamic variable
+a Second dynamic variable
This family builds families dynamically.
@@ -37,9 +37,9 @@ This family builds families dynamically.
| **rougail.dyn*val1*.dyn_*tval1*.var_identifier**
**rougail.dyn*val1*.dyn_*tval2*.var_identifier**
**rougail.dyn*val2*.dyn_*tval1*.var_identifier**
**rougail.dyn*val2*.dyn_*tval2*.var_identifier**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Identifier from first family.
**Default**: the value of the identifier. |
| **rougail.dyn*val1*.dyn_*tval1*.var_identifiers**
**rougail.dyn*val1*.dyn_*tval2*.var_identifiers**
**rougail.dyn*val2*.dyn_*tval1*.var_identifiers**
**rougail.dyn*val2*.dyn_*tval2*.var_identifiers**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Merge identifiers.
**Default**: join identifier 1 et identifier 2. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
index cbec71d18..ad867be6d 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A identifier variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -18,7 +18,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "rougail.var".
>>>
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -31,9 +31,9 @@ This family builds families dynamically.
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.*val1*.*val1*.var**
**rougail.*val1*.*val2*.var**
**rougail.*val2*.*val1*.var**
**rougail.*val2*.*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md
index ef73912bc..4c7cae801 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A identifier variable.
**Examples**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A dynamic variable.
**Default**: add 't' to each var value. |
- a Second dynamic variable
+a Second dynamic variable
This family builds families dynamically.
@@ -37,9 +37,9 @@ This family builds families dynamically.
| **rougail.dyn*val1*.dyn_*tval1*.var_identifier**
**rougail.dyn*val1*.dyn_*tval2*.var_identifier**
**rougail.dyn*val2*.dyn_*tval1*.var_identifier**
**rougail.dyn*val2*.dyn_*tval2*.var_identifier**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Identifier from first family.
**Default**: the value of the identifier. |
| **rougail.dyn*val1*.dyn_*tval1*.var_identifiers**
**rougail.dyn*val1*.dyn_*tval2*.var_identifiers**
**rougail.dyn*val2*.dyn_*tval1*.var_identifiers**
**rougail.dyn*val2*.dyn_*tval2*.var_identifiers**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Merge identifiers.
**Default**: join identifier 1 et identifier 2. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
index 39067a301..ca009a12a 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,7 +9,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A identifier variable.
**Default**:
- val1
- val2 |
- A dynamic family
+A dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A dynamic variable. |
- a Second dynamic variable
+a Second dynamic variable
This family builds families dynamically.
@@ -37,9 +37,9 @@ This family builds families dynamically.
| **rougail.dyn*val1*.dyn_*example*.var_identifier**
**rougail.dyn*val2*.dyn_*example*.var_identifier**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Identifier from first family.
**Default**: the value of the identifier. |
| **rougail.dyn*val1*.dyn_*example*.var_identifiers**
**rougail.dyn*val2*.dyn_*example*.var_identifiers**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Merge identifiers.
**Default**: join identifier 1 et identifier 2. |
-
+
-
+
-
+
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md
index 0647b37e5..04da68c56 100644
--- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- rougail.dyn*val1* or rougail.dyn*val2*
+rougail.dyn*val1* or rougail.dyn*val2*
This family builds families dynamically.
@@ -18,7 +18,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "rougail.var1".
>>>
- rougail.dyn*val1*.dyn*val1*, rougail.dyn*val1*.dyn*val2*, rougail.dyn*val2*.dyn*val1* or rougail.dyn*val2*.dyn*val2*
+rougail.dyn*val1*.dyn*val1*, rougail.dyn*val1*.dyn*val2*, rougail.dyn*val2*.dyn*val1* or rougail.dyn*val2*.dyn*val2*
This family builds families dynamically.
@@ -31,13 +31,13 @@ This family builds families dynamically.
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.dyn*val1*.var**
**rougail.dyn*val1*.dyn*val2*.var**
**rougail.dyn*val2*.dyn*val1*.var**
**rougail.dyn*val2*.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
-
+
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A variable calculated.
**Default**:
- the value of the variable "rougail.dyn*val1*.dynval1.var"
- the value of the variable "rougail.dyn*val2*.dynval1.var" |
-
+
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md
index 126076585..aebfc17c1 100644
--- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.
**Default**:
- val1
- val2 |
- rougail.dyn*val1* or rougail.dyn*val2*
+rougail.dyn*val1* or rougail.dyn*val2*
This family builds families dynamically.
@@ -18,7 +18,7 @@ This family builds families dynamically.
**Identifiers**: the value of the variable "rougail.var1".
>>>
- rougail.dyn*val1*.dyn*val1*, rougail.dyn*val1*.dyn*val2*, rougail.dyn*val2*.dyn*val1* or rougail.dyn*val2*.dyn*val2*
+rougail.dyn*val1*.dyn*val1*, rougail.dyn*val1*.dyn*val2*, rougail.dyn*val2*.dyn*val1* or rougail.dyn*val2*.dyn*val2*
This family builds families dynamically.
@@ -31,13 +31,13 @@ This family builds families dynamically.
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.dyn*val1*.var**
**rougail.dyn*val1*.dyn*val2*.var**
**rougail.dyn*val2*.dyn*val1*.var**
**rougail.dyn*val2*.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
-
+
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A variable calculated.
**Default**:
- the value of the variable "rougail.dynval1.dyn*val1*.var"
- the value of the variable "rougail.dynval1.dyn*val2*.var" |
-
+
diff --git a/tests/results/test_namespace/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace/60_9extra_dynamic.gitlab.md
index 48381c335..482907cfe 100644
--- a/tests/results/test_namespace/60_9extra_dynamic.gitlab.md
+++ b/tests/results/test_namespace/60_9extra_dynamic.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
@@ -9,16 +9,16 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: a |
-
+
- extra
+extra
>>> [!note] Informations
**extra**
`basic`
>>>
- extra.dyn_*a*
+extra.dyn_*a*
This family builds families dynamically.
@@ -31,7 +31,7 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------|---------------|
| **extra.dyn_*a*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md
index 55357e16b..9b9b5c3ef 100644
--- a/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md
+++ b/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`standard`
>>>
- général
+général
>>> [!note] Informations
**rougail.general**
`standard`
@@ -16,11 +16,11 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------|
| **rougail.general.varname**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | No change.
**Default**: a |
-
+
-
+
- extra
+extra
>>> [!note] Informations
**extra**
`basic`
@@ -31,7 +31,7 @@
|-------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------|
| **extra.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: a |
- extra.dyn_*a*
+extra.dyn_*a*
This family builds families dynamically.
@@ -44,7 +44,7 @@ This family builds families dynamically.
|----------------------------------------------------------------------------------------------------------------------------------|---------------|
| **extra.dyn_*a*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var. |
-
+
-
+
diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md
index 9a210b58a..160e13727 100644
--- a/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md
@@ -1,4 +1,4 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
@@ -9,7 +9,7 @@
|-------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable.
**Default**: val2 |
- a dynamic family
+a dynamic family
This family builds families dynamically.
@@ -22,7 +22,7 @@ This family builds families dynamically.
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-
+
-
+
diff --git a/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md
index 332410449..6324dac8b 100644
--- a/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md
@@ -1,11 +1,11 @@
- Rougail
+Rougail
>>> [!note] Informations
**rougail**
`basic`
>>>
- A leadership
+A leadership
This family contains lists of variable blocks.
@@ -20,7 +20,7 @@ This family contains lists of variable blocks.
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A follower1. |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower2. |
-
+
-
+
diff --git a/tests/results/test_namespace/warnings_04_5disabled_calculation_variable10 b/tests/results/test_namespace/warnings_04_5disabled_calculation_variable10
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace/warnings_04_5disabled_calculation_variable10
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace/warnings_04_5disabled_calculation_variable5 b/tests/results/test_namespace/warnings_04_5disabled_calculation_variable5
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace/warnings_04_5disabled_calculation_variable5
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace/warnings_04_5disabled_calculation_variable6 b/tests/results/test_namespace/warnings_04_5disabled_calculation_variable6
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace/warnings_04_5disabled_calculation_variable6
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace/warnings_04_5disabled_calculation_variable7 b/tests/results/test_namespace/warnings_04_5disabled_calculation_variable7
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace/warnings_04_5disabled_calculation_variable7
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace/warnings_04_5disabled_calculation_variable8 b/tests/results/test_namespace/warnings_04_5disabled_calculation_variable8
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace/warnings_04_5disabled_calculation_variable8
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace/warnings_04_5disabled_calculation_variable9 b/tests/results/test_namespace/warnings_04_5disabled_calculation_variable9
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace/warnings_04_5disabled_calculation_variable9
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.md
new file mode 100644
index 000000000..d8f27c8f9
--- /dev/null
+++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.md
@@ -0,0 +1,15 @@
+# Example with mandatory variables not filled in
+
+```yaml
+---
+rougail:
+ variable: example
+```
+# Example with all variables modifiable
+
+```yaml
+---
+rougail:
+ condition: true
+ variable: example
+```
diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.md
new file mode 100644
index 000000000..d6ac5352a
--- /dev/null
+++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.md
@@ -0,0 +1,14 @@
+# Example with mandatory variables not filled in
+
+```yaml
+---
+rougail:
+ variable: example
+```
+# Example with all variables modifiable
+
+```yaml
+---
+rougail:
+ variable: example
+```
diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.md
new file mode 100644
index 000000000..d6ac5352a
--- /dev/null
+++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.md
@@ -0,0 +1,14 @@
+# Example with mandatory variables not filled in
+
+```yaml
+---
+rougail:
+ variable: example
+```
+# Example with all variables modifiable
+
+```yaml
+---
+rougail:
+ variable: example
+```
diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.md
new file mode 100644
index 000000000..34377182e
--- /dev/null
+++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.md
@@ -0,0 +1,15 @@
+# Example with mandatory variables not filled in
+
+```yaml
+---
+rougail:
+ variable: example
+```
+# Example with all variables modifiable
+
+```yaml
+---
+rougail:
+ condition: false
+ variable: example
+```
diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable8.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable8.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable10 b/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable10
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable10
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable5 b/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable5
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable5
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable6 b/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable6
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable6
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable7 b/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable7
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable7
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable8 b/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable8
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable8
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable9 b/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable9
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace_examples/warnings_04_5disabled_calculation_variable9
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/test_load.py b/tests/test_load.py
index 13c7f77be..a36e8a8a6 100644
--- a/tests/test_load.py
+++ b/tests/test_load.py
@@ -20,7 +20,7 @@ excludes = [
]
test_ok = get_structures_list(excludes)
-# test_ok = [HERE.parent.parent / "rougail-tests" / "structures" / "40_0leadership_leader_follower"]
+# test_ok = [HERE.parent.parent / "rougail-tests" / "structures" / "04_5disabled_calculation_variable9"]
os.environ['COLUMNS'] = '80'