diff --git a/src/rougail/output_doc/doc.py b/src/rougail/output_doc/doc.py
index a575a525a..773ce0a68 100644
--- a/src/rougail/output_doc/doc.py
+++ b/src/rougail/output_doc/doc.py
@@ -25,6 +25,7 @@ from tiramisu import Calculation, groups
from tiramisu.error import ConfigError, display_list, PropertiesOptionError
from rougail.tiramisu import display_xmlfiles, normalize_family
from rougail.utils import undefined, PROPERTY_ATTRIBUTE
+from rougail.error import VariableCalculationDependencyError
from .config import OutPuts
from .i18n import _
@@ -32,6 +33,12 @@ from .utils import DocTypes, get_display_path, dump
from .example import Examples
+HIDDEN_PROPERTIES = [
+ "hidden",
+ "disabled",
+ ]
+
+
class RougailOutputDoc(Examples):
"""Rougail Output Doc:
Generate documentation from rougail description files
@@ -162,10 +169,7 @@ class RougailOutputDoc(Examples):
do not comment this family
"""
properties = child.property.get(uncalculated=True)
- for hidden_property in [
- "hidden",
- "disabled",
- ]:
+ for hidden_property in HIDDEN_PROPERTIES:
if hidden_property in properties:
return True
@@ -201,14 +205,16 @@ class RougailOutputDoc(Examples):
if not sub_informations:
return
if self.with_family:
- informations[name] = {
- "type": self._get_family_type(family),
- "informations": self._populate_family(
+ family_informations = self._populate_family(
family,
path,
- ),
- "children": sub_informations,
- }
+ )
+ if family_informations is not False:
+ informations[name] = {
+ "type": self._get_family_type(family),
+ "informations": family_informations,
+ "children": sub_informations,
+ }
else:
informations.update(sub_informations)
@@ -245,14 +251,15 @@ class RougailOutputDoc(Examples):
) -> Optional[dict]:
if variable.isdynamic():
sub_informations = self.dynamic_paths[path]
- elif variable.isfollower() and variable.index():
+ elif variable.isfollower() and path in informations: # variable.index():
sub_informations = informations[path]
else:
sub_informations = {}
- self._populate_variable(
+ if not self._populate_variable(
variable,
sub_informations,
- )
+ ):
+ return None
if self.example:
self._add_examples(variable, sub_informations, leader)
informations[path] = sub_informations
@@ -326,7 +333,8 @@ class RougailOutputDoc(Examples):
informations = self.dynamic_paths[path]
else:
informations = {}
- self._populate(family, informations)
+ if not self._populate(family, informations):
+ return False
if family.isleadership():
informations.setdefault("help", []).append(
_("This family contains lists of variable blocks.")
@@ -356,7 +364,8 @@ class RougailOutputDoc(Examples):
variable,
informations,
)
- self._populate(variable, informations)
+ if not self._populate(variable, informations):
+ return False
if "description" in informations:
informations["descriptions"] = [
self.formater.to_phrase(informations.pop("description"))
@@ -383,35 +392,40 @@ class RougailOutputDoc(Examples):
"name": _("Examples"),
"values": list(examples),
}
+ return True
def _populate(
self,
- obj,
+ child,
informations: dict,
):
- if not obj.isdynamic():
- informations["paths"] = [obj.path(uncalculated=True)]
- informations["names"] = [obj.name()]
- description = obj.description(uncalculated=True)
- if obj.name(uncalculated=True) == description and (
- not obj.isoptiondescription()
- or (self.support_namespace and obj.group_type() is not groups.namespace)
+ need_disabled, properties = self._parse_properties(child)
+ if not need_disabled:
+ return False
+ if not child.isdynamic():
+ informations["paths"] = [child.path(uncalculated=True)]
+ informations["names"] = [child.name()]
+ description = child.description(uncalculated=True)
+ if child.name(uncalculated=True) == description and (
+ not child.isoptiondescription()
+ or (self.support_namespace and child.group_type() is not groups.namespace)
):
- if obj.isoptiondescription() or not obj.isfollower() or not obj.index():
+ if child.isoptiondescription() or not child.isfollower() or not child.index():
warning = _('No attribute "description" for "{0}" in {1}').format(
- obj.path(uncalculated=True),
- display_xmlfiles(obj.information.get("ymlfiles")),
+ child.path(uncalculated=True),
+ display_xmlfiles(child.information.get("ymlfiles")),
)
warn(warning)
else:
- informations["description"] = self._convert_description(description, obj)
- help_ = obj.information.get("help", None)
+ informations["description"] = self._convert_description(description, child)
+ help_ = child.information.get("help", None)
if help_:
informations["help"] = [self.formater.to_phrase(help_)]
- self._parse_properties(
- obj,
- informations,
- )
+ if "properties" in informations:
+ informations["properties"].extend(properties)
+ else:
+ informations["properties"] = properties
+ return True
def _convert_description(self, description, obj):
if "{{ identifier }}" in description:
@@ -483,10 +497,10 @@ class RougailOutputDoc(Examples):
def _parse_type(
self,
- variable,
+ child,
informations,
):
- variable_type = variable.information.get("type")
+ variable_type = child.information.get("type")
doc_type = DocTypes.get(variable_type, {"params": {}})
informations["properties"] = [
{
@@ -495,7 +509,7 @@ class RougailOutputDoc(Examples):
}
]
# extra parameters for types
- option = variable.get()
+ option = child.get()
validators = []
for param, msg in doc_type["params"].items():
value = option.impl_get_extra(f"_{param}")
@@ -509,20 +523,20 @@ class RougailOutputDoc(Examples):
validators.append(msg.format(value))
# get validation information from annotator
- for name in variable.information.list():
+ for name in child.information.list():
if not name.startswith("validators_calculation"):
continue
validators.extend(
self._to_string(
- variable,
+ child,
"validators",
)
)
break
- if variable.information.get("type") == "regexp":
+ if child.information.get("type") == "regexp":
validators.append(
_('text based with regular expressions "{0}"').format(
- variable.pattern()
+ child.pattern()
)
)
if validators:
@@ -532,10 +546,10 @@ class RougailOutputDoc(Examples):
else:
key = _("Validators")
informations["validators"] = {"name": key, "values": validators}
- if variable.information.get("type") == "choice":
- choices = self._to_string(variable, "choice", do_not_raise=True)
+ if child.information.get("type") == "choice":
+ choices = self._to_string(child, "choice", do_not_raise=True)
if choices is None:
- choices = variable.value.list()
+ choices = child.value.list()
for idx, val in enumerate(choices):
if not isinstance(val, Calculation):
default = informations.get("default", {}).get("values")
@@ -547,43 +561,53 @@ class RougailOutputDoc(Examples):
)
informations["default_is_already_set"] = True
continue
- choices[idx] = self._to_string(variable, "choice", f"_{idx}")
+ choices[idx] = self._to_string(child, "choice", f"_{idx}")
informations["choices"] = {"name": _("Choices"), "values": choices}
def _parse_properties(
self,
variable,
- informations,
):
+ informations = []
properties = variable.property.get(uncalculated=True)
for mode in self.modes_level:
if mode not in properties:
continue
- informations.setdefault("properties", []).append(
+ informations.append(
{
"type": "mode",
"name": mode,
}
)
break
- for prop, msg in self.property_to_string:
+ for prop, translated_prop in self.property_to_string:
if prop in properties:
prop_obj = {
"type": "property",
- "name": msg,
+ "name": translated_prop,
}
elif variable.information.get(f"{prop}_calculation", False):
annotation = self._to_string(variable, prop)
- if not annotation:
- continue
- prop_obj = {
- "type": "property",
- "name": msg,
- "annotation": annotation,
- }
+ if annotation is None or isinstance(annotation, bool):
+ if annotation is None and prop in HIDDEN_PROPERTIES:
+ return False, {}
+ if not annotation:
+ continue
+ prop_obj = {
+ "type": "property",
+ "name": translated_prop,
+ }
+ else:
+ prop_obj = {
+ "type": "property",
+ "name": translated_prop,
+ "annotation": annotation,
+ }
else:
+ # this property is not in the variable so, do not comment it
continue
- informations.setdefault("properties", []).append(prop_obj)
+ informations.append(prop_obj)
+ return True, informations
def _get_default(
self,
@@ -604,11 +628,11 @@ class RougailOutputDoc(Examples):
def _to_string(
self,
- variable,
+ child,
prop,
do_not_raise=False,
):
- calculation = variable.information.get(f"{prop}_calculation", None)
+ calculation = child.information.get(f"{prop}_calculation", None)
if not calculation:
if do_not_raise:
return None
@@ -619,11 +643,11 @@ class RougailOutputDoc(Examples):
if isinstance(calculation, list):
values = []
for cal in calculation:
- value = self._calculation_to_string(variable, cal, prop)
+ value = self._calculation_to_string(child, cal, prop)
if value is not None:
values.append(value)
return values
- return self._calculation_to_string(variable, calculation, prop)
+ return self._calculation_to_string(child, calculation, prop)
def _calculation_to_string(self, child, calculation, prop):
if "description" in calculation:
@@ -634,141 +658,9 @@ class RougailOutputDoc(Examples):
if "type" not in calculation:
return calculation["value"]
if calculation["type"] == "jinja":
- if calculation["value"] is not True:
- values = calculation["value"]
- else:
- values = _("depends on a calculation")
- if (
- child.isoptiondescription()
- or not child.isfollower()
- or not child.index()
- ):
- warning = _(
- '"{0}" is a calculation for {1} but has no description in {2}'
- ).format(
- prop,
- child.path(),
- display_xmlfiles(child.information.get("ymlfiles")),
- )
- warn(warning)
+ values = self._calculation_jinja_to_string(child, calculation, prop)
elif calculation["type"] == "variable":
- if prop in PROPERTY_ATTRIBUTE:
- variable_path, value, condition = calculation["value"]
- variable = self.conf.forcepermissive.option(variable_path)
- try:
- variable.value.get()
- except AttributeError as err:
- variable = None
- else:
- uncalculated = variable.value.get(uncalculated=True)
- if not isinstance(
- uncalculated, Calculation
- ) and self._is_inaccessible_user_data(variable):
- return None
- if variable and self._is_inaccessible_user_data(variable):
- msg = _("depends on an undocumented variable")
- elif condition == "when_not":
- if not calculation["optional"]:
- msg = _('when the variable "{0}" hasn\'t the value "{1}"')
- else:
- msg = _('when the variable "{0}" is defined and hasn\'t the value "{1}"')
- else:
- if not calculation["optional"]:
- msg = _('when the variable "{0}" has the value "{1}"')
- else:
- msg = _('when the variable "{0}" is defined and has the value "{1}"')
- if not isinstance(value, str):
- value = dump(value)
- values = msg.format(variable_path, value)
- else:
- if calculation["optional"]:
- path = calculation["value"]
- if "{{ identifier }}" in path:
- if path not in self.dynamic_paths:
- return None
- else:
- try:
- self.conf.forcepermissive.option(path).get()
- except AttributeError:
- return None
- if not calculation["optional"]:
- true_msg = _('the value of the variable "{0}"')
- else:
- true_msg = _('the value of the variable "{0}" if it is defined')
- print('connard ben lan ...')
- hidden_msg = _("the value of an undocumented variable")
- if "{{ identifier }}" in calculation["ori_path"]:
- if calculation["value"] == calculation["ori_path"]:
- regexp = None
- else:
- regexp = compile(
- "^"
- + calculation["ori_path"].replace(
- "{{ identifier }}", "(.*)"
- )
- + "$"
- )
- informations = [self.dynamic_paths[calculation["value"]]]
- values = []
- all_is_undocumented = None
- for information in informations:
- for idx, path in enumerate(information["paths"]):
- if regexp and not regexp.search(path):
- continue
- if self._is_inaccessible_user_data(self.conf.option(path)):
- if all_is_undocumented is None:
- all_is_undocumented = True
- msg = hidden_msg
- else:
- if regexp:
- display_path = calculation["ori_path"]
- for identifier in regexp.findall(path):
- display_path = display_path.replace(
- "{{ identifier }}",
- self.formater.italic(identifier),
- 1,
- )
- else:
- display_path = get_display_path(information, idx)
- msg = true_msg.format(display_path)
- all_is_undocumented = False
- values.append(msg)
- if all_is_undocumented and len(values) > 1:
- values = _("the values of undocumented variables")
- else:
- variable_path = calculation["ori_path"]
- variable = self.conf.forcepermissive.option(variable_path)
- try:
- isfollower = variable.isfollower()
- except AttributeError as err:
- pass
- else:
- if not isfollower and self._is_inaccessible_user_data(variable):
- try:
- uncalculated = variable.value.get(uncalculated=True)
- except PropertiesOptionError:
- true_msg = None
- else:
- if uncalculated and not isinstance(
- uncalculated, Calculation
- ):
- if isinstance(uncalculated, list):
- uncalculated = self.formater.list(uncalculated)
- true_msg = _(
- "(from an undocumented variable){0}"
- ).format(uncalculated)
- else:
- if not isinstance(uncalculated, str):
- uncalculated = dump(uncalculated)
- true_msg = _(
- "{0} (from an undocumented variable)"
- ).format(uncalculated)
- else:
- true_msg = _("depends on an undocumented variable")
- if true_msg:
- values = true_msg.format(calculation["ori_path"])
- else:
- values = None
+ values = self._calculation_variable_to_string(child, calculation, prop)
elif calculation["type"] == "identifier":
if prop in PROPERTY_ATTRIBUTE:
values = calculation["value"]
@@ -781,3 +673,166 @@ class RougailOutputDoc(Examples):
if isinstance(values, str) and not values.endswith("."):
values += "."
return values
+
+ def _calculation_jinja_to_string(self, child, calculation, prop):
+ if calculation["value"] is not True:
+ values = calculation["value"]
+ else:
+ values = _("depends on a calculation")
+ if (
+ child.isoptiondescription()
+ or not child.isfollower()
+ or not child.index()
+ ):
+ warning = _(
+ '"{0}" is a calculation for {1} but has no description in {2}'
+ ).format(
+ prop,
+ child.path(),
+ display_xmlfiles(child.information.get("ymlfiles")),
+ )
+ # FIXME should be able to desactivate warn with cli
+ warn(warning)
+ return values
+
+ 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)
+ 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)
+ except VariableCalculationDependencyError:
+ msg = _("depends on an undocumented variable")
+ else:
+ if condition == "when" and value == variable_value or condition == "when_not" and value != variable_value:
+ if prop in HIDDEN_PROPERTIES:
+ return
+ # always "{prop}" (but depends on an undocumented variable)
+ return True
+ # depends on an undocumented variable but is never "{prop}"
+ return False
+ elif condition == "when_not":
+ if not calculation["optional"]:
+ msg = _('when the variable "{0}" hasn\'t the value "{1}"')
+ else:
+ msg = _('when the variable "{0}" is defined and hasn\'t the value "{1}"')
+ else:
+ if not calculation["optional"]:
+ msg = _('when the variable "{0}" has the value "{1}"')
+ else:
+ msg = _('when the variable "{0}" is defined and has the value "{1}"')
+ if not isinstance(value, str):
+ value = dump(value)
+ values = msg.format(variable_path, value)
+ else:
+ if calculation["optional"]:
+ path = calculation["value"]
+ if "{{ identifier }}" in path:
+ if path not in self.dynamic_paths:
+ return None
+ else:
+ try:
+ self.conf.forcepermissive.option(path).get()
+ except AttributeError:
+ return None
+ if not calculation["optional"]:
+ true_msg = _('the value of the variable "{0}"')
+ else:
+ true_msg = _('the value of the variable "{0}" if it is defined')
+ hidden_msg = _("the value of an undocumented variable")
+ if "{{ identifier }}" in calculation["ori_path"]:
+ if calculation["value"] == calculation["ori_path"]:
+ regexp = None
+ else:
+ regexp = compile(
+ "^"
+ + calculation["ori_path"].replace(
+ "{{ identifier }}", "(.*)"
+ )
+ + "$"
+ )
+ informations = [self.dynamic_paths[calculation["value"]]]
+ values = []
+ all_is_undocumented = None
+ for information in informations:
+ for idx, path in enumerate(information["paths"]):
+ if regexp and not regexp.search(path):
+ continue
+ if self._is_inaccessible_user_data(self.conf.option(path)):
+ if all_is_undocumented is None:
+ all_is_undocumented = True
+ msg = hidden_msg
+ else:
+ if regexp:
+ display_path = calculation["ori_path"]
+ for identifier in regexp.findall(path):
+ display_path = display_path.replace(
+ "{{ identifier }}",
+ self.formater.italic(identifier),
+ 1,
+ )
+ else:
+ display_path = get_display_path(information, idx)
+ msg = true_msg.format(display_path)
+ all_is_undocumented = False
+ values.append(msg)
+ if all_is_undocumented and len(values) > 1:
+ values = _("the values of undocumented variables")
+ else:
+ variable_path = calculation["ori_path"]
+ variable = self.conf.forcepermissive.option(variable_path)
+ try:
+ isfollower = variable.isfollower()
+ except AttributeError as err:
+ pass
+ else:
+ if not isfollower and self._is_inaccessible_user_data(variable):
+ try:
+ uncalculated = variable.value.get(uncalculated=True)
+ except PropertiesOptionError:
+ true_msg = None
+ else:
+ if uncalculated and not isinstance(
+ uncalculated, Calculation
+ ):
+ if isinstance(uncalculated, list):
+ uncalculated = self.formater.list(uncalculated)
+ true_msg = _(
+ "(from an undocumented variable){0}"
+ ).format(uncalculated)
+ else:
+ if not isinstance(uncalculated, str):
+ uncalculated = dump(uncalculated)
+ true_msg = _(
+ "{0} (from an undocumented variable)"
+ ).format(uncalculated)
+ else:
+ true_msg = _("depends on an undocumented variable")
+ if true_msg:
+ values = true_msg.format(calculation["ori_path"])
+ else:
+ values = None
+ return values
+
+ def _get_unmodified_default_value(self, child):
+ calculation = child.information.get(f"default_calculation", None)
+ if not calculation:
+ return child.value.get()
+ if calculation["type"] == "variable":
+ variable = self.conf.forcepermissive.option(calculation["value"])
+ if variable and self._is_inaccessible_user_data(variable):
+ return self._get_unmodified_default_value(variable)
+ raise VariableCalculationDependencyError()
diff --git a/src/rougail/output_doc/output/gitlab.py b/src/rougail/output_doc/output/gitlab.py
index cb2414f6b..5c2aae4e2 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 '' + title + '
\n\n'
+ return " " * level + '' + title + '
\n\n'
- def end_family(self):
- return ' '
+ def end_family(self, level):
+ return " " * level + ' \n\n'
def columns(
self,
diff --git a/src/rougail/output_doc/utils.py b/src/rougail/output_doc/utils.py
index 265056928..93e450dc9 100644
--- a/src/rougail/output_doc/utils.py
+++ b/src/rougail/output_doc/utils.py
@@ -251,7 +251,7 @@ class CommonFormater:
msg.append(self.property_to_string(informations, {}) + ENTER)
msg.append(self.end_family_informations())
msg.extend(self.dict_to_dict(value["children"], level))
- msg.append(self.end_namespace())
+ msg.append(self.end_namespace(ori_level))
else:
if value["type"] == "variable":
self.variable_to_string(value, table_datas)
@@ -261,7 +261,7 @@ class CommonFormater:
table_datas = []
msg.extend(self.family_to_string(value["informations"], level))
msg.extend(self.dict_to_dict(value["children"], level + 1))
- msg.append(self.end_family())
+ msg.append(self.end_family(level))
if table_datas:
msg.append(self.table(table_datas))
return msg
@@ -278,8 +278,8 @@ class CommonFormater:
level,
)
- def end_namespace(self) -> str:
- return self.end_family()
+ def end_namespace(self, level: int) -> str:
+ return self.end_family(level)
def family_to_string(self, informations: dict, level: int) -> str:
"""manage other family type"""
@@ -307,7 +307,7 @@ class CommonFormater:
msg.append(self.end_family_informations())
return msg
- def end_family(self):
+ def end_family(self, level: int) -> str:
return ''
def family_description(self, informations: dict) -> str():
diff --git a/tests/force_optional.adoc b/tests/force_optional.adoc
index 9ee9f00c5..1e5ddd393 100644
--- a/tests/force_optional.adoc
+++ b/tests/force_optional.adoc
@@ -56,10 +56,13 @@ My var8. +
== my var9
-
-
This family builds families dynamically.
+
+**var___example__**
+
+
+
**Identifiers**: the value of the variable "a.unknown.variable".
[cols="1a,1a"]
diff --git a/tests/results/test/00_6choice_variable_link2.gitlab.md b/tests/results/test/00_6choice_variable_link2.gitlab.md
index ccd5ea724..ddc06e0c1 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,4 +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". |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/16_2family_redefine_calculation.gitlab.md b/tests/results/test/16_2family_redefine_calculation.gitlab.md
index 664411567..dd54b4978 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,4 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var1. |
-
\ No newline at end of file
+
+
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 b3227ee41..d725e4c7b 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,4 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var1. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/16_5redefine_family.gitlab.md b/tests/results/test/16_5redefine_family.gitlab.md
index c35ca207d..cbdda57ef 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,4 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/16_5redefine_help.gitlab.md b/tests/results/test/16_5redefine_help.gitlab.md
index af52ade46..72df0077a 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/16_6exists_redefine_family.gitlab.md b/tests/results/test/16_6exists_redefine_family.gitlab.md
index face7ac4e..5364ff5a7 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,7 +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`
@@ -20,4 +22,5 @@
|----------------------------------------------------------------------------------------------------------------------------------|--------------------|
| **family2.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/20_0family_append.gitlab.md b/tests/results/test/20_0family_append.gitlab.md
index dd5f4310d..9a3e0e962 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/20_0multi_family.gitlab.md b/tests/results/test/20_0multi_family.gitlab.md
index fc63bb99b..4e17a5443 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,4 +16,7 @@
|---------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test/20_0multi_family_basic.gitlab.md b/tests/results/test/20_0multi_family_basic.gitlab.md
index 22025d412..43d2edd1c 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,4 +16,7 @@
|------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test/20_0multi_family_expert.gitlab.md b/tests/results/test/20_0multi_family_expert.gitlab.md
index 1773eff2d..f1f0ead1a 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,4 +16,7 @@
|---------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `advanced` | A variable. |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test/20_0multi_family_order.gitlab.md b/tests/results/test/20_0multi_family_order.gitlab.md
index 986fe19de..e0ece747f 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,8 +24,11 @@
|------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
- | Variable | Description |
+
+
+| Variable | Description |
|---------------------------------------------------------------------------------------------------------------------------------|--------------------|
| **family.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
-
\ No newline at end of file
+
+
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 dd4c2958e..4a9471c0b 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,4 +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 |
-
\ No newline at end of file
+
+
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 c86044b06..8c8dccea1 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,4 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------|
| **my_family.default**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Default.
**Default**: true |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/20_9default_information_parent.gitlab.md b/tests/results/test/20_9default_information_parent.gitlab.md
index 6bcab7fc5..aff6657e3 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,4 +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". |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/20_9family_absolute.gitlab.md b/tests/results/test/20_9family_absolute.gitlab.md
index 1c68df209..f5aa92d33 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,7 +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`
@@ -36,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`
@@ -47,4 +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". |
-
\ No newline at end of file
+
+
+
+
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 22033fcc4..32361e688 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,4 +20,7 @@
|--------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.subfamily.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
\ No newline at end of file
+
+
+
+
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 6c62542e9..3b57fa23f 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,4 +20,7 @@
|-----------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.subfamily.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
-
\ No newline at end of file
+
+
+
+
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 0abe112bc..d73302e9b 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,4 +20,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **family.sub_family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test/24_7validators_variable_optional.gitlab.md b/tests/results/test/24_7validators_variable_optional.gitlab.md
index 37a117951..8f21cf9be 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/40_0leadership.gitlab.md b/tests/results/test/40_0leadership.gitlab.md
index 3908e759e..2fd1005ec 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/40_0leadership_diff_name.gitlab.md b/tests/results/test/40_0leadership_diff_name.gitlab.md
index d0fcef7b6..f33826e02 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,4 +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. |
-
\ No newline at end of file
+
+
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 9465ab01f..a2ecc884d 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,4 +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. |
-
\ No newline at end of file
+
+
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 e5f3e5be1..900080c81 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/40_0leadership_leader_follower.gitlab.md b/tests/results/test/40_0leadership_leader_follower.gitlab.md
index 382aff88f..7e154f893 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,4 +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". |
-
\ No newline at end of file
+
+
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 0649c7000..41d6bc0c9 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,14 +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.
@@ -31,4 +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. |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test/40_0leadership_reduce.gitlab.md b/tests/results/test/40_0leadership_reduce.gitlab.md
index dd5e8a3b5..33e0f06a0 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/40_1leadership_append_follower.gitlab.md b/tests/results/test/40_1leadership_append_follower.gitlab.md
index ae20877b2..5db0c5be6 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/40_2leadership_calculation_index.gitlab.md b/tests/results/test/40_2leadership_calculation_index.gitlab.md
index c64a3951f..a7b5a9825 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,4 +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. |
-
\ No newline at end of file
+
+
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 c64a3951f..a7b5a9825 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/40_6leadership_follower_multi.gitlab.md b/tests/results/test/40_6leadership_follower_multi.gitlab.md
index 9de19284e..fd169975d 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,4 +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 |
-
\ No newline at end of file
+
+
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 74af1f04d..17a8b4859 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,4 +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 |
-
\ No newline at end of file
+
+
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 c6a8aff3f..be1bba1ba 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,4 +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". |
-
\ No newline at end of file
+
+
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 caadb04c3..9a2f3b1d2 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,7 +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`
@@ -20,4 +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". |
-
\ No newline at end of file
+
+
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 7ecca7fa7..1c68e6861 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,4 +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". |
-
\ No newline at end of file
+
+
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 67fe5495b..bba7ec15d 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,9 @@ 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 |
+
+
+| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
| **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/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md
index 67fe5495b..bba7ec15d 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,9 @@ 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 |
+
+
+| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
| **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/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 96fc390bd..1db965899 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,9 @@ 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 |
+
+
+| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------|
| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | Variable.
**Default**: the value of the variable "leader.follower". |
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 cf705360a..7981fbd42 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,9 @@ 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 |
+
+
+| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A calculated variable.
**Default**: the value of the variable "leader.follower1". |
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 5d2b596f3..66c2c8e11 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,9 @@ 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 |
+
+
+| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
| **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/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md
index 5d2b596f3..66c2c8e11 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,9 @@ 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 |
+
+
+| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
| **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/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md
index 42f1d4cb8..507be822e 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,9 @@ 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 |
+
+
+| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|
| **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 "leader.leader". |
diff --git a/tests/results/test/40_9leadership-calculation-variable.gitlab.md b/tests/results/test/40_9leadership-calculation-variable.gitlab.md
index d135b3fb3..764ae6065 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,4 +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 |
-
\ No newline at end of file
+
+
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 0f8804868..c24092199 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,7 +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.
@@ -26,4 +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 |
-
\ No newline at end of file
+
+
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 496bf60ed..baf189d7e 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,7 +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.
@@ -26,4 +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". |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/41_0choice_leader.gitlab.md b/tests/results/test/41_0choice_leader.gitlab.md
index 41c627fc0..db5f06a24 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,4 +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 |
-
\ No newline at end of file
+
+
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 7d7705dd4..559cb1b02 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/44_4leadership_mandatory.gitlab.md b/tests/results/test/44_4leadership_mandatory.gitlab.md
index 9409b224a..a0a4812be 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test/44_4leadership_mandatory_follower.gitlab.md
index e9c02d3de..7f7fbe5d5 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,4 +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. |
-
\ No newline at end of file
+
+
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 3074e6bbc..72541e3fb 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,4 +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. |
-
\ No newline at end of file
+
+
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 8d9a9ac71..0c5f08be5 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/60_0family_dynamic.gitlab.md b/tests/results/test/60_0family_dynamic.gitlab.md
index 20976725e..3214a59b0 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,4 +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. |
-
\ No newline at end of file
+
+
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 148761207..30e0f2c33 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,4 +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. |
-
\ No newline at end of file
+
+
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 b00453b7c..ea0e879d4 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/60_0family_dynamic_empty.gitlab.md b/tests/results/test/60_0family_dynamic_empty.gitlab.md
index 290022df3..2e6867a80 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,4 +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. |
-
\ No newline at end of file
+
+
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 87b0cfa66..1f4038bbf 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,4 +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. |
-
\ No newline at end of file
+
+
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 1aed242d6..6e8eb4995 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,4 +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. |
-
\ No newline at end of file
+
+
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 50bd8bf51..5b4a89796 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/60_0family_dynamic_static.gitlab.md b/tests/results/test/60_0family_dynamic_static.gitlab.md
index f34a1defb..19697c870 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/60_0family_dynamic_test.gitlab.md b/tests/results/test/60_0family_dynamic_test.gitlab.md
index d8e6d632b..a56c62a85 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,4 +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. |
-
\ No newline at end of file
+
+
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 07a36d50d..3f1c5018b 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,4 +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. |
-
\ No newline at end of file
+
+
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 480ccbd5c..0003cec0d 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,4 +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 |
-
\ No newline at end of file
+
+
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 84f38a97a..1240c07b2 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,4 +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 |
-
\ No newline at end of file
+
+
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 96ac30de1..3716815e5 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,4 +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 |
-
\ No newline at end of file
+
+
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 a134fa15d..dd24337fa 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/60_0family_mode.gitlab.md b/tests/results/test/60_0family_mode.gitlab.md
index bdd288ad9..ebcb4b7dc 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,4 +9,5 @@
|---------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Default**: non |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/60_1family_dynamic_jinja.gitlab.md b/tests/results/test/60_1family_dynamic_jinja.gitlab.md
index 1f8ed0765..b1fab202a 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,4 +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 |
-
\ No newline at end of file
+
+
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 b7867fd90..85d301a99 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,7 +22,11 @@ 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 |
+
+
+
+
+| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **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/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 9bc0a20f1..1257ea165 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,7 +22,11 @@ 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 |
+
+
+
+
+| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------|
| **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/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 3a7a77a2c..1966be1b9 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,7 +22,11 @@ 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 |
+
+
+
+
+| Variable | Description |
|------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------|
| **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/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 fb72681e7..76d58d8db 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,7 +22,11 @@ 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 |
+
+
+
+
+| Variable | Description |
|------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **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/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md
index 5059b43e0..1e7c03978 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,9 @@ 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 |
+
+
+| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **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/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test/60_2family_dynamic_outside_calc_empty.gitlab.md
index 8036e991a..0cdf47f39 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,9 @@ 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 |
+
+
+| Variable | Description |
|--------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **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/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md
index 3007a9a1b..d29d1b631 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,4 +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. |
-
\ No newline at end of file
+
+
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 5a76c64d5..d6a699d15 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,4 +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. |
-
\ No newline at end of file
+
+
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 b90f71390..7a90588de 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,4 +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. |
-
\ No newline at end of file
+
+
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 efd9015de..d905ae39e 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,4 +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. |
-
\ No newline at end of file
+
+
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 29edded65..e72a9f9cf 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,9 @@ 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 |
+
+
+| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------|
| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "dynval1.var". |
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 680f223b8..27e6588e1 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,9 @@ 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 |
+
+
+| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "dynval1.var" if it is defined. |
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 d4b632ced..d569ccd8a 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 678e73465..31985b58a 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,9 @@ 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 |
+
+
+| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------|
| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "dyn_val1.var". |
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 9554a50e5..9930cb0be 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,9 @@ 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 |
+
+
+| Variable | Description |
|------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------|
| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "dyn_val1.var" if it is defined. |
diff --git a/tests/results/test/60_6family_dynamic_leadership.gitlab.md b/tests/results/test/60_6family_dynamic_leadership.gitlab.md
index 69af59a97..ed9af4adc 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 e6150f210..44976c0e1 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 ec9212f19..49b49592e 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/68_0family_leadership_mode.gitlab.md b/tests/results/test/68_0family_leadership_mode.gitlab.md
index 47927301b..92b8766da 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test/warnings_16_2family_redefine_calculation b/tests/results/test/warnings_16_2family_redefine_calculation
index a07a947c4..3f9eeed42 100644
--- a/tests/results/test/warnings_16_2family_redefine_calculation
+++ b/tests/results/test/warnings_16_2family_redefine_calculation
@@ -1 +1 @@
-["No attribute \"description\" for \"family.var1\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\"", "No attribute \"description\" for \"family\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\"", "\"disabled\" is a calculation for family but has no description in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\""]
\ No newline at end of file
+["No attribute \"description\" for \"family.var1\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\"", "\"disabled\" is a calculation for family but has no description in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\"", "No attribute \"description\" for \"family\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\""]
\ No newline at end of file
diff --git a/tests/results/test_examples/warnings_16_2family_redefine_calculation b/tests/results/test_examples/warnings_16_2family_redefine_calculation
index a07a947c4..3f9eeed42 100644
--- a/tests/results/test_examples/warnings_16_2family_redefine_calculation
+++ b/tests/results/test_examples/warnings_16_2family_redefine_calculation
@@ -1 +1 @@
-["No attribute \"description\" for \"family.var1\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\"", "No attribute \"description\" for \"family\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\"", "\"disabled\" is a calculation for family but has no description in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\""]
\ No newline at end of file
+["No attribute \"description\" for \"family.var1\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\"", "\"disabled\" is a calculation for family but has no description in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\"", "No attribute \"description\" for \"family\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\""]
\ 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 398e7f386..9d62577a9 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,4 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.version**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_1empty_variable.gitlab.md b/tests/results/test_namespace/00_1empty_variable.gitlab.md
index a8c77bb67..6de2ced34 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,4 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.empty**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Empty. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_2default_calculated.gitlab.md b/tests/results/test_namespace/00_2default_calculated.gitlab.md
index 4bf61d9f1..f65fd6f0e 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,4 +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. |
-
\ No newline at end of file
+
+
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 12d519161..51dfb915e 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,4 +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. |
-
\ No newline at end of file
+
+
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 86d6d0b4d..b3623a69b 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,4 +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. |
-
\ No newline at end of file
+
+
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 54c2a09b9..ea4ae77a9 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,4 +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". |
-
\ No newline at end of file
+
+
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 574e5d99f..6d6d7efe8 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,4 +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!. |
-
\ No newline at end of file
+
+
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 0967c2219..4f53a10a1 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,4 +14,5 @@ a
variable!. |
| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. |
-
\ No newline at end of file
+
+
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 02531264a..d88d78144 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,4 +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". |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_4load_subfolder.gitlab.md b/tests/results/test_namespace/00_4load_subfolder.gitlab.md
index 32a83e9dd..c1db24801 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_5load_notype.gitlab.md b/tests/results/test_namespace/00_5load_notype.gitlab.md
index 307c3f9a3..22e1270d8 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,4 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **rougail.without_type**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: non |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6boolean.gitlab.md b/tests/results/test_namespace/00_6boolean.gitlab.md
index d7c205857..a0cba659b 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,4 +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 |
-
\ No newline at end of file
+
+
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 e83194cee..5a761a072 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,4 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------|-----------------------------------|
| **rougail.variable**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: true |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6choice.gitlab.md b/tests/results/test_namespace/00_6choice.gitlab.md
index 62b8b4a8a..b8285be00 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6choice_calculation.gitlab.md b/tests/results/test_namespace/00_6choice_calculation.gitlab.md
index a5fec59f2..e51edb082 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6choice_link.gitlab.md b/tests/results/test_namespace/00_6choice_link.gitlab.md
index 76b822c69..4ff482b3b 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,4 +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". |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6choice_variable.gitlab.md b/tests/results/test_namespace/00_6choice_variable.gitlab.md
index 246bef1d5..c903c927b 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,4 +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 |
-
\ No newline at end of file
+
+
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 a407527b7..5617fc2c5 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,4 +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". |
-
\ No newline at end of file
+
+
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 e6ab8f7d2..018602538 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,4 +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". |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test_namespace/00_6custom.gitlab.md b/tests/results/test_namespace/00_6custom.gitlab.md
index 7e3dd8b5b..b13f73cbb 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6domainname.gitlab.md b/tests/results/test_namespace/00_6domainname.gitlab.md
index cf5c6f36f..d7b7d903c 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6domainname_params.gitlab.md b/tests/results/test_namespace/00_6domainname_params.gitlab.md
index b49052f32..5bf5acadb 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6float.gitlab.md b/tests/results/test_namespace/00_6float.gitlab.md
index cc65845bf..3514d1d2f 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6integer.gitlab.md b/tests/results/test_namespace/00_6integer.gitlab.md
index 8e202858b..a65525dab 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6ip.gitlab.md b/tests/results/test_namespace/00_6ip.gitlab.md
index 2596b9631..6e51a4c4c 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6network.gitlab.md b/tests/results/test_namespace/00_6network.gitlab.md
index 3a626ebf2..73f5b5c2e 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6number.gitlab.md b/tests/results/test_namespace/00_6number.gitlab.md
index 8e202858b..a65525dab 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6port.gitlab.md b/tests/results/test_namespace/00_6port.gitlab.md
index 401e1f942..6622f9401 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6regexp.gitlab.md b/tests/results/test_namespace/00_6regexp.gitlab.md
index a730786ee..7e382707b 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6regexp_link.gitlab.md b/tests/results/test_namespace/00_6regexp_link.gitlab.md
index 1755f45fe..790585d2a 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6secret.gitlab.md b/tests/results/test_namespace/00_6secret.gitlab.md
index 550063231..a78c363a1 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6secret_param.gitlab.md b/tests/results/test_namespace/00_6secret_param.gitlab.md
index 5603aa958..9fd817a68 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_6string.gitlab.md b/tests/results/test_namespace/00_6string.gitlab.md
index 8b77c974c..1b217dd66 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_7choice_quote.gitlab.md b/tests/results/test_namespace/00_7choice_quote.gitlab.md
index 800eed25c..1612eddcf 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,4 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|
| **rougail.var**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A choice.
**Choices**:
- quote' **← (default)**
- quote"
- quote"' |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_7help.gitlab.md b/tests/results/test_namespace/00_7help.gitlab.md
index bf5d083a4..f7ccd345c 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_7help_quote.gitlab.md b/tests/results/test_namespace/00_7help_quote.gitlab.md
index d2bb92011..f2bf7dcb4 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,4 +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 ". |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_7help_sup.gitlab.md b/tests/results/test_namespace/00_7help_sup.gitlab.md
index 68bd7c500..d5eb892cf 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_7value_doublequote.gitlab.md b/tests/results/test_namespace/00_7value_doublequote.gitlab.md
index 9e4d5c455..ce684048d 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,4 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: quote" |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace/00_7value_doublequote2.gitlab.md
index 0ea1fc7f7..c5ee7925b 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,4 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: quote'" |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace/00_7value_doublequote3.gitlab.md
index 6ec44efa4..a77cd0a49 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,4 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: quote\"\' |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_7value_quote.gitlab.md b/tests/results/test_namespace/00_7value_quote.gitlab.md
index b09596822..7321acbf2 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,4 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: quote' |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_8calculation_information.gitlab.md b/tests/results/test_namespace/00_8calculation_information.gitlab.md
index a448251f1..bba56661d 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,4 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get information test_information. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace/00_8calculation_namespace.gitlab.md
index 8a6aec712..3ae3ccd36 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,4 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the namespace. |
-
\ No newline at end of file
+
+
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 52fac59fa..c820f815f 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,4 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: depends on a calculation. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_8test.gitlab.md b/tests/results/test_namespace/00_8test.gitlab.md
index a9907aa63..81098aa7e 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,4 +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 |
-
\ No newline at end of file
+
+
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 7de7ad8a0..d91547429 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_9choice_variables.gitlab.md b/tests/results/test_namespace/00_9choice_variables.gitlab.md
index 143137846..c8e79ffb1 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_9default_calculation.gitlab.md b/tests/results/test_namespace/00_9default_calculation.gitlab.md
index 9926cc252..c36cbbd8c 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,4 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: concat all parameters. |
-
\ No newline at end of file
+
+
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 ccf0b0eb2..4b3d84a5c 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,4 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: returns the information. |
-
\ No newline at end of file
+
+
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 9c659ccd1..8f44d8b17 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,4 +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. |
-
\ No newline at end of file
+
+
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 7fb1c55e0..c5d1fc887 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,4 +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. |
-
\ No newline at end of file
+
+
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 7fb1c55e0..c5d1fc887 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,4 +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. |
-
\ No newline at end of file
+
+
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 7fb1c55e0..c5d1fc887 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,4 +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. |
-
\ No newline at end of file
+
+
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 306b06f2a..2c297e80a 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,4 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------|
| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable. |
-
\ No newline at end of file
+
+
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 7e65c7b5c..2377180a3 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,4 +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. |
-
\ No newline at end of file
+
+
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 0f5ef1692..3a9e53c6c 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,4 +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 |
-
\ No newline at end of file
+
+
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 496b37172..48547f41b 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,4 +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". |
-
\ No newline at end of file
+
+
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 496b37172..48547f41b 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,4 +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". |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_9default_integer.gitlab.md b/tests/results/test_namespace/00_9default_integer.gitlab.md
index 7d83cd2ce..545eeb98f 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_9default_number.gitlab.md b/tests/results/test_namespace/00_9default_number.gitlab.md
index 7d83cd2ce..545eeb98f 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_9extra.gitlab.md b/tests/results/test_namespace/00_9extra.gitlab.md
index 828508277..9d073fde2 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,7 +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`
@@ -20,4 +22,5 @@
|----------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------|
| **extra.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: return no. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_9extra_calculation.gitlab.md b/tests/results/test_namespace/00_9extra_calculation.gitlab.md
index a656c9b6e..0ac4d0ae2 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,7 +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`
@@ -22,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/00_9extra_ouside.gitlab.md b/tests/results/test_namespace/00_9extra_ouside.gitlab.md
index ec1e001f7..7ea09031f 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,7 +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`
@@ -20,4 +22,5 @@
|----------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------|
| **extra.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value in extra |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/01_6boolean_multi.gitlab.md b/tests/results/test_namespace/01_6boolean_multi.gitlab.md
index 023f0ccdb..ba4e8d2f5 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/01_6custom_multi.gitlab.md b/tests/results/test_namespace/01_6custom_multi.gitlab.md
index 0ba8da2a2..aa737010d 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/01_6float_multi.gitlab.md b/tests/results/test_namespace/01_6float_multi.gitlab.md
index b7cd9ee60..b35e23010 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/01_6integer_multi.gitlab.md b/tests/results/test_namespace/01_6integer_multi.gitlab.md
index 7963fe8a5..91b29aed8 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/01_6string_empty.gitlab.md b/tests/results/test_namespace/01_6string_empty.gitlab.md
index 7222730e0..900f46199 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/01_6string_multi.gitlab.md b/tests/results/test_namespace/01_6string_multi.gitlab.md
index 6852585aa..99497a224 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,4 +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 |
-
\ No newline at end of file
+
+
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 18ddbd1c9..4cd1cd097 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,4 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: quote" |
-
\ No newline at end of file
+
+
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 210e57b34..94d61c47c 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,4 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: quote'" |
-
\ No newline at end of file
+
+
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 f1caabda5..f84607a78 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,4 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: quote' |
-
\ No newline at end of file
+
+
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 ac951614b..69b429b0a 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,4 +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. |
-
\ No newline at end of file
+
+
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 ac6e03baf..ba5dec553 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,4 +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". |
-
\ No newline at end of file
+
+
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 e8a6202f7..6d78a53f7 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,4 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------|
| **rougail.variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
- a
- b
- c **← (default)** |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/04_0type_param.gitlab.md b/tests/results/test_namespace/04_0type_param.gitlab.md
index 8bb962cf6..b34670db4 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,4 +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 |
-
\ No newline at end of file
+
+
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 acbfce50a..1362fde1e 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/04_1auto_save.gitlab.md b/tests/results/test_namespace/04_1auto_save.gitlab.md
index ef097433b..7e1d9402b 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,4 +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 |
-
\ No newline at end of file
+
+
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 9eaba035c..e04251d10 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,4 +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". |
-
\ No newline at end of file
+
+
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 978a92178..7fac2c378 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,4 +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". |
-
\ No newline at end of file
+
+
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 f140ddbd7..269c6977d 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,4 +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. |
-
\ No newline at end of file
+
+
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 f140ddbd7..269c6977d 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,4 +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. |
-
\ No newline at end of file
+
+
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 8db96fb03..019bbd4e0 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,4 +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. |
-
\ No newline at end of file
+
+
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 8105694c8..e7431bd92 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,4 +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. |
-
\ No newline at end of file
+
+
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 1b81547e3..523a23b28 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,4 +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. |
-
\ No newline at end of file
+
+
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 1b81547e3..523a23b28 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation.gitlab.md
index dcdcc9297..b24df8edd 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,4 +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". |
-
\ No newline at end of file
+
+
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 ed9588d2a..994eacf3e 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,4 +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. |
-
\ No newline at end of file
+
+
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 fffd1e84c..f859db24b 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,4 +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". |
-
\ No newline at end of file
+
+
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 f6be4050f..4023c2b42 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,4 +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. |
-
\ No newline at end of file
+
+
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 3429d0fd8..3b47416e6 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,4 +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". |
-
\ No newline at end of file
+
+
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 07e944fe4..e24d0514a 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,4 +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". |
-
\ No newline at end of file
+
+
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 e84274aef..325a709c6 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,4 +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". |
-
\ No newline at end of file
+
+
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 293147341..bded00306 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,4 +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". |
-
\ No newline at end of file
+
+
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 794ad8ecb..0faeb561e 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,4 +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". |
-
\ No newline at end of file
+
+
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 0bcce0501..a8c23ab79 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,4 +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". |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace/04_5hidden_calculation.gitlab.md
index 300ac5dd5..87b887722 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md
index 7a81e1724..8efdceb45 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,4 +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. |
-
\ No newline at end of file
+
+
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 2aea1578f..837d1a3ef 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/04_5validators.gitlab.md b/tests/results/test_namespace/04_5validators.gitlab.md
index e7c2cdb2c..b22fbffbb 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/04_5validators_differ.gitlab.md b/tests/results/test_namespace/04_5validators_differ.gitlab.md
index f7eb091a0..77cef1ef2 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/04_5validators_multi.gitlab.md b/tests/results/test_namespace/04_5validators_multi.gitlab.md
index 7e5968b01..8bdf06bce 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/04_5validators_multi2.gitlab.md b/tests/results/test_namespace/04_5validators_multi2.gitlab.md
index b0d362629..43d049843 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/04_5validators_multi3.gitlab.md b/tests/results/test_namespace/04_5validators_multi3.gitlab.md
index 4e1260a56..7ac390dc6 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,4 +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 |
-
\ No newline at end of file
+
+
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 b874316cb..c7daba583 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,4 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A variable.
**Default**: non |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/05_0multi_uniq.gitlab.md b/tests/results/test_namespace/05_0multi_uniq.gitlab.md
index a59ffb18d..b5c0cb9d7 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,4 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: non |
-
\ No newline at end of file
+
+
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 c78b1b4f2..5ecbfe7bb 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,4 +9,5 @@
|-----------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `advanced` `mandatory` `auto modified` | A variable.
**Default**: no |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/16_0redefine_description.gitlab.md b/tests/results/test_namespace/16_0redefine_description.gitlab.md
index 2e9953af7..483385ee2 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,4 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Redefined. |
-
\ No newline at end of file
+
+
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 43b32df38..a4e090d8b 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,4 +16,7 @@
|------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var1. |
-
\ No newline at end of file
+
+
+
+
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 17609622e..18f273578 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,4 +16,7 @@
|------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var1. |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test_namespace/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace/16_5exists_nonexists.gitlab.md
index 722835aef..d1fec58c6 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,4 +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 |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace/16_5redefine_calculation.gitlab.md
index a830db75c..a11495c53 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,4 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: returns yes. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/16_5redefine_choice.gitlab.md b/tests/results/test_namespace/16_5redefine_choice.gitlab.md
index e38a86fb0..080915958 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,4 +9,5 @@
|---------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------|
| **rougail.variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Choices**:
- a
- b |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/16_5redefine_default.gitlab.md b/tests/results/test_namespace/16_5redefine_default.gitlab.md
index 8c14385ab..4b4a99d45 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,4 +9,5 @@
|------------------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: yes |
-
\ No newline at end of file
+
+
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 bcce5db01..2d5ce600c 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,4 +9,5 @@
|---------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/16_5redefine_family.gitlab.md b/tests/results/test_namespace/16_5redefine_family.gitlab.md
index 21fd3a117..f19d95eda 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,4 +16,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test_namespace/16_5redefine_help.gitlab.md b/tests/results/test_namespace/16_5redefine_help.gitlab.md
index b003ef5e5..37cecc882 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test_namespace/16_5redefine_multi.gitlab.md b/tests/results/test_namespace/16_5redefine_multi.gitlab.md
index a59ffb18d..b5c0cb9d7 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,4 +9,5 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**: non |
-
\ No newline at end of file
+
+
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 3eb6aaa50..94a0f327c 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/16_5test_redefine.gitlab.md b/tests/results/test_namespace/16_5test_redefine.gitlab.md
index 7913092fc..1e55d8169 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,4 +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. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/16_6choice_redefine.gitlab.md b/tests/results/test_namespace/16_6choice_redefine.gitlab.md
index d0148f79d..46f6753f4 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,4 +9,5 @@
|-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| **rougail.var**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A choice.
**Choices**:
- a
- c **← (default)** |
-
\ No newline at end of file
+
+
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 abd7464a9..db3470d3a 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,7 +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`
@@ -27,4 +29,7 @@
|------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
| **rougail.family2.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test_namespace/16exists_exists.gitlab.md b/tests/results/test_namespace/16exists_exists.gitlab.md
index 8f4f64130..d66e4d799 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,4 +9,5 @@
|----------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Description. |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/20_0family_append.gitlab.md b/tests/results/test_namespace/20_0family_append.gitlab.md
index 0a759e8d5..463e24b6d 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test_namespace/20_0multi_family.gitlab.md b/tests/results/test_namespace/20_0multi_family.gitlab.md
index 82cb55ab4..8beced85b 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,4 +23,9 @@
|-----------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
-
\ No newline at end of file
+
+
+
+
+
+
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 e0aff5bc6..d6c8bc31e 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,4 +23,9 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
\ No newline at end of file
+
+
+
+
+
+
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 9382466b3..1f8c6b7bd 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,4 +23,9 @@
|-----------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `advanced` | A variable. |
-
\ No newline at end of file
+
+
+
+
+
+
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 de645c8a3..daa8e961f 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,8 +31,13 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
- | Variable | Description |
+
+
+| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------|--------------------|
| **rougail.family.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
-
\ No newline at end of file
+
+
+
+
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 18584d4c6..430bfd279 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,4 +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 |
-
\ No newline at end of file
+
+
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 35431afdd..4efbe6a93 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
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 a4ab46b12..5b7af67f1 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,4 +16,7 @@
|----------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------|
| **rougail.my_family.default**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Default.
**Default**: true |
-
\ No newline at end of file
+
+
+
+
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 d9623b1e8..3845938aa 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,4 +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". |
-
\ No newline at end of file
+
+
+
+
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 9dd7f5b23..fec2ce2a3 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,4 +20,7 @@
|------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
\ No newline at end of file
+
+
+
+
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 84da16873..a1b492cb3 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,4 +20,7 @@
|-------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
-
\ No newline at end of file
+
+
+
+
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 908924a3c..ed30bd4fd 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,4 +27,9 @@
|----------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.subfamily.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
\ No newline at end of file
+
+
+
+
+
+
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 ca2e30a4a..dce199826 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,4 +27,9 @@
|-------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.subfamily.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
-
\ No newline at end of file
+
+
+
+
+
+
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 52d2f2f80..90f298837 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 bbbb05de5..c107a10d5 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,4 +27,9 @@
|-----------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| **rougail.family.sub_family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
-
\ No newline at end of file
+
+
+
+
+
+
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 6f1057834..f25d68647 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,4 +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". |
-
\ No newline at end of file
+
+
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 3c1f65377..327ea0873 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,4 +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". |
-
\ No newline at end of file
+
+
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 9b842f7dd..4ff63ae9f 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test_namespace/40_0leadership.gitlab.md b/tests/results/test_namespace/40_0leadership.gitlab.md
index 02c269d80..22834b754 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 fc857e2d9..66c515717 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 26afc0a0f..e4afcb50c 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 f7c490a4a..5387d0cbe 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
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 2112eaf41..a6748071a 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,4 +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". |
-
\ No newline at end of file
+
+
+
+
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 1923274ca..10db9df06 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
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 4422b7c88..ace4a12c9 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,4 +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". |
-
\ No newline at end of file
+
+
+
+
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 e99c9065b..cc2717a61 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,14 +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.
@@ -38,4 +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. |
-
\ No newline at end of file
+
+
+
+
+
+
diff --git a/tests/results/test_namespace/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace/40_0leadership_reduce.gitlab.md
index 60211c8e3..8be0f85a3 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 b8f68931c..3db87c178 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 f6c5272e2..003b80ebf 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 f6c5272e2..003b80ebf 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 277332a56..72e74eeec 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 eb048a39c..56eb781df 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 5df0ae4c8..f11c89d0b 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
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 f60f02f68..27b18928e 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test_namespace/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace/40_8calculation_boolean.gitlab.md
index a62c10773..be5eb14ac 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,4 +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. |
-
\ No newline at end of file
+
+
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 b099e0efc..a06463459 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,4 +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". |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/40_8calculation_integer.gitlab.md b/tests/results/test_namespace/40_8calculation_integer.gitlab.md
index 9d97b0e59..5baeffc05 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,4 +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. |
-
\ No newline at end of file
+
+
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 ac4649f4a..690cfc661 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,4 +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 |
-
\ No newline at end of file
+
+
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 0d01da8e3..571d1d962 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,4 +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". |
-
\ No newline at end of file
+
+
+
+
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 fa5d365b7..189b97a02 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,7 +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`
@@ -27,4 +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". |
-
\ No newline at end of file
+
+
+
+
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 816e36e36..ec4160392 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,4 +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". |
-
\ No newline at end of file
+
+
+
+
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 cb7b3f756..aa8e5c555 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,8 +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 |
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 cb7b3f756..aa8e5c555 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,8 +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 |
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 707abad38..e7dd96147 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,8 +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 |
+
+
+| 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". |
-
\ No newline at end of file
+
+
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 ed32559fd..033d20d8b 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,8 +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 |
+
+
+| 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". |
-
\ No newline at end of file
+
+
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 ae23f614a..20e067196 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,8 +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 |
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 ae23f614a..20e067196 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,8 +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 |
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 465bdd3de..636fe76c0 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,8 +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 |
+
+
+| 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". |
-
\ No newline at end of file
+
+
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 1e38e01cd..9fc2b0616 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
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 f7c560f89..d8ed6f5cd 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,7 +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.
@@ -33,4 +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 |
-
\ No newline at end of file
+
+
+
+
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 8c7af1890..b4dc2c54f 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,7 +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.
@@ -33,4 +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". |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test_namespace/41_0choice_leader.gitlab.md b/tests/results/test_namespace/41_0choice_leader.gitlab.md
index 0f3870931..07d4f86ba 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
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 1c7e3f9e4..6d54d20a7 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 b2734a381..354ef7cef 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md
index 5aa6c6e50..bffd1bfb8 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 0c59298ac..23e8a8f2d 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 142efa742..89b2b3bc1 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 2e9df11bd..3ff0298c1 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 97fe36665..a119a8b7e 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,4 +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". |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test_namespace/60_0family_dynamic.gitlab.md b/tests/results/test_namespace/60_0family_dynamic.gitlab.md
index 83896a5ec..a26057405 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 b22072d8b..a7d5174f3 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 198899d55..b419804a1 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 786364807..56adca21b 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 8569a167c..9bd3b40e5 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 df41f74a7..ed30b50fb 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 9af21aef6..306679cea 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 cf713dbd7..8e3ab0744 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 37330f12c..d2473b21f 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 b0232e8a6..30a96f34c 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,8 +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 |
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 351636b0d..f0800a70c 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,8 +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 |
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 3efdccb7d..fe2563e84 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 d87aff138..77f01eb28 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 f4219a001..66c8f5c0a 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 b04da6e7e..de6b3ff90 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 9dd0f27c8..43f2475ef 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 34ed1e956..5d77dee9d 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
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 d38eb751d..eccc45a90 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
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 1280b7086..aa8bf10b7 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
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 d0b72627d..a72e8f97a 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test_namespace/60_0family_mode.gitlab.md b/tests/results/test_namespace/60_0family_mode.gitlab.md
index 6428833bc..3b7aed8de 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,4 +16,7 @@
|-----------------------------------------------------------------------------------------------------------------------------------|----------------------------------|
| **rougail.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Default**: non |
-
\ No newline at end of file
+
+
+
+
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 4cd88bd75..86d48180b 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
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 1496250c0..da86f9dfd 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,8 +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 |
+
+
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 7b3bb1f81..a7d3e04de 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,8 +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 |
+
+
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 1c55d723e..fc04ebbfb 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,8 +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 |
+
+
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 38ad77a99..85a629fdd 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,8 +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 |
+
+
+
+
+| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A second variable.
**Default**: the value of var. |
-
\ No newline at end of file
+
+
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 3eeeb64d5..97fc98c6b 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,8 +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 |
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 40426388c..451e9a748 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,8 +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 |
+
+
+| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
| **rougail.newvar**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A second variable.
**Default**: the value of var. |
-
\ No newline at end of file
+
+
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 48b41c946..334110a3b 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
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 8fa170994..13acb611c 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,4 +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 |
-
\ No newline at end of file
+
+
+
+
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 4e981784f..047addad8 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,8 +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 |
+
+
+| 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". |
-
\ No newline at end of file
+
+
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 2bd59f44f..d37414b24 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 e53dd1db3..916e88939 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 eecc59896..e9d4645f3 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,4 +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". |
-
\ No newline at end of file
+
+
+
+
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 aef2e6e0b..9efd90656 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,4 +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. |
-
\ No newline at end of file
+
+
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 3c22f411a..b6cd0cf76 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,8 +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 |
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 dbd5bd570..adb54bc1c 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,8 +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 |
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 01720840e..dc41bbe28 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 4825ac454..646a11892 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,4 +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). |
-
\ No newline at end of file
+
+
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 0013506a9..9757d7f20 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,4 +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). |
-
\ No newline at end of file
+
+
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 4dc23d547..e7f638ea3 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,4 +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. |
-
\ No newline at end of file
+
+
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 3c26fb59e..08baea2b4 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 26d6bc417..d60fb5277 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 4e981784f..047addad8 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,8 +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 |
+
+
+| 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". |
-
\ No newline at end of file
+
+
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 3c22f411a..b6cd0cf76 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,8 +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 |
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 01b5b4b37..769e9a128 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
+
+
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 901d71def..b4fdf3de0 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 9dc2cca90..dab012ccf 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,8 +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 |
+
+
+| 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" |
-
\ No newline at end of file
+
+
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 fddb8cde7..2400cbf79 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 364f3a898..4fbdfddab 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 9dc2cca90..dab012ccf 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,8 +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 |
+
+
+| 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" |
-
\ No newline at end of file
+
+
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 b0f600158..7a4372a74 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,8 +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 |
+
+
+| 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" |
-
\ No newline at end of file
+
+
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 f221861c1..037cb5a71 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,8 +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 |
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 4e3333896..7c71269a2 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,8 +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 |
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 3f8e1adf0..9045a0d0f 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,8 +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 |
+
+
+
+
+| 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 |
-
\ No newline at end of file
+
+
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 e4d600211..e054d6f3d 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,8 +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 |
+
+
+| 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". |
-
\ No newline at end of file
+
+
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 1281a2ce0..3a48e394c 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,8 +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 |
+
+
+| 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. |
-
\ No newline at end of file
+
+
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 445d195d6..9701bcb33 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,4 +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". |
-
\ No newline at end of file
+
+
+
+
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 c3ced63fa..9e981726e 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,4 +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". |
-
\ No newline at end of file
+
+
+
+
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 45d584c30..004aae4a4 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
+
+
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 56fa736f6..4b734ad7c 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
+
+
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 93407e062..0dfbebd14 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
+
+
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 93407e062..0dfbebd14 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
+
+
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 a253ae5d9..cbec71d18 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
+
+
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 f12d40062..ef73912bc 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
+
+
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 8e54c555d..39067a301 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
+
+
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 3e563b3e9..0647b37e5 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,8 +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 |
+
+
+
+
+| 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" |
-
\ No newline at end of file
+
+
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 9d8406f02..126076585 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,8 +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 |
+
+
+
+
+| 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" |
-
\ No newline at end of file
+
+
diff --git a/tests/results/test_namespace/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace/60_9extra_dynamic.gitlab.md
index 11bc87436..48381c335 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,14 +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.
@@ -29,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 da02307b3..55357e16b 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,7 +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`
@@ -27,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.
@@ -40,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 8e623661d..9a210b58a 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
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 356cbd9a1..332410449 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,4 +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. |
-
\ No newline at end of file
+
+
+
+
diff --git a/tests/results/test_namespace/warnings_16_2family_redefine_calculation b/tests/results/test_namespace/warnings_16_2family_redefine_calculation
index 0745c2fed..d766e2d00 100644
--- a/tests/results/test_namespace/warnings_16_2family_redefine_calculation
+++ b/tests/results/test_namespace/warnings_16_2family_redefine_calculation
@@ -1 +1 @@
-["No attribute \"description\" for \"rougail.family.var1\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\"", "No attribute \"description\" for \"rougail.family\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\"", "\"disabled\" is a calculation for rougail.family but has no description in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\""]
\ No newline at end of file
+["No attribute \"description\" for \"rougail.family.var1\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\"", "\"disabled\" is a calculation for rougail.family but has no description in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\"", "No attribute \"description\" for \"rougail.family\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\""]
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples/warnings_16_2family_redefine_calculation b/tests/results/test_namespace_examples/warnings_16_2family_redefine_calculation
index 0745c2fed..d766e2d00 100644
--- a/tests/results/test_namespace_examples/warnings_16_2family_redefine_calculation
+++ b/tests/results/test_namespace_examples/warnings_16_2family_redefine_calculation
@@ -1 +1 @@
-["No attribute \"description\" for \"rougail.family.var1\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\"", "No attribute \"description\" for \"rougail.family\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\"", "\"disabled\" is a calculation for rougail.family but has no description in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\""]
\ No newline at end of file
+["No attribute \"description\" for \"rougail.family.var1\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\"", "\"disabled\" is a calculation for rougail.family but has no description in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\"", "No attribute \"description\" for \"rougail.family\" in \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/00-base.yml\" and \"../../rougail-tests/structures/16_2family_redefine_calculation/rougail/01-base.yml\""]
\ No newline at end of file