diff --git a/src/rougail/output_doc/annotator.py b/src/rougail/output_doc/annotator.py
index 0280b15c0..a05cb70e9 100644
--- a/src/rougail/output_doc/annotator.py
+++ b/src/rougail/output_doc/annotator.py
@@ -260,7 +260,7 @@ class Annotator(Walk):
values.xmlfiles,
)
if variable:
- description = description.replace(f'"{r_path}"', f'"{{{index}}}"')
+ description = description.replace(f'"{r_path}"', f'{{{index}}}')
v = {"path": variable.path, "description": variable.description}
if identifiers:
v["identifiers"] = identifiers
diff --git a/src/rougail/output_doc/collect.py b/src/rougail/output_doc/collect.py
index 877b74b76..237f32a30 100644
--- a/src/rougail/output_doc/collect.py
+++ b/src/rougail/output_doc/collect.py
@@ -88,8 +88,11 @@ class _ToString:
values = self._calculation_variable_to_string(
child, calculation, attribute_type
)
- if isinstance(values, str) and not inside_list:
- values = add_dot(values)
+ if not inside_list:
+ if isinstance(values, str):
+ values = add_dot(values)
+ elif isinstance(values, dict) and "message" in values:
+ values["message"] = add_dot(values["message"])
elif calculation["type"] == "identifier":
values = self._calculation_identifier_to_string(
child, calculation, attribute_type
@@ -98,16 +101,19 @@ class _ToString:
values = add_dot(values)
elif calculation["type"] == "information":
if "path" in calculation:
- variable_path = self.doc_path(calculation["path"])
- values = _(
- 'the value of the information "{0}" of the variable "{1}"'
- ).format(calculation["information"], variable_path)
+ msg = _(
+ 'the value of the information "{0}" of the variable {{0}}'
+ ).format(calculation["information"])
+ if not inside_list:
+ msg = add_dot(msg)
+ variable = self.true_config.unrestraint.option(calculation["path"])
+ values = self._calculation_with_variable(variable, calculation, msg)
else:
values = _('the value of the global information "{0}"').format(
calculation["information"]
)
- if not inside_list:
- values = add_dot(values)
+ if not inside_list:
+ values = add_dot(values)
else:
values = _("the value of the {0}").format(calculation["type"])
if not inside_list:
@@ -216,7 +222,7 @@ class _ToString:
submsg = display_list(
[_("is {0}").format(prop), submsg], separator="or", sort=False
)
- msg = _('when the variable "{{0}}" {0}.').format(submsg)
+ msg = _('when the variable {{0}} {0}.').format(submsg)
path_obj = {
"path": self.doc_path(variable_path),
}
@@ -243,19 +249,22 @@ class _ToString:
variable.get()
except AttributeError:
return None
- true_msg = _('the value of the variable "{0}" if it is defined')
+ true_msg = _('the value of the variable {0} if it is defined')
else:
- true_msg = _('the value of the variable "{0}"')
- if not variable.isdynamic():
- func = self._calculation_normal_variable_to_string_not_properties
- else:
- func = self._calculation_dynamic_variable_to_string_not_properties
- return func(variable, calculation["value"], true_msg)
+ true_msg = _('the value of the variable {0}')
+ return self._calculation_with_variable(variable, calculation["value"], true_msg)
- def _calculation_normal_variable_to_string_not_properties(
- self, child, obj, true_msg
+ def _calculation_with_variable(self, child, calculation, msg):
+ if not child.isdynamic():
+ func = self._calculation_normal_with_variable
+ else:
+ func = self._calculation_dynamic_variable_with_variable
+ return func(child, calculation, msg)
+
+ def _calculation_normal_with_variable(
+ self, child, obj, msg
):
- isfollower = child.isfollower()
+ isfollower = not child.isoptiondescription() and child.isfollower()
if not isfollower and self.is_inaccessible_user_data(child):
uncalculated = child.value.default(uncalculated=True)
if uncalculated and not isinstance(uncalculated, Calculation):
@@ -267,38 +276,37 @@ class _ToString:
else:
if not isinstance(uncalculated, str):
uncalculated = dump(uncalculated)
- true_msg = _("{0} (from an undocumented variable)").format(
+ msg = _("{0} (from an undocumented variable)").format(
uncalculated
)
else:
- true_msg = _("the value of an undocumented variable")
+ msg = _("the value of an undocumented variable")
try:
description = child.description(uncalculated=True)
except AttributeError:
description = path
return {
- "message": true_msg,
+ "message": msg,
"path": obj,
"description": description,
}
- def _calculation_dynamic_variable_to_string_not_properties(
- self, child, obj, true_msg
+ def _calculation_dynamic_variable_with_variable(
+ self, child, obj, msg
):
values = []
for path, description, identifiers in self._get_annotation_variable(
child, obj.get("identifiers")
):
- cpath = calc_path(path, identifiers=identifiers)
- variable = self.true_config.option(cpath)
+ variable = self.true_config.option(path)
path_obj = {
"path": self.doc_path(path),
}
if identifiers:
path_obj["identifiers"] = identifiers
values.append(
- self._calculation_normal_variable_to_string_not_properties(
- variable, path_obj, true_msg
+ self._calculation_normal_with_variable(
+ variable, path_obj, msg
)
)
return values
diff --git a/src/rougail/output_doc/output/console.py b/src/rougail/output_doc/output/console.py
index 8d6fb4330..d34c5cd86 100644
--- a/src/rougail/output_doc/output/console.py
+++ b/src/rougail/output_doc/output/console.py
@@ -19,7 +19,41 @@ along with this program. If not, see .
from typing import List
from ..i18n import _
+from rougail.error import ExtensionError
from ..utils import dump, CommonFormatter
+try:
+ from rich.jupyter import JupyterMixin
+ from rich.segment import Segment
+ from rich.style import Style
+ from rich.console import Console, ConsoleOptions, RenderResult
+ from rich.table import Table
+ from rich.theme import Theme
+ from rich.syntax import Syntax
+except ModuleNotFoundError:
+ Console = None
+
+
+if Console:
+ class BlockQuote(JupyterMixin):
+ def __init__(
+ self,
+ elements: str,
+ ) -> None:
+ self.elements = elements
+ self.border_style = Style(color="blue")
+
+ def __rich_console__(
+ self, console: Console, options: ConsoleOptions
+ ) -> RenderResult:
+ """Render blockquote to the console."""
+ render_options = options.update(width=options.max_width - 4)
+ lines = console.render_lines(self.elements, render_options)
+ new_line = Segment("\n")
+ padding = Segment("β ", style=self.border_style)
+ for line in lines:
+ yield padding
+ yield from line
+ yield new_line
class Formatter(CommonFormatter):
@@ -37,14 +71,8 @@ class Formatter(CommonFormatter):
}
def __init__(self, rougailconfig, **kwargs) -> None:
- from rich.table import Table
- from rich.theme import Theme
- from rich.console import Console
- from rich.syntax import Syntax
-
- self.rich_table = Table
- self.rich_console = Console
- self.rich_syntaxt = Syntax
+ if not Console:
+ raise ExtensionError(_("cannot find python module rich, please install it!"))
self.custom_theme = Theme(self.titles_color)
self.max_line = 0
super().__init__(rougailconfig, **kwargs)
@@ -59,7 +87,7 @@ class Formatter(CommonFormatter):
force_terminal = "xterm-256color"
else:
force_terminal = None
- console = self.rich_console(
+ console = Console(
theme=self.custom_theme, force_terminal=force_terminal
)
with console.capture() as capture:
@@ -135,7 +163,7 @@ class Formatter(CommonFormatter):
first_char = "β’ "
char = f"{self.enter_tabular}{first_char}"
else:
- char = first_char = f"\n{self.family_informations_starts_line()} β’ "
+ char = first_char = f"\n β’ "
ret = ""
for idx, choice in enumerate(choices):
if not isinstance(choice, str):
@@ -166,7 +194,7 @@ class Formatter(CommonFormatter):
def yaml(self, _dump):
"""Dump yaml part of documentation"""
- return self.rich_syntaxt(f"---\n{_dump}", "yaml")
+ return Syntax(f"---\n{_dump}", "yaml")
def link(
self,
@@ -189,7 +217,7 @@ class Formatter(CommonFormatter):
def tabular(self, with_header: bool = True) -> str:
"""Transform list to a tabular in string format"""
- tabular = self.rich_table(show_lines=True)
+ tabular = Table(show_lines=True)
if with_header:
for column in self.tabular_datas.headers():
tabular.add_column(column, width=self.max_line)
@@ -197,16 +225,12 @@ class Formatter(CommonFormatter):
tabular.add_row(*data)
return tabular
- def family_informations(self) -> str:
- info = "[blue]" + self.bold(f"π {_('Informations')}") + "[/blue]"
- starts_line = self.family_informations_starts_line()
- return starts_line + info + "\n" + starts_line
-
- def family_informations_starts_line(self) -> str:
- return "[blue]β [/blue]"
-
def family_informations_ends_line(self) -> str:
return "\n"
def end_family_informations(self) -> str:
- return "\n"
+ return ""
+
+ def display_family_informations(self, msg) -> str:
+ msg = ["[blue]" + self.bold(f"π {_('Informations')}") + "\n" + "[/blue]"] + msg
+ return BlockQuote(self.family_informations_ends_line().join(msg))
diff --git a/src/rougail/output_doc/output/github.py b/src/rougail/output_doc/output/github.py
index 667f1c02e..84496e7c9 100644
--- a/src/rougail/output_doc/output/github.py
+++ b/src/rougail/output_doc/output/github.py
@@ -163,7 +163,7 @@ class Formatter(CommonFormatter):
link = f"{filename}#{name}"
else:
link = f"#{name}"
- return f"[{description}]({link})"
+ return f'"[{description}]({link})" ({path})'
def anchor(
self,
@@ -196,24 +196,18 @@ class Formatter(CommonFormatter):
def to_phrase(self, text: str) -> str:
return escape(text)
- def family_informations(self) -> str:
- starts_line = self.family_informations_starts_line()
- return starts_line + "[!NOTE]" + "\n" + starts_line + "\n"
-
- def family_informations_starts_line(self) -> str:
- return "> "
+ def family_informations(self):
+ start = self.family_informations_starts_line()
+ return [start + "[!NOTE]", start]
def family_informations_ends_line(self) -> str:
return "\\\n"
+ def family_informations_starts_line(self) -> str:
+ return "> "
-#
-# def family_to_string(self, *args, **kwargs) -> List[str]:
-# lst = super().family_to_string(*args, **kwargs)
-# if self.name != 'github':
-# return lst
-# # remove the title
-# ret = lst.pop(0)
-# if lst:
-# ret = "\n> ".join([l.strip() for l in lst]).strip() + "\n\n"
-# return [ret]
+ def display_family_informations(self, msg) -> str:
+ start = self.family_informations_starts_line()
+ end = self.family_informations_ends_line()
+ msg = self.family_informations() + [end.join([start + m for m in msg])]
+ return "\n".join(msg)
diff --git a/src/rougail/output_doc/output/gitlab.py b/src/rougail/output_doc/output/gitlab.py
index e4429a4a3..dc108bbc0 100644
--- a/src/rougail/output_doc/output/gitlab.py
+++ b/src/rougail/output_doc/output/gitlab.py
@@ -41,7 +41,7 @@ class Formatter(GithubFormatter):
pass
def family_informations(self) -> str:
- return f"> [!note] π {_('Informations')}\n"
+ return [f"> [!note] π {_('Informations')}"]
def table_header(self, lst):
"""Manage the header of a table"""
diff --git a/src/rougail/output_doc/utils.py b/src/rougail/output_doc/utils.py
index 4fd7b9f42..290c0131d 100644
--- a/src/rougail/output_doc/utils.py
+++ b/src/rougail/output_doc/utils.py
@@ -334,7 +334,8 @@ class CommonFormatter:
filename: Optional[str],
) -> str:
"""Set a text link to variable anchor"""
- return description
+# return f'"{description}"'
+ return f'"{description}" ({path})'
def stripped(
self,
@@ -375,9 +376,6 @@ class CommonFormatter:
##################
- def family_informations(self) -> str:
- return ""
-
def end_family_informations(self) -> str:
return ENTER
@@ -541,22 +539,19 @@ class CommonFormatter:
self.section(
_("Identifiers"), informations["identifier"], type_="family"
)
-
-
)
- starts_line = self.family_informations_starts_line()
if msg:
- fam_info = self.family_informations()
- if fam_info:
- ret.append(fam_info)
- ret.append(
- self.family_informations_ends_line().join(
- [starts_line + m for m in msg]
- )
- + self.end_family_informations()
- )
+ ret.append(self.display_family_informations(msg))
+ ret.append(self.end_family_informations())
return ret
+ def display_family_informations(self, msg) -> str:
+ fam_info = self.family_informations()
+ return fam_info + self.family_informations_ends_line().join(msg)
+
+ def family_informations(self) -> str:
+ return ""
+
def family_informations_starts_line(self) -> str:
return ""
@@ -1067,7 +1062,7 @@ class CommonFormatter:
)
return msg
- def message_to_string(self, msg, ret, identifiers=[]):
+ def message_to_string(self, msg, ret, *, identifiers=[]):
if isinstance(msg, dict):
if "submessage" in msg:
ret += msg["submessage"]
diff --git a/tests/changelog/00add_family/result.adoc b/tests/changelog/00add_family/result.adoc
index 09bd72534..2df22fc8c 100644
--- a/tests/changelog/00add_family/result.adoc
+++ b/tests/changelog/00add_family/result.adoc
@@ -5,7 +5,7 @@
| Variable | Description
| **family2.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable2. +
-**Default**: the value of the variable "a second variable"
+**Default**: the value of the variable "a second variable" (family.var2).
| **family2.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. +
**Default**: string4 +
@@ -14,8 +14,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | Fourth variable. +
**Default**:
-* the value of the variable "first variable"
-* the value of the variable "a second variable"
-* the value of the variable "a third variable"
+* the value of the variable "first variable" (var1)
+* the value of the variable "a second variable" (family.var2)
+* the value of the variable "a third variable" (family2.var3)
|====
diff --git a/tests/changelog/00add_family/result.gitlab.md b/tests/changelog/00add_family/result.gitlab.md
index a87dc0236..678869a1b 100644
--- a/tests/changelog/00add_family/result.gitlab.md
+++ b/tests/changelog/00add_family/result.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" |
-| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: string4
**Example**: string5 |
-| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)"
β’ the value of the variable "[a second variable](#family.var2)"
β’ the value of the variable "[a third variable](#family2.var3)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" (family.var2). |
+| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: string4
**Example**: string5 |
+| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)" (var1)
β’ the value of the variable "[a second variable](#family.var2)" (family.var2)
β’ the value of the variable "[a third variable](#family2.var3)" (family2.var3) |
diff --git a/tests/changelog/00add_family/result.html b/tests/changelog/00add_family/result.html
index a07aeb5ce..cc1d57066 100644
--- a/tests/changelog/00add_family/result.html
+++ b/tests/changelog/00add_family/result.html
@@ -2,14 +2,14 @@
-| Variable | Description |
+| Variable | Description |
-family2.var2 string standard mandatory | A variable2. Default: the value of the variable "a second variable" |
-family2.var3 string standard mandatory | A third variable. Default: string4 Example: string5 |
-family2.subfamily.variable string multiple standard mandatory unique | Fourth variable. Default: - the value of the variable "first variable"
-- the value of the variable "a second variable"
-- the value of the variable "a third variable"
|
+family2.var2 string standard mandatory | A variable2. Default: the value of the variable "a second variable" (family.var2). |
+family2.var3 string standard mandatory | A third variable. Default: string4 Example: string5 |
+family2.subfamily.variable string multiple standard mandatory unique | Fourth variable. Default: - the value of the variable "first variable" (var1)
+- the value of the variable "a second variable" (family.var2)
+- the value of the variable "a third variable" (family2.var3)
|
diff --git a/tests/changelog/00add_family/result.md b/tests/changelog/00add_family/result.md
index 556262648..56addb09a 100644
--- a/tests/changelog/00add_family/result.md
+++ b/tests/changelog/00add_family/result.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" |
-| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: string4
**Example**: string5 |
-| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)"
β’ the value of the variable "[a second variable](#family.var2)"
β’ the value of the variable "[a third variable](#family2.var3)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" (family.var2). |
+| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: string4
**Example**: string5 |
+| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)" (var1)
β’ the value of the variable "[a second variable](#family.var2)" (family.var2)
β’ the value of the variable "[a third variable](#family2.var3)" (family2.var3) |
diff --git a/tests/changelog/00add_family/result.sh b/tests/changelog/00add_family/result.sh
index ac90c39a2..0afcfa32a 100644
--- a/tests/changelog/00add_family/result.sh
+++ b/tests/changelog/00add_family/result.sh
@@ -5,7 +5,7 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mfamily2.var2[0m β A variable2. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (family.var2). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfamily2.var3[0m β A third variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: string4 β
@@ -14,10 +14,10 @@
β [1mfamily2.subfamily.variable[0m β Fourth variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "first β
-β β variable" β
+β β variable" (var1) β
β β β’ the value of the variable "a β
-β β second variable" β
+β β second variable" (family.var2) β
β β β’ the value of the variable "a third β
-β β variable" β
+β β variable" (family2.var3) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/changelog/11mod_variable_choices10/result.adoc b/tests/changelog/11mod_variable_choices10/result.adoc
index 873385456..8ebcfc632 100644
--- a/tests/changelog/11mod_variable_choices10/result.adoc
+++ b/tests/changelog/11mod_variable_choices10/result.adoc
@@ -9,7 +9,7 @@
* +++val1 β (default)+++
* +++val2+++
-* the value of the variable "the first source variable" **β (default)**
-* the value of the variable "the second source variable"
+* the value of the variable "the first source variable" (source_variable_1) **β (default)**
+* the value of the variable "the second source variable" (source_variable_2)
|====
diff --git a/tests/changelog/11mod_variable_choices10/result.gitlab.md b/tests/changelog/11mod_variable_choices10/result.gitlab.md
index 999f8e36a..a7a34cf6d 100644
--- a/tests/changelog/11mod_variable_choices10/result.gitlab.md
+++ b/tests/changelog/11mod_variable_choices10/result.gitlab.md
@@ -1,8 +1,8 @@
Modified variable
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ ~~val1 β (default)~~
β’ ~~val2~~
β’ the value of the variable "[the first source variable](#source_variable_1)" **β (default)**
β’ the value of the variable "[the second source variable](#source_variable_2)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ ~~val1 β (default)~~
β’ ~~val2~~
β’ the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1) **β (default)**
β’ the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2) |
diff --git a/tests/changelog/11mod_variable_choices10/result.html b/tests/changelog/11mod_variable_choices10/result.html
index f1902414d..8f6a29bf8 100644
--- a/tests/changelog/11mod_variable_choices10/result.html
+++ b/tests/changelog/11mod_variable_choices10/result.html
@@ -7,8 +7,8 @@
my_variable choice standard mandatory | A variable. Choices: val1 β (default)
val2
-- the value of the variable "the first source variable" β (default)
-- the value of the variable "the second source variable"
|
+the value of the variable "the first source variable" (source_variable_1) β (default)
+the value of the variable "the second source variable" (source_variable_2)
diff --git a/tests/changelog/11mod_variable_choices10/result.md b/tests/changelog/11mod_variable_choices10/result.md
index ca44b0000..cc39ad40a 100644
--- a/tests/changelog/11mod_variable_choices10/result.md
+++ b/tests/changelog/11mod_variable_choices10/result.md
@@ -1,6 +1,6 @@
# Modified variable
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ ~~val1 β (default)~~
β’ ~~val2~~
β’ the value of the variable "[the first source variable](#source_variable_1)" **β (default)**
β’ the value of the variable "[the second source variable](#source_variable_2)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ ~~val1 β (default)~~
β’ ~~val2~~
β’ the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1) **β (default)**
β’ the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2) |
diff --git a/tests/changelog/11mod_variable_choices10/result.sh b/tests/changelog/11mod_variable_choices10/result.sh
index 1abfba545..55a33a8fa 100644
--- a/tests/changelog/11mod_variable_choices10/result.sh
+++ b/tests/changelog/11mod_variable_choices10/result.sh
@@ -8,8 +8,10 @@
β β β’ [9mval1 β (default)[0m β
β β β’ [9mval2[0m β
β β β’ the value of the variable "the β
-β β first source variable" [1mβ (default)[0m β
+β β first source variable" β
+β β (source_variable_1) [1mβ (default)[0m β
β β β’ the value of the variable "the β
β β second source variable" β
+β β (source_variable_2) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/changelog/11mod_variable_choices11/result.adoc b/tests/changelog/11mod_variable_choices11/result.adoc
index 75659d2f3..24af7223c 100644
--- a/tests/changelog/11mod_variable_choices11/result.adoc
+++ b/tests/changelog/11mod_variable_choices11/result.adoc
@@ -7,8 +7,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
**Choices**:
-* +++the value of the variable "the first source variable"+++
-* +++the value of the variable "the second source variable"+++
+* +++the value of the variable "the first source variable" (source_variable_1)+++
+* +++the value of the variable "the second source variable" (source_variable_2)+++
* '#val1 **β (default)**#'
* '#val2#'
|====
diff --git a/tests/changelog/11mod_variable_choices11/result.gitlab.md b/tests/changelog/11mod_variable_choices11/result.gitlab.md
index 331a1adb4..0cae0f4f8 100644
--- a/tests/changelog/11mod_variable_choices11/result.gitlab.md
+++ b/tests/changelog/11mod_variable_choices11/result.gitlab.md
@@ -1,8 +1,8 @@
Modified variable
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ ~~the value of the variable "[the first source variable](#source_variable_1)"~~
β’ ~~the value of the variable "[the second source variable](#source_variable_2)"~~
β’ val1 **β (default)**
β’ val2 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ ~~the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1)~~
β’ ~~the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2)~~
β’ val1 **β (default)**
β’ val2 |
diff --git a/tests/changelog/11mod_variable_choices11/result.html b/tests/changelog/11mod_variable_choices11/result.html
index 8475d044c..ea772e53f 100644
--- a/tests/changelog/11mod_variable_choices11/result.html
+++ b/tests/changelog/11mod_variable_choices11/result.html
@@ -5,8 +5,8 @@
| Variable | Description |
-my_variable choice standard mandatory | A variable. Choices: the value of the variable "the first source variable"
-the value of the variable "the second source variable"
+my_variable choice standard mandatory | A variable. Choices: the value of the variable "the first source variable" (source_variable_1)
+the value of the variable "the second source variable" (source_variable_2)
- val1 β (default)
- val2
|
|
diff --git a/tests/changelog/11mod_variable_choices11/result.md b/tests/changelog/11mod_variable_choices11/result.md
index e309d9bbb..19ee9fc86 100644
--- a/tests/changelog/11mod_variable_choices11/result.md
+++ b/tests/changelog/11mod_variable_choices11/result.md
@@ -1,6 +1,6 @@
# Modified variable
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ ~~the value of the variable "[the first source variable](#source_variable_1)"~~
β’ ~~the value of the variable "[the second source variable](#source_variable_2)"~~
β’ val1 **β (default)**
β’ val2 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ ~~the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1)~~
β’ ~~the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2)~~
β’ val1 **β (default)**
β’ val2 |
diff --git a/tests/changelog/11mod_variable_choices11/result.sh b/tests/changelog/11mod_variable_choices11/result.sh
index 2cfc61013..62bde236d 100644
--- a/tests/changelog/11mod_variable_choices11/result.sh
+++ b/tests/changelog/11mod_variable_choices11/result.sh
@@ -6,9 +6,11 @@
β [1mmy_variable[0m β A variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
β β β’ [9mthe value of the variable "the [0m β
-β β [9mfirst source variable"[0m β
+β β [9mfirst source variable" [0m β
+β β [9m(source_variable_1)[0m β
β β β’ [9mthe value of the variable "the [0m β
-β β [9msecond source variable"[0m β
+β β [9msecond source variable" [0m β
+β β [9m(source_variable_2)[0m β
β β β’ [4mval1 [0m[1;4mβ (default)[0m β
β β β’ [4mval2[0m β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/changelog/11mod_variable_choices12/result.adoc b/tests/changelog/11mod_variable_choices12/result.adoc
index ac5410cb8..38285a1ff 100644
--- a/tests/changelog/11mod_variable_choices12/result.adoc
+++ b/tests/changelog/11mod_variable_choices12/result.adoc
@@ -9,6 +9,6 @@
* +++val1+++
* +++val2+++
-* the value of the variable "the first source variable"
+* the value of the variable "the first source variable" (source_variable_1).
|====
diff --git a/tests/changelog/11mod_variable_choices12/result.gitlab.md b/tests/changelog/11mod_variable_choices12/result.gitlab.md
index 3b89b3a6d..9fdde5abf 100644
--- a/tests/changelog/11mod_variable_choices12/result.gitlab.md
+++ b/tests/changelog/11mod_variable_choices12/result.gitlab.md
@@ -1,8 +1,8 @@
Modified variable
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Choices**:
β’ ~~val1~~
β’ ~~val2~~
β’ the value of the variable "[the first source variable](#source_variable_1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Choices**:
β’ ~~val1~~
β’ ~~val2~~
β’ the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1). |
diff --git a/tests/changelog/11mod_variable_choices12/result.html b/tests/changelog/11mod_variable_choices12/result.html
index ce79161ac..7ccb25856 100644
--- a/tests/changelog/11mod_variable_choices12/result.html
+++ b/tests/changelog/11mod_variable_choices12/result.html
@@ -7,7 +7,7 @@
my_variable choice basic mandatory | A variable. Choices: val1
val2
-- the value of the variable "the first source variable"
|
+the value of the variable "the first source variable" (source_variable_1).
diff --git a/tests/changelog/11mod_variable_choices12/result.md b/tests/changelog/11mod_variable_choices12/result.md
index df7a0c51c..a2da5c2fe 100644
--- a/tests/changelog/11mod_variable_choices12/result.md
+++ b/tests/changelog/11mod_variable_choices12/result.md
@@ -1,6 +1,6 @@
# Modified variable
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Choices**:
β’ ~~val1~~
β’ ~~val2~~
β’ the value of the variable "[the first source variable](#source_variable_1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Choices**:
β’ ~~val1~~
β’ ~~val2~~
β’ the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1). |
diff --git a/tests/changelog/11mod_variable_choices12/result.sh b/tests/changelog/11mod_variable_choices12/result.sh
index 4b8f62466..aed6f038e 100644
--- a/tests/changelog/11mod_variable_choices12/result.sh
+++ b/tests/changelog/11mod_variable_choices12/result.sh
@@ -9,5 +9,6 @@
β β β’ [9mval2[0m β
β β β’ the value of the variable "the β
β β first source variable" β
+β β (source_variable_1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/changelog/11mod_variable_choices13/result.adoc b/tests/changelog/11mod_variable_choices13/result.adoc
index 5ed7d30b9..3586b22fc 100644
--- a/tests/changelog/11mod_variable_choices13/result.adoc
+++ b/tests/changelog/11mod_variable_choices13/result.adoc
@@ -7,7 +7,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A variable. +
**Choices**:
-* +++the value of the variable "the first source variable"+++
+* +++the value of the variable "the first source variable" (source_variable_1).+++
* '#val1#'
* '#val2#'
|====
diff --git a/tests/changelog/11mod_variable_choices13/result.gitlab.md b/tests/changelog/11mod_variable_choices13/result.gitlab.md
index d60a763aa..210ad4ea9 100644
--- a/tests/changelog/11mod_variable_choices13/result.gitlab.md
+++ b/tests/changelog/11mod_variable_choices13/result.gitlab.md
@@ -1,8 +1,8 @@
Modified variable
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Choices**:
β’ ~~the value of the variable "[the first source variable](#source_variable_1)"~~
β’ val1
β’ val2 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Choices**:
β’ ~~the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1).~~
β’ val1
β’ val2 |
diff --git a/tests/changelog/11mod_variable_choices13/result.html b/tests/changelog/11mod_variable_choices13/result.html
index d7aa52d8e..33d98111a 100644
--- a/tests/changelog/11mod_variable_choices13/result.html
+++ b/tests/changelog/11mod_variable_choices13/result.html
@@ -5,7 +5,7 @@
| Variable | Description |
-my_variable choice basic mandatory | A variable. Choices: |
diff --git a/tests/changelog/11mod_variable_choices13/result.md b/tests/changelog/11mod_variable_choices13/result.md
index 8f463a98f..b58ec60fd 100644
--- a/tests/changelog/11mod_variable_choices13/result.md
+++ b/tests/changelog/11mod_variable_choices13/result.md
@@ -1,6 +1,6 @@
# Modified variable
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Choices**:
β’ ~~the value of the variable "[the first source variable](#source_variable_1)"~~
β’ val1
β’ val2 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Choices**:
β’ ~~the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1).~~
β’ val1
β’ val2 |
diff --git a/tests/changelog/11mod_variable_choices13/result.sh b/tests/changelog/11mod_variable_choices13/result.sh
index 1c3dbd46b..8d8552528 100644
--- a/tests/changelog/11mod_variable_choices13/result.sh
+++ b/tests/changelog/11mod_variable_choices13/result.sh
@@ -6,7 +6,8 @@
β [1mmy_variable[0m β A variable. β
β [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m β [1mChoices[0m: β
β β β’ [9mthe value of the variable "the [0m β
-β β [9mfirst source variable"[0m β
+β β [9mfirst source variable" [0m β
+β β [9m(source_variable_1).[0m β
β β β’ [4mval1[0m β
β β β’ [4mval2[0m β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/changelog/11mod_variable_choices9/result.adoc b/tests/changelog/11mod_variable_choices9/result.adoc
index 62500920b..c30981a24 100644
--- a/tests/changelog/11mod_variable_choices9/result.adoc
+++ b/tests/changelog/11mod_variable_choices9/result.adoc
@@ -9,8 +9,8 @@
* +++val1+++
* +++val2+++
-* the value of the variable "the first source variable"
-* the value of the variable "the second source variable"
+* the value of the variable "the first source variable" (source_variable_1)
+* the value of the variable "the second source variable" (source_variable_2)
**Default**: val1
|====
diff --git a/tests/changelog/11mod_variable_choices9/result.gitlab.md b/tests/changelog/11mod_variable_choices9/result.gitlab.md
index d150cea06..bbb649344 100644
--- a/tests/changelog/11mod_variable_choices9/result.gitlab.md
+++ b/tests/changelog/11mod_variable_choices9/result.gitlab.md
@@ -1,8 +1,8 @@
Modified variable
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ ~~val1~~
β’ ~~val2~~
β’ the value of the variable "[the first source variable](#source_variable_1)"
β’ the value of the variable "[the second source variable](#source_variable_2)"
**Default**: val1 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ ~~val1~~
β’ ~~val2~~
β’ the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1)
β’ the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2)
**Default**: val1 |
diff --git a/tests/changelog/11mod_variable_choices9/result.html b/tests/changelog/11mod_variable_choices9/result.html
index e002104e3..be2c3d196 100644
--- a/tests/changelog/11mod_variable_choices9/result.html
+++ b/tests/changelog/11mod_variable_choices9/result.html
@@ -7,8 +7,8 @@
my_variable choice standard mandatory | A variable. Choices: val1
val2
-- the value of the variable "the first source variable"
-- the value of the variable "the second source variable"
Default: val1 |
+the value of the variable "the first source variable" (source_variable_1)
+the value of the variable "the second source variable" (source_variable_2)
Default: val1
diff --git a/tests/changelog/11mod_variable_choices9/result.md b/tests/changelog/11mod_variable_choices9/result.md
index a2cbaed32..70cbb2a6a 100644
--- a/tests/changelog/11mod_variable_choices9/result.md
+++ b/tests/changelog/11mod_variable_choices9/result.md
@@ -1,6 +1,6 @@
# Modified variable
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ ~~val1~~
β’ ~~val2~~
β’ the value of the variable "[the first source variable](#source_variable_1)"
β’ the value of the variable "[the second source variable](#source_variable_2)"
**Default**: val1 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ ~~val1~~
β’ ~~val2~~
β’ the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1)
β’ the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2)
**Default**: val1 |
diff --git a/tests/changelog/11mod_variable_choices9/result.sh b/tests/changelog/11mod_variable_choices9/result.sh
index fdaa645f8..b874d95b4 100644
--- a/tests/changelog/11mod_variable_choices9/result.sh
+++ b/tests/changelog/11mod_variable_choices9/result.sh
@@ -9,8 +9,10 @@
β β β’ [9mval2[0m β
β β β’ the value of the variable "the β
β β first source variable" β
+β β (source_variable_1) β
β β β’ the value of the variable "the β
β β second source variable" β
+β β (source_variable_2) β
β β [1mDefault[0m: val1 β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/changelog/12mod_default_value4/result.adoc b/tests/changelog/12mod_default_value4/result.adoc
index f464e73aa..4992a9720 100644
--- a/tests/changelog/12mod_default_value4/result.adoc
+++ b/tests/changelog/12mod_default_value4/result.adoc
@@ -6,6 +6,6 @@
| **variable_2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second variable. +
**Default**: +++val1+++ +
-#the value of the variable "the first variable"#
+#the value of the variable "the first variable" (variable_1).#
|====
diff --git a/tests/changelog/12mod_default_value4/result.gitlab.md b/tests/changelog/12mod_default_value4/result.gitlab.md
index 7712ec4ac..7661e2905 100644
--- a/tests/changelog/12mod_default_value4/result.gitlab.md
+++ b/tests/changelog/12mod_default_value4/result.gitlab.md
@@ -1,8 +1,8 @@
Modified variable
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
-| **variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.
**Default**: ~~val1~~
the value of the variable "[the first variable](#variable_1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------|
+| **variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.
**Default**: ~~val1~~
the value of the variable "[the first variable](#variable_1)" (variable_1). |
diff --git a/tests/changelog/12mod_default_value4/result.html b/tests/changelog/12mod_default_value4/result.html
index 82907ed04..1170f6a81 100644
--- a/tests/changelog/12mod_default_value4/result.html
+++ b/tests/changelog/12mod_default_value4/result.html
@@ -2,10 +2,10 @@
-| Variable | Description |
+| Variable | Description |
-variable_2 string standard mandatory | The second variable. Default: val1 the value of the variable "the first variable" |
+variable_2 string standard mandatory | The second variable. Default: val1 the value of the variable "the first variable" (variable_1). |
diff --git a/tests/changelog/12mod_default_value4/result.md b/tests/changelog/12mod_default_value4/result.md
index 9b42d9764..5f3d2f0ab 100644
--- a/tests/changelog/12mod_default_value4/result.md
+++ b/tests/changelog/12mod_default_value4/result.md
@@ -1,6 +1,6 @@
# Modified variable
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
-| **variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.
**Default**: ~~val1~~
the value of the variable "[the first variable](#variable_1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------|
+| **variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.
**Default**: ~~val1~~
the value of the variable "[the first variable](#variable_1)" (variable_1). |
diff --git a/tests/changelog/12mod_default_value4/result.sh b/tests/changelog/12mod_default_value4/result.sh
index 4988002da..8fe495fb9 100644
--- a/tests/changelog/12mod_default_value4/result.sh
+++ b/tests/changelog/12mod_default_value4/result.sh
@@ -6,6 +6,6 @@
β [1mvariable_2[0m β The second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: [9mval1[0m β
β β [4mthe value of the variable "the first[0m β
-β β [4mvariable"[0m β
+β β [4mvariable" (variable_1).[0m β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/changelog/12mod_default_value5/result.adoc b/tests/changelog/12mod_default_value5/result.adoc
index e30d16f51..0e9057ad2 100644
--- a/tests/changelog/12mod_default_value5/result.adoc
+++ b/tests/changelog/12mod_default_value5/result.adoc
@@ -8,6 +8,6 @@
**Default**:
* +++val1+++
-* '#the value of the variable "the first variable"#'
+* '#the value of the variable "the first variable" (variable_1)#'
|====
diff --git a/tests/changelog/12mod_default_value5/result.gitlab.md b/tests/changelog/12mod_default_value5/result.gitlab.md
index f77cd7da1..fb2919614 100644
--- a/tests/changelog/12mod_default_value5/result.gitlab.md
+++ b/tests/changelog/12mod_default_value5/result.gitlab.md
@@ -1,8 +1,8 @@
Modified variable
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------|
-| **variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The second variable.
**Default**:
β’ ~~val1~~
β’ the value of the variable "[the first variable](#variable_1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The second variable.
**Default**:
β’ ~~val1~~
β’ the value of the variable "[the first variable](#variable_1)" (variable_1) |
diff --git a/tests/changelog/12mod_default_value5/result.html b/tests/changelog/12mod_default_value5/result.html
index 784da2ee2..ea48684e7 100644
--- a/tests/changelog/12mod_default_value5/result.html
+++ b/tests/changelog/12mod_default_value5/result.html
@@ -6,7 +6,7 @@
variable_2 string multiple standard mandatory unique | The second variable. Default: val1
-- the value of the variable "the first variable"
|
+the value of the variable "the first variable" (variable_1)
diff --git a/tests/changelog/12mod_default_value5/result.md b/tests/changelog/12mod_default_value5/result.md
index 14e367c83..6adb90c45 100644
--- a/tests/changelog/12mod_default_value5/result.md
+++ b/tests/changelog/12mod_default_value5/result.md
@@ -1,6 +1,6 @@
# Modified variable
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------|
-| **variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The second variable.
**Default**:
β’ ~~val1~~
β’ the value of the variable "[the first variable](#variable_1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The second variable.
**Default**:
β’ ~~val1~~
β’ the value of the variable "[the first variable](#variable_1)" (variable_1) |
diff --git a/tests/changelog/12mod_default_value5/result.sh b/tests/changelog/12mod_default_value5/result.sh
index 9d9e3834a..585b38588 100644
--- a/tests/changelog/12mod_default_value5/result.sh
+++ b/tests/changelog/12mod_default_value5/result.sh
@@ -7,6 +7,6 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m [0m[1;4;7munique[0m[1;7m [0m β β’ [9mval1[0m β
β β β’ [4mthe value of the variable "the [0m β
-β β [4mfirst variable"[0m β
+β β [4mfirst variable" (variable_1)[0m β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/changelog/40_dynamic_mod_default1/result.adoc b/tests/changelog/40_dynamic_mod_default1/result.adoc
index cc900cbcb..365f943ad 100644
--- a/tests/changelog/40_dynamic_mod_default1/result.adoc
+++ b/tests/changelog/40_dynamic_mod_default1/result.adoc
@@ -6,8 +6,8 @@
| **__val1___dyn.var2** +
**__val2___dyn.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: +++the value of the variable "a first variable"+++ +
-+++the value of the variable "a first variable"+++ +
+**Default**: +++the value of the variable "a first variable" (__val1___dyn.var1)+++ +
++++the value of the variable "a first variable" (__val2___dyn.var1)+++ +
#val#
|====
diff --git a/tests/changelog/40_dynamic_mod_default1/result.gitlab.md b/tests/changelog/40_dynamic_mod_default1/result.gitlab.md
index 8d6c768c2..ce6d59826 100644
--- a/tests/changelog/40_dynamic_mod_default1/result.gitlab.md
+++ b/tests/changelog/40_dynamic_mod_default1/result.gitlab.md
@@ -1,8 +1,8 @@
Modified variable
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| ***val1*_dyn.var2**
***val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: ~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)"~~
~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)"~~
val |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| ***val1*_dyn.var2**
***val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: ~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val1*_dyn.var1)~~
~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val2*_dyn.var1)~~
val |
diff --git a/tests/changelog/40_dynamic_mod_default1/result.html b/tests/changelog/40_dynamic_mod_default1/result.html
index 55dc20f5c..ef172be9e 100644
--- a/tests/changelog/40_dynamic_mod_default1/result.html
+++ b/tests/changelog/40_dynamic_mod_default1/result.html
@@ -2,10 +2,10 @@
-| Variable | Description |
+| Variable | Description |
-val1_dyn.var2 val2_dyn.var2 string standard mandatory | A second variable. Default: the value of the variable "a first variable"
the value of the variable "a first variable" val |
+val1_dyn.var2 val2_dyn.var2 string standard mandatory | A second variable. Default: the value of the variable "a first variable" (val1_dyn.var1)
the value of the variable "a first variable" (val2_dyn.var1) val |
diff --git a/tests/changelog/40_dynamic_mod_default1/result.md b/tests/changelog/40_dynamic_mod_default1/result.md
index 77f8684ac..d27914766 100644
--- a/tests/changelog/40_dynamic_mod_default1/result.md
+++ b/tests/changelog/40_dynamic_mod_default1/result.md
@@ -1,6 +1,6 @@
# Modified variable
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| ***val1*_dyn.var2**
***val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: ~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)"~~
~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)"~~
val |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| ***val1*_dyn.var2**
***val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: ~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val1*_dyn.var1)~~
~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val2*_dyn.var1)~~
val |
diff --git a/tests/changelog/40_dynamic_mod_default1/result.sh b/tests/changelog/40_dynamic_mod_default1/result.sh
index 7c2c84b1b..2779d845e 100644
--- a/tests/changelog/40_dynamic_mod_default1/result.sh
+++ b/tests/changelog/40_dynamic_mod_default1/result.sh
@@ -5,9 +5,9 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1;3mval1[0m[1m_dyn.var2[0m β A second variable. β
β [1;3mval2[0m[1m_dyn.var2[0m β [1mDefault[0m: [9mthe value of the variable [0m β
-β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [9m"a first variable"[0m β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [9m"a first variable" ([0m[3;9mval1[0m[9m_dyn.var1)[0m β
β β [9mthe value of the variable "a first [0m β
-β β [9mvariable"[0m β
+β β [9mvariable" ([0m[3;9mval2[0m[9m_dyn.var1)[0m β
β β [4mval[0m β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/changelog/40_dynamic_mod_default2/result.adoc b/tests/changelog/40_dynamic_mod_default2/result.adoc
index 7882ff2d1..1c824ed1b 100644
--- a/tests/changelog/40_dynamic_mod_default2/result.adoc
+++ b/tests/changelog/40_dynamic_mod_default2/result.adoc
@@ -9,7 +9,7 @@
**Default**:
* +++val+++
-* '#the value of the variable "a first variable"#'
-* '#the value of the variable "a first variable"#'
+* '#the value of the variable "a first variable" (__val1___dyn.var1)#'
+* '#the value of the variable "a first variable" (__val2___dyn.var1)#'
|====
diff --git a/tests/changelog/40_dynamic_mod_default2/result.gitlab.md b/tests/changelog/40_dynamic_mod_default2/result.gitlab.md
index 26fc95ed7..2ea6cc170 100644
--- a/tests/changelog/40_dynamic_mod_default2/result.gitlab.md
+++ b/tests/changelog/40_dynamic_mod_default2/result.gitlab.md
@@ -1,8 +1,8 @@
Modified variable
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| ***val1*_dyn.var2**
***val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**:
β’ ~~val~~
β’ the value of the variable "[a first variable](#:::identifier:::_dyn.var1)"
β’ the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| ***val1*_dyn.var2**
***val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**:
β’ ~~val~~
β’ the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val1*_dyn.var1)
β’ the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val2*_dyn.var1) |
diff --git a/tests/changelog/40_dynamic_mod_default2/result.html b/tests/changelog/40_dynamic_mod_default2/result.html
index 8145832bc..fe17fd04d 100644
--- a/tests/changelog/40_dynamic_mod_default2/result.html
+++ b/tests/changelog/40_dynamic_mod_default2/result.html
@@ -6,8 +6,8 @@
val1_dyn.var2 val2_dyn.var2 string standard mandatory | A second variable. Default: val
-- the value of the variable "a first variable"
-- the value of the variable "a first variable"
|
+the value of the variable "a first variable" (val1_dyn.var1)
+the value of the variable "a first variable" (val2_dyn.var1)
diff --git a/tests/changelog/40_dynamic_mod_default2/result.md b/tests/changelog/40_dynamic_mod_default2/result.md
index d10d3fb70..088fe2858 100644
--- a/tests/changelog/40_dynamic_mod_default2/result.md
+++ b/tests/changelog/40_dynamic_mod_default2/result.md
@@ -1,6 +1,6 @@
# Modified variable
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| ***val1*_dyn.var2**
***val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**:
β’ ~~val~~
β’ the value of the variable "[a first variable](#:::identifier:::_dyn.var1)"
β’ the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| ***val1*_dyn.var2**
***val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**:
β’ ~~val~~
β’ the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val1*_dyn.var1)
β’ the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val2*_dyn.var1) |
diff --git a/tests/changelog/40_dynamic_mod_default2/result.sh b/tests/changelog/40_dynamic_mod_default2/result.sh
index 2b370c897..a7a1175ee 100644
--- a/tests/changelog/40_dynamic_mod_default2/result.sh
+++ b/tests/changelog/40_dynamic_mod_default2/result.sh
@@ -7,8 +7,8 @@
β [1;3mval2[0m[1m_dyn.var2[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ [9mval[0m β
β β β’ [4mthe value of the variable "a first[0m β
-β β [4mvariable"[0m β
+β β [4mvariable" ([0m[3;4mval1[0m[4m_dyn.var1)[0m β
β β β’ [4mthe value of the variable "a first[0m β
-β β [4mvariable"[0m β
+β β [4mvariable" ([0m[3;4mval2[0m[4m_dyn.var1)[0m β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/mode_advanced.adoc b/tests/mode_advanced.adoc
index 808d816b0..e3c67bc97 100644
--- a/tests/mode_advanced.adoc
+++ b/tests/mode_advanced.adoc
@@ -5,6 +5,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | My var1.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | My var2. +
-**Default**: the value of the variable "my var1"
+**Default**: the value of the variable "my var1" (var1).
|====
diff --git a/tests/mode_basic.adoc b/tests/mode_basic.adoc
index 7eeb0c452..fe1114047 100644
--- a/tests/mode_basic.adoc
+++ b/tests/mode_basic.adoc
@@ -3,7 +3,7 @@
| Variable | Description
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | My var2. +
-**Default**: the value of an undocumented variable
+**Default**: the value of an undocumented variable.
| **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `__hidden__` | My var3. +
**Hidden**: var could be hidden.
diff --git a/tests/mode_basic_advanced.adoc b/tests/mode_basic_advanced.adoc
index 9bf6bea13..a6c4a2ac1 100644
--- a/tests/mode_basic_advanced.adoc
+++ b/tests/mode_basic_advanced.adoc
@@ -3,6 +3,6 @@
| Variable | Description
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | My var2. +
-**Default**: the value of an undocumented variable
+**Default**: the value of an undocumented variable.
|====
diff --git a/tests/result_tutorial/022/doc.sh b/tests/result_tutorial/022/doc.sh
index 5551987e1..b69a65023 100644
--- a/tests/result_tutorial/022/doc.sh
+++ b/tests/result_tutorial/022/doc.sh
@@ -13,17 +13,17 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/030/doc.sh b/tests/result_tutorial/030/doc.sh
index d68bba312..d24f98a73 100644
--- a/tests/result_tutorial/030/doc.sh
+++ b/tests/result_tutorial/030/doc.sh
@@ -13,17 +13,17 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/031/doc.sh b/tests/result_tutorial/031/doc.sh
index a4e56333c..14ec0f9a7 100644
--- a/tests/result_tutorial/031/doc.sh
+++ b/tests/result_tutorial/031/doc.sh
@@ -13,17 +13,17 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/032/doc.sh b/tests/result_tutorial/032/doc.sh
index 3204d4f1f..335a5dde8 100644
--- a/tests/result_tutorial/032/doc.sh
+++ b/tests/result_tutorial/032/doc.sh
@@ -13,17 +13,17 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/033/doc.sh b/tests/result_tutorial/033/doc.sh
index c920d31da..7f6b2fdc3 100644
--- a/tests/result_tutorial/033/doc.sh
+++ b/tests/result_tutorial/033/doc.sh
@@ -13,17 +13,17 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/040/doc.sh b/tests/result_tutorial/040/doc.sh
index affe83fbb..dfb350934 100644
--- a/tests/result_tutorial/040/doc.sh
+++ b/tests/result_tutorial/040/doc.sh
@@ -13,17 +13,17 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -52,10 +52,10 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/041/doc.json b/tests/result_tutorial/041/doc.json
index cb4e4f81f..19b2e8648 100644
--- a/tests/result_tutorial/041/doc.json
+++ b/tests/result_tutorial/041/doc.json
@@ -149,7 +149,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -183,7 +183,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
diff --git a/tests/result_tutorial/041/doc.sh b/tests/result_tutorial/041/doc.sh
index c2cb7d66a..43d8e3c8a 100644
--- a/tests/result_tutorial/041/doc.sh
+++ b/tests/result_tutorial/041/doc.sh
@@ -13,17 +13,17 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -52,10 +52,10 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -66,6 +66,7 @@
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "HTTP address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β HTTPS Port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -77,6 +78,7 @@
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "HTTP Port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/041/doc_changelog.sh b/tests/result_tutorial/041/doc_changelog.sh
index 6c9596872..26967ac40 100644
--- a/tests/result_tutorial/041/doc_changelog.sh
+++ b/tests/result_tutorial/041/doc_changelog.sh
@@ -8,7 +8,8 @@
β [1;7mstandard [0m [1;7m mandatory [0m β β’ type domainname β
β β β’ the domain name can be an IP β
β β [1mDefault[0m: [4mthe value of the variable [0m β
-β β [4m"HTTP address"[0m β
+β β [4m"HTTP address" [0m β
+β β [4m(manual.http_proxy.address).[0m β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β HTTPS Port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -20,6 +21,6 @@
β β are allowed β
β β [1mDefault[0m: [9m8080[0m β
β β [4mthe value of the variable "HTTP [0m β
-β β [4mPort"[0m β
+β β [4mPort" (manual.http_proxy.port).[0m β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/051/doc.json b/tests/result_tutorial/051/doc.json
index e5539de40..93c14afaf 100644
--- a/tests/result_tutorial/051/doc.json
+++ b/tests/result_tutorial/051/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -163,7 +163,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -197,7 +197,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
diff --git a/tests/result_tutorial/051/doc.sh b/tests/result_tutorial/051/doc.sh
index ae6e8004e..55b9ee417 100644
--- a/tests/result_tutorial/051/doc.sh
+++ b/tests/result_tutorial/051/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,10 +54,10 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -68,6 +68,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "HTTP address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β HTTPS Port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -79,6 +80,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "HTTP Port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/051/doc_changelog.sh b/tests/result_tutorial/051/doc_changelog.sh
index 3c6d85278..cb7596f87 100644
--- a/tests/result_tutorial/051/doc_changelog.sh
+++ b/tests/result_tutorial/051/doc_changelog.sh
@@ -27,6 +27,7 @@
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "HTTP address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β HTTPS Port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -38,5 +39,6 @@
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "HTTP Port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/052/doc.json b/tests/result_tutorial/052/doc.json
index 899635a9b..ea09dd24b 100644
--- a/tests/result_tutorial/052/doc.json
+++ b/tests/result_tutorial/052/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
diff --git a/tests/result_tutorial/052/doc.sh b/tests/result_tutorial/052/doc.sh
index f29c1a6cb..2719425d5 100644
--- a/tests/result_tutorial/052/doc.sh
+++ b/tests/result_tutorial/052/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/053/doc.json b/tests/result_tutorial/053/doc.json
index 4c91ed4b2..43cd35403 100644
--- a/tests/result_tutorial/053/doc.json
+++ b/tests/result_tutorial/053/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
diff --git a/tests/result_tutorial/053/doc.sh b/tests/result_tutorial/053/doc.sh
index 98afdaec2..1c5ef7d82 100644
--- a/tests/result_tutorial/053/doc.sh
+++ b/tests/result_tutorial/053/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "HTTP address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β HTTPS Port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,6 +82,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "HTTP Port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/053/doc_changelog.sh b/tests/result_tutorial/053/doc_changelog.sh
index be194e4bb..569dd1ad4 100644
--- a/tests/result_tutorial/053/doc_changelog.sh
+++ b/tests/result_tutorial/053/doc_changelog.sh
@@ -9,6 +9,7 @@
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "HTTP address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β HTTPS Port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -20,5 +21,6 @@
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "HTTP Port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/060/doc.json b/tests/result_tutorial/060/doc.json
index f0ec0629e..e7a550610 100644
--- a/tests/result_tutorial/060/doc.json
+++ b/tests/result_tutorial/060/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -200,7 +200,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -242,7 +242,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
diff --git a/tests/result_tutorial/060/doc.sh b/tests/result_tutorial/060/doc.sh
index 2107db024..277635457 100644
--- a/tests/result_tutorial/060/doc.sh
+++ b/tests/result_tutorial/060/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,18 +54,18 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;3;4;92mHTTPS[0m[1;4;92m or [0m[1;3;4;92mSOCKS[0m[1;4;92m Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ manual.[3mhttps[0m_proxy
-[34mβ [0m β’ manual.[3msocks[0m_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ HTTPS
-[34mβ [0m β’ SOCKS
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ manual.[3mhttps[0m_proxy
+[34mβ [0m β’ manual.[3msocks[0m_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ HTTPS
+[34mβ [0m β’ SOCKS
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -76,6 +76,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "HTTP address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3mhttps[0m[1m_proxy.port[0m β [3mHTTPS[0m or [3mSOCKS[0m port. β
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.port[0m β [1mValidators[0m: β
@@ -87,6 +88,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "HTTP Port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/060/doc_changelog.sh b/tests/result_tutorial/060/doc_changelog.sh
index 315d1086e..839ba54b9 100644
--- a/tests/result_tutorial/060/doc_changelog.sh
+++ b/tests/result_tutorial/060/doc_changelog.sh
@@ -9,6 +9,7 @@
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "HTTP address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3mhttps[0m[1m_proxy.port[0m β [3mHTTPS[0m or [3mSOCKS[0m port. β
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.port[0m β [1mValidators[0m: β
@@ -20,6 +21,7 @@
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "HTTP Port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mDeleted variables[0m
diff --git a/tests/result_tutorial/061/doc.json b/tests/result_tutorial/061/doc.json
index 2b13dbf7d..4ce7abae1 100644
--- a/tests/result_tutorial/061/doc.json
+++ b/tests/result_tutorial/061/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -200,7 +200,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -242,7 +242,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
diff --git a/tests/result_tutorial/061/doc.sh b/tests/result_tutorial/061/doc.sh
index e1f177bd6..f67c770ca 100644
--- a/tests/result_tutorial/061/doc.sh
+++ b/tests/result_tutorial/061/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,18 +54,18 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;3;4;92mHTTPS[0m[1;4;92m or [0m[1;3;4;92mSOCKS[0m[1;4;92m Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ manual.[3mhttps[0m_proxy
-[34mβ [0m β’ manual.[3msocks[0m_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ HTTPS
-[34mβ [0m β’ SOCKS
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ manual.[3mhttps[0m_proxy
+[34mβ [0m β’ manual.[3msocks[0m_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ HTTPS
+[34mβ [0m β’ SOCKS
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -76,6 +76,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "HTTP address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3mhttps[0m[1m_proxy.port[0m β [3mHTTPS[0m or [3mSOCKS[0m port. β
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.port[0m β [1mValidators[0m: β
@@ -87,6 +88,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "HTTP Port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mChoices[0m: β
diff --git a/tests/result_tutorial/070/doc.json b/tests/result_tutorial/070/doc.json
index 4dcaf4947..7c96a711b 100644
--- a/tests/result_tutorial/070/doc.json
+++ b/tests/result_tutorial/070/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -194,7 +194,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -236,7 +236,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
diff --git a/tests/result_tutorial/070/doc.sh b/tests/result_tutorial/070/doc.sh
index ec68f61b8..810b7c131 100644
--- a/tests/result_tutorial/070/doc.sh
+++ b/tests/result_tutorial/070/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,17 +54,17 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;3;4;92mHTTPS[0m[1;4;92m or [0m[1;3;4;92mSOCKS[0m[1;4;92m Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ manual.[3mhttps[0m_proxy
-[34mβ [0m β’ manual.[3msocks[0m_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: depends on a calculation.
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ HTTPS
-[34mβ [0m β’ SOCKS
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ manual.[3mhttps[0m_proxy
+[34mβ [0m β’ manual.[3msocks[0m_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: depends on a calculation.
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ HTTPS
+[34mβ [0m β’ SOCKS
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -75,6 +75,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "HTTP address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3mhttps[0m[1m_proxy.port[0m β [3mHTTPS[0m or [3mSOCKS[0m port. β
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.port[0m β [1mValidators[0m: β
@@ -86,6 +87,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "HTTP Port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mChoices[0m: β
diff --git a/tests/result_tutorial/071/doc.json b/tests/result_tutorial/071/doc.json
index 17379c338..31d7cee4b 100644
--- a/tests/result_tutorial/071/doc.json
+++ b/tests/result_tutorial/071/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "description": "in HTTPS case if \"{0}\" is set to \"true\".",
+ "description": "in HTTPS case if {0} is set to \"true\".",
"variables": [
{
"path": "manual.use_for_https",
@@ -202,7 +202,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -244,7 +244,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
diff --git a/tests/result_tutorial/071/doc.sh b/tests/result_tutorial/071/doc.sh
index 66ac6e22d..dbb46dc32 100644
--- a/tests/result_tutorial/071/doc.sh
+++ b/tests/result_tutorial/071/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,17 +54,18 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;3;4;92mHTTPS[0m[1;4;92m or [0m[1;3;4;92mSOCKS[0m[1;4;92m Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ manual.[3mhttps[0m_proxy
-[34mβ [0m β’ manual.[3msocks[0m_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: in HTTPS case if [32m"Also use this proxy for HTTPS"[0m is set to [32m"true"[0m.
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ HTTPS
-[34mβ [0m β’ SOCKS
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ manual.[3mhttps[0m_proxy
+[34mβ [0m β’ manual.[3msocks[0m_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: in HTTPS case if [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m is set to [32m"true"[0m.
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ HTTPS
+[34mβ [0m β’ SOCKS
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -75,6 +76,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "HTTP address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3mhttps[0m[1m_proxy.port[0m β [3mHTTPS[0m or [3mSOCKS[0m port. β
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.port[0m β [1mValidators[0m: β
@@ -86,6 +88,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "HTTP Port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mChoices[0m: β
diff --git a/tests/result_tutorial/072/doc.json b/tests/result_tutorial/072/doc.json
index 17379c338..31d7cee4b 100644
--- a/tests/result_tutorial/072/doc.json
+++ b/tests/result_tutorial/072/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "description": "in HTTPS case if \"{0}\" is set to \"true\".",
+ "description": "in HTTPS case if {0} is set to \"true\".",
"variables": [
{
"path": "manual.use_for_https",
@@ -202,7 +202,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -244,7 +244,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
diff --git a/tests/result_tutorial/072/doc.sh b/tests/result_tutorial/072/doc.sh
index 66ac6e22d..dbb46dc32 100644
--- a/tests/result_tutorial/072/doc.sh
+++ b/tests/result_tutorial/072/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,17 +54,18 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;3;4;92mHTTPS[0m[1;4;92m or [0m[1;3;4;92mSOCKS[0m[1;4;92m Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ manual.[3mhttps[0m_proxy
-[34mβ [0m β’ manual.[3msocks[0m_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: in HTTPS case if [32m"Also use this proxy for HTTPS"[0m is set to [32m"true"[0m.
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ HTTPS
-[34mβ [0m β’ SOCKS
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ manual.[3mhttps[0m_proxy
+[34mβ [0m β’ manual.[3msocks[0m_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: in HTTPS case if [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m is set to [32m"true"[0m.
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ HTTPS
+[34mβ [0m β’ SOCKS
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -75,6 +76,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "HTTP address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3mhttps[0m[1m_proxy.port[0m β [3mHTTPS[0m or [3mSOCKS[0m port. β
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.port[0m β [1mValidators[0m: β
@@ -86,6 +88,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "HTTP Port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mChoices[0m: β
diff --git a/tests/result_tutorial/073/doc.json b/tests/result_tutorial/073/doc.json
index 17379c338..31d7cee4b 100644
--- a/tests/result_tutorial/073/doc.json
+++ b/tests/result_tutorial/073/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "description": "in HTTPS case if \"{0}\" is set to \"true\".",
+ "description": "in HTTPS case if {0} is set to \"true\".",
"variables": [
{
"path": "manual.use_for_https",
@@ -202,7 +202,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -244,7 +244,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
diff --git a/tests/result_tutorial/073/doc.sh b/tests/result_tutorial/073/doc.sh
index 66ac6e22d..dbb46dc32 100644
--- a/tests/result_tutorial/073/doc.sh
+++ b/tests/result_tutorial/073/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,17 +54,18 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;3;4;92mHTTPS[0m[1;4;92m or [0m[1;3;4;92mSOCKS[0m[1;4;92m Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ manual.[3mhttps[0m_proxy
-[34mβ [0m β’ manual.[3msocks[0m_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: in HTTPS case if [32m"Also use this proxy for HTTPS"[0m is set to [32m"true"[0m.
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ HTTPS
-[34mβ [0m β’ SOCKS
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ manual.[3mhttps[0m_proxy
+[34mβ [0m β’ manual.[3msocks[0m_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: in HTTPS case if [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m is set to [32m"true"[0m.
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ HTTPS
+[34mβ [0m β’ SOCKS
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -75,6 +76,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "HTTP address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3mhttps[0m[1m_proxy.port[0m β [3mHTTPS[0m or [3mSOCKS[0m port. β
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.port[0m β [1mValidators[0m: β
@@ -86,6 +88,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "HTTP Port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mChoices[0m: β
diff --git a/tests/result_tutorial/080/doc.json b/tests/result_tutorial/080/doc.json
index d5d90d00e..dcf0a9bbc 100644
--- a/tests/result_tutorial/080/doc.json
+++ b/tests/result_tutorial/080/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "description": "in HTTPS case if \"{0}\" is set to \"true\".",
+ "description": "in HTTPS case if {0} is set to \"true\".",
"variables": [
{
"path": "manual.use_for_https",
@@ -202,7 +202,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -244,7 +244,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
diff --git a/tests/result_tutorial/080/doc.sh b/tests/result_tutorial/080/doc.sh
index 43be75042..6c5b321c4 100644
--- a/tests/result_tutorial/080/doc.sh
+++ b/tests/result_tutorial/080/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,17 +54,18 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;3;4;92mHTTPS[0m[1;4;92m or [0m[1;3;4;92mSOCKS[0m[1;4;92m Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ manual.[3mhttps[0m_proxy
-[34mβ [0m β’ manual.[3msocks[0m_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: in HTTPS case if [32m"Also use this proxy for HTTPS"[0m is set to [32m"true"[0m.
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ HTTPS
-[34mβ [0m β’ SOCKS
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ manual.[3mhttps[0m_proxy
+[34mβ [0m β’ manual.[3msocks[0m_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: in HTTPS case if [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m is set to [32m"true"[0m.
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ HTTPS
+[34mβ [0m β’ SOCKS
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -75,6 +76,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3mhttps[0m[1m_proxy.port[0m β [3mHTTPS[0m or [3mSOCKS[0m port. β
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.port[0m β [1mValidators[0m: β
@@ -86,6 +88,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mChoices[0m: β
diff --git a/tests/result_tutorial/080/doc_changelog.sh b/tests/result_tutorial/080/doc_changelog.sh
index 5eaaa5244..dd853bf3e 100644
--- a/tests/result_tutorial/080/doc_changelog.sh
+++ b/tests/result_tutorial/080/doc_changelog.sh
@@ -25,9 +25,11 @@
β [1;7m domainname [0m [1;7m standard [0m [1;7m mandatory [0m β β’ type domainname β
β β β’ the domain name can be an IP β
β β [1mDefault[0m: [9mthe value of the variable [0m β
-β β [9m"HTTP address"[0m β
+β β [9m"HTTP address" [0m β
+β β [9m(manual.http_proxy.address).[0m β
β β [4mthe value of the variable "Proxy [0m β
-β β [4maddress"[0m β
+β β [4maddress" [0m β
+β β [4m(manual.http_proxy.address).[0m β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.[0m[1;3mhttps[0m[1m_proxy.port[0m β [3mHTTPS[0m or [3mSOCKS[0m port. β
β [1mmanual.[0m[1;3msocks[0m[1m_proxy.port[0m β [1mValidators[0m: β
@@ -38,8 +40,9 @@
β β β’ private ports (greater than 49152) β
β β are allowed β
β β [1mDefault[0m: [9mthe value of the variable [0m β
-β β [9m"HTTP Port"[0m β
+β β [9m"HTTP Port" [0m β
+β β [9m(manual.http_proxy.port).[0m β
β β [4mthe value of the variable "Proxy [0m β
-β β [4mport"[0m β
+β β [4mport" (manual.http_proxy.port).[0m β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/081/doc.json b/tests/result_tutorial/081/doc.json
index 559573304..fa8affa95 100644
--- a/tests/result_tutorial/081/doc.json
+++ b/tests/result_tutorial/081/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
diff --git a/tests/result_tutorial/081/doc.sh b/tests/result_tutorial/081/doc.sh
index d589b5652..f1d467c72 100644
--- a/tests/result_tutorial/081/doc.sh
+++ b/tests/result_tutorial/081/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
diff --git a/tests/result_tutorial/081/doc_changelog.sh b/tests/result_tutorial/081/doc_changelog.sh
index 1156261e5..25096d6dc 100644
--- a/tests/result_tutorial/081/doc_changelog.sh
+++ b/tests/result_tutorial/081/doc_changelog.sh
@@ -9,6 +9,7 @@
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -20,6 +21,7 @@
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.address[0m β Proxy address. β
β [1;7m domainname [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -27,6 +29,7 @@
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -38,6 +41,7 @@
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
diff --git a/tests/result_tutorial/090/doc.json b/tests/result_tutorial/090/doc.json
index 21c6e08fc..af5799e0d 100644
--- a/tests/result_tutorial/090/doc.json
+++ b/tests/result_tutorial/090/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
diff --git a/tests/result_tutorial/090/doc.sh b/tests/result_tutorial/090/doc.sh
index 387472a70..dee31ec33 100644
--- a/tests/result_tutorial/090/doc.sh
+++ b/tests/result_tutorial/090/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,6 +135,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/090/doc_changelog.sh b/tests/result_tutorial/090/doc_changelog.sh
index da4847e2e..fb09a10d9 100644
--- a/tests/result_tutorial/090/doc_changelog.sh
+++ b/tests/result_tutorial/090/doc_changelog.sh
@@ -13,7 +13,8 @@
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/100/doc.json b/tests/result_tutorial/100/doc.json
index 4d2a4d086..06f644aef 100644
--- a/tests/result_tutorial/100/doc.json
+++ b/tests/result_tutorial/100/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
@@ -396,7 +396,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
diff --git a/tests/result_tutorial/100/doc.sh b/tests/result_tutorial/100/doc.sh
index 74d7353cd..da65ef28f 100644
--- a/tests/result_tutorial/100/doc.sh
+++ b/tests/result_tutorial/100/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,8 +135,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mno_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β desactivated. β
@@ -146,5 +151,6 @@ the value [32m"Manual proxy configuration"[0m.
β β CIDR format β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/100/doc_changelog.sh b/tests/result_tutorial/100/doc_changelog.sh
index 817b65a86..7e36eebab 100644
--- a/tests/result_tutorial/100/doc_changelog.sh
+++ b/tests/result_tutorial/100/doc_changelog.sh
@@ -15,6 +15,7 @@
β β CIDR format β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/101/doc.json b/tests/result_tutorial/101/doc.json
index 5a332d2ef..4e81c4f57 100644
--- a/tests/result_tutorial/101/doc.json
+++ b/tests/result_tutorial/101/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
@@ -396,7 +396,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
diff --git a/tests/result_tutorial/101/doc.sh b/tests/result_tutorial/101/doc.sh
index 0aed7196d..67cb11ec5 100644
--- a/tests/result_tutorial/101/doc.sh
+++ b/tests/result_tutorial/101/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,8 +135,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mno_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m basic [0m [1;7m [0m β desactivated. β
@@ -146,5 +151,6 @@ the value [32m"Manual proxy configuration"[0m.
β β CIDR format β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/101/doc_changelog.sh b/tests/result_tutorial/101/doc_changelog.sh
index c264704a6..004a3d83c 100644
--- a/tests/result_tutorial/101/doc_changelog.sh
+++ b/tests/result_tutorial/101/doc_changelog.sh
@@ -15,6 +15,7 @@
β β CIDR format β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/102/doc.json b/tests/result_tutorial/102/doc.json
index 93f8624c2..8f3b70caf 100644
--- a/tests/result_tutorial/102/doc.json
+++ b/tests/result_tutorial/102/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
@@ -390,7 +390,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
diff --git a/tests/result_tutorial/102/doc.sh b/tests/result_tutorial/102/doc.sh
index 312453dac..471eae09e 100644
--- a/tests/result_tutorial/102/doc.sh
+++ b/tests/result_tutorial/102/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,8 +135,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mno_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -146,5 +151,6 @@ the value [32m"Manual proxy configuration"[0m.
β β CIDR format β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/102/doc_changelog.sh b/tests/result_tutorial/102/doc_changelog.sh
index b016948e1..1a9332e53 100644
--- a/tests/result_tutorial/102/doc_changelog.sh
+++ b/tests/result_tutorial/102/doc_changelog.sh
@@ -15,6 +15,7 @@
β β CIDR format β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/103/doc.json b/tests/result_tutorial/103/doc.json
index 293471cd1..7753aa11d 100644
--- a/tests/result_tutorial/103/doc.json
+++ b/tests/result_tutorial/103/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
@@ -390,7 +390,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
diff --git a/tests/result_tutorial/103/doc.sh b/tests/result_tutorial/103/doc.sh
index dcd7ffeb5..07beb5824 100644
--- a/tests/result_tutorial/103/doc.sh
+++ b/tests/result_tutorial/103/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,8 +135,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mno_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -150,5 +155,6 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/103/doc_changelog.sh b/tests/result_tutorial/103/doc_changelog.sh
index 19b1dc2e1..496fdbc57 100644
--- a/tests/result_tutorial/103/doc_changelog.sh
+++ b/tests/result_tutorial/103/doc_changelog.sh
@@ -19,6 +19,7 @@
β β β’ [4m192.168.1.0/24[0m β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/104/doc.json b/tests/result_tutorial/104/doc.json
index 7460dad43..d69d5c6a9 100644
--- a/tests/result_tutorial/104/doc.json
+++ b/tests/result_tutorial/104/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
@@ -393,7 +393,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
diff --git a/tests/result_tutorial/104/doc.sh b/tests/result_tutorial/104/doc.sh
index 8f43e709c..098d7b3ae 100644
--- a/tests/result_tutorial/104/doc.sh
+++ b/tests/result_tutorial/104/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,8 +135,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mno_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -153,5 +158,6 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/104/doc_changelog.sh b/tests/result_tutorial/104/doc_changelog.sh
index e4f491724..17327b0eb 100644
--- a/tests/result_tutorial/104/doc_changelog.sh
+++ b/tests/result_tutorial/104/doc_changelog.sh
@@ -22,6 +22,7 @@
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/110/doc.json b/tests/result_tutorial/110/doc.json
index 2922b628c..37ecd57ce 100644
--- a/tests/result_tutorial/110/doc.json
+++ b/tests/result_tutorial/110/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
@@ -393,7 +393,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -447,7 +447,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
diff --git a/tests/result_tutorial/110/doc.sh b/tests/result_tutorial/110/doc.sh
index 7536514fc..e13451a54 100644
--- a/tests/result_tutorial/110/doc.sh
+++ b/tests/result_tutorial/110/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,8 +135,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mno_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -153,12 +158,14 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mprompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/110/doc_changelog.sh b/tests/result_tutorial/110/doc_changelog.sh
index f54035f7e..8d778fe03 100644
--- a/tests/result_tutorial/110/doc_changelog.sh
+++ b/tests/result_tutorial/110/doc_changelog.sh
@@ -8,6 +8,7 @@
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/111/doc.json b/tests/result_tutorial/111/doc.json
index b05188997..66bc03d41 100644
--- a/tests/result_tutorial/111/doc.json
+++ b/tests/result_tutorial/111/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
@@ -393,7 +393,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -447,7 +447,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
diff --git a/tests/result_tutorial/111/doc.sh b/tests/result_tutorial/111/doc.sh
index fb0ad433e..14294572a 100644
--- a/tests/result_tutorial/111/doc.sh
+++ b/tests/result_tutorial/111/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,8 +135,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mno_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -153,14 +158,16 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mprompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mproxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: false β
diff --git a/tests/result_tutorial/112/doc.json b/tests/result_tutorial/112/doc.json
index cbce1b3bd..5f7282c2e 100644
--- a/tests/result_tutorial/112/doc.json
+++ b/tests/result_tutorial/112/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
@@ -393,7 +393,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -447,7 +447,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -480,7 +480,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "proxy_mode",
diff --git a/tests/result_tutorial/112/doc.sh b/tests/result_tutorial/112/doc.sh
index 25cd24acc..07191a500 100644
--- a/tests/result_tutorial/112/doc.sh
+++ b/tests/result_tutorial/112/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,8 +135,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mno_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -153,20 +158,23 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mprompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mproxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
-β β proxy configuration" β
+β β to the Internet" (proxy_mode) is not β
+β β "Manual proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" (manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/112/doc_changelog.sh b/tests/result_tutorial/112/doc_changelog.sh
index 091fb5087..a90576c8a 100644
--- a/tests/result_tutorial/112/doc_changelog.sh
+++ b/tests/result_tutorial/112/doc_changelog.sh
@@ -6,9 +6,10 @@
β [1mproxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;4;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: [4mif "Configure Proxy Access[0m β
-β β [4mto the Internet" is not "Manual [0m β
-β β [4mproxy configuration"[0m β
+β β [4mto the Internet" (proxy_mode) is not[0m β
+β β [4m"Manual proxy configuration"[0m β
β β [4mor "SOCKS host version used by [0m β
-β β [4mproxy" is "v4".[0m β
+β β [4mproxy" (manual.socks_proxy.version) [0m β
+β β [4mis "v4".[0m β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/120/doc.json b/tests/result_tutorial/120/doc.json
index cbce1b3bd..5f7282c2e 100644
--- a/tests/result_tutorial/120/doc.json
+++ b/tests/result_tutorial/120/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
@@ -393,7 +393,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -447,7 +447,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -480,7 +480,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "proxy_mode",
diff --git a/tests/result_tutorial/120/doc.sh b/tests/result_tutorial/120/doc.sh
index 25cd24acc..07191a500 100644
--- a/tests/result_tutorial/120/doc.sh
+++ b/tests/result_tutorial/120/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,8 +135,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mno_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -153,20 +158,23 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mprompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mproxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
-β β proxy configuration" β
+β β to the Internet" (proxy_mode) is not β
+β β "Manual proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" (manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/130/doc.json b/tests/result_tutorial/130/doc.json
index 4b598d2c2..f8817ae73 100644
--- a/tests/result_tutorial/130/doc.json
+++ b/tests/result_tutorial/130/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
@@ -393,7 +393,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -447,7 +447,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -480,7 +480,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "proxy_mode",
diff --git a/tests/result_tutorial/130/doc.sh b/tests/result_tutorial/130/doc.sh
index f039c7f1d..b9cd60275 100644
--- a/tests/result_tutorial/130/doc.sh
+++ b/tests/result_tutorial/130/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,8 +135,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mno_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -153,20 +158,23 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mprompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mproxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
-β β proxy configuration" β
+β β to the Internet" (proxy_mode) is not β
+β β "Manual proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" (manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/130/doc_changelog.sh b/tests/result_tutorial/130/doc_changelog.sh
index 444e092f5..ce67879f3 100644
--- a/tests/result_tutorial/130/doc_changelog.sh
+++ b/tests/result_tutorial/130/doc_changelog.sh
@@ -6,9 +6,10 @@
β [1mproxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m [0m[1;7;9mstandard[0m[1;7m [0m [1;7m [0m[1;4;7madvanced[0m[1;7m [0m [1;7m boolean [0m [1;7m [0m β [1mDefault[0m: false β
β [1;7madvanced [0m [1;7m mandatory [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
-β β proxy configuration" β
+β β to the Internet" (proxy_mode) is not β
+β β "Manual proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" (manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/140/doc.json b/tests/result_tutorial/140/doc.json
index 448a362e1..74906041c 100644
--- a/tests/result_tutorial/140/doc.json
+++ b/tests/result_tutorial/140/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
@@ -393,7 +393,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -447,7 +447,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -480,7 +480,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "proxy_mode",
diff --git a/tests/result_tutorial/140/doc.sh b/tests/result_tutorial/140/doc.sh
index 75cf8305c..6f4bcf60b 100644
--- a/tests/result_tutorial/140/doc.sh
+++ b/tests/result_tutorial/140/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,8 +135,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mno_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -153,29 +158,32 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mprompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mproxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
-β β proxy configuration" β
+β β to the Internet" (proxy_mode) is not β
+β β "Manual proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" (manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mDNS over HTTPS[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: dns_over_https
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: dns_over_https
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/141/doc.json b/tests/result_tutorial/141/doc.json
index fa1798cb6..3a8841886 100644
--- a/tests/result_tutorial/141/doc.json
+++ b/tests/result_tutorial/141/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
@@ -393,7 +393,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -447,7 +447,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -480,7 +480,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "proxy_mode",
@@ -549,7 +549,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"false\".",
+ "message": "when the variable {0} has the value \"false\".",
"path": {
"path": "dns_over_https.enable_dns_over_https"
},
diff --git a/tests/result_tutorial/141/doc.sh b/tests/result_tutorial/141/doc.sh
index 1ae049742..070f458ee 100644
--- a/tests/result_tutorial/141/doc.sh
+++ b/tests/result_tutorial/141/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,8 +135,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mno_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -153,29 +158,32 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mprompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mproxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
-β β proxy configuration" β
+β β to the Internet" (proxy_mode) is not β
+β β "Manual proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" (manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mDNS over HTTPS[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: dns_over_https
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: dns_over_https
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -189,7 +197,8 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (dns_over_https.enable_dns_over_httβ¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/141/doc_changelog.sh b/tests/result_tutorial/141/doc_changelog.sh
index 3a3de09b0..f9f78a3af 100644
--- a/tests/result_tutorial/141/doc_changelog.sh
+++ b/tests/result_tutorial/141/doc_changelog.sh
@@ -9,7 +9,8 @@
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (dns_over_https.enable_dns_over_httβ¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/142/doc.json b/tests/result_tutorial/142/doc.json
index 4c7d0a779..7151efd75 100644
--- a/tests/result_tutorial/142/doc.json
+++ b/tests/result_tutorial/142/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
@@ -393,7 +393,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -447,7 +447,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -480,7 +480,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "proxy_mode",
@@ -549,7 +549,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"false\".",
+ "message": "when the variable {0} has the value \"false\".",
"path": {
"path": "dns_over_https.enable_dns_over_https"
},
@@ -590,7 +590,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Custom\".",
+ "description": "if {0} is not \"Custom\".",
"variables": [
{
"path": "dns_over_https.provider",
diff --git a/tests/result_tutorial/142/doc.sh b/tests/result_tutorial/142/doc.sh
index 047da995d..3709c77ce 100644
--- a/tests/result_tutorial/142/doc.sh
+++ b/tests/result_tutorial/142/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,8 +135,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mno_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -153,29 +158,32 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mprompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mproxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
-β β proxy configuration" β
+β β to the Internet" (proxy_mode) is not β
+β β "Manual proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" (manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mDNS over HTTPS[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: dns_over_https
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: dns_over_https
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -189,8 +197,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (dns_over_https.enable_dns_over_httβ¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mdns_over_https.custom_dns_url[0m β Custom DNS URL. β
β [1;7m web address [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mValidators[0m: β
@@ -200,7 +209,8 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β β’ type domainname β
β β β’ the domain name can be a hostname β
-β β [1mDisabled[0m: if "Use Provider" is not β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (dns_over_https.provider) is not β
β β "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/142/doc_changelog.sh b/tests/result_tutorial/142/doc_changelog.sh
index c9775eaa9..d1d1f309d 100644
--- a/tests/result_tutorial/142/doc_changelog.sh
+++ b/tests/result_tutorial/142/doc_changelog.sh
@@ -11,7 +11,8 @@
β β are allowed β
β β β’ type domainname β
β β β’ the domain name can be a hostname β
-β β [1mDisabled[0m: if "Use Provider" is not β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (dns_over_https.provider) is not β
β β "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/150/doc.json b/tests/result_tutorial/150/doc.json
index 657d4cda3..51223ea40 100644
--- a/tests/result_tutorial/150/doc.json
+++ b/tests/result_tutorial/150/doc.json
@@ -42,7 +42,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "proxy_mode"
},
@@ -149,7 +149,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "manual.use_for_https"
},
@@ -177,7 +177,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -211,7 +211,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -258,7 +258,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.address",
"type": "variable"
@@ -292,7 +292,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "manual.http_proxy.port",
"type": "variable"
@@ -358,7 +358,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "proxy_mode"
},
@@ -393,7 +393,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -447,7 +447,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "proxy_mode"
},
@@ -480,7 +480,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "proxy_mode",
@@ -549,7 +549,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"false\".",
+ "message": "when the variable {0} has the value \"false\".",
"path": {
"path": "dns_over_https.enable_dns_over_https"
},
@@ -590,7 +590,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Custom\".",
+ "description": "if {0} is not \"Custom\".",
"variables": [
{
"path": "dns_over_https.provider",
diff --git a/tests/result_tutorial/150/doc.sh b/tests/result_tutorial/150/doc.sh
index 629ac3854..2e9f48893 100644
--- a/tests/result_tutorial/150/doc.sh
+++ b/tests/result_tutorial/150/doc.sh
@@ -13,19 +13,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mproxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;92mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -54,12 +54,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mmanual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -70,6 +70,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -81,14 +82,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -99,6 +101,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -110,6 +113,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmanual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -131,8 +135,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (proxy_mode) hasn't the β
+β β value "Automatic proxy configuration β
+β β URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mno_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -153,29 +158,32 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mprompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (proxy_mode) has the value β
+β β "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mproxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
-β β proxy configuration" β
+β β to the Internet" (proxy_mode) is not β
+β β "Manual proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" (manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mDNS over HTTPS[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: dns_over_https
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: dns_over_https
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -189,8 +197,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (dns_over_https.enable_dns_over_httβ¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mdns_over_https.custom_dns_url[0m β Custom DNS URL. β
β [1;7m web address [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mValidators[0m: β
@@ -201,7 +210,8 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ type domainname β
β β β’ the domain name can be a hostname β
β β β’ must starts with 'https://' only β
-β β [1mDisabled[0m: if "Use Provider" is not β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (dns_over_https.provider) is not β
β β "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/150/doc_changelog.sh b/tests/result_tutorial/150/doc_changelog.sh
index 60261dce3..f2c930254 100644
--- a/tests/result_tutorial/150/doc_changelog.sh
+++ b/tests/result_tutorial/150/doc_changelog.sh
@@ -12,7 +12,8 @@
β β β’ type domainname β
β β β’ the domain name can be a hostname β
β β β’ [4mmust starts with 'https://' only[0m β
-β β [1mDisabled[0m: if "Use Provider" is not β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (dns_over_https.provider) is not β
β β "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/160/doc.json b/tests/result_tutorial/160/doc.json
index b2313635a..4a46a110c 100644
--- a/tests/result_tutorial/160/doc.json
+++ b/tests/result_tutorial/160/doc.json
@@ -55,7 +55,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -162,7 +162,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "firefox.manual.use_for_https"
},
@@ -190,7 +190,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -224,7 +224,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -271,7 +271,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -305,7 +305,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -371,7 +371,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -406,7 +406,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -460,7 +460,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -493,7 +493,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "firefox.proxy_mode",
@@ -562,7 +562,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"false\".",
+ "message": "when the variable {0} has the value \"false\".",
"path": {
"path": "firefox.dns_over_https.enable_dns_over_https"
},
@@ -603,7 +603,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Custom\".",
+ "description": "if {0} is not \"Custom\".",
"variables": [
{
"path": "firefox.dns_over_https.provider",
diff --git a/tests/result_tutorial/160/doc.sh b/tests/result_tutorial/160/doc.sh
index bdadb6bab..fb5eaff19 100644
--- a/tests/result_tutorial/160/doc.sh
+++ b/tests/result_tutorial/160/doc.sh
@@ -1,10 +1,10 @@
[1;4;96mFirefox[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: firefox
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: firefox
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -21,19 +21,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mfirefox.proxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;38;5;46mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -62,12 +62,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mfirefox.manual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -78,6 +78,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -89,14 +90,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -107,6 +109,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -118,6 +121,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -139,8 +143,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (firefox.proxy_mode) β
+β β hasn't the value "Automatic proxy β
+β β configuration URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.no_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -161,29 +166,34 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.prompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.proxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
+β β to the Internet" β
+β β (firefox.proxy_mode) is not "Manual β
β β proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" β
+β β (firefox.manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mDNS over HTTPS[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.dns_over_https
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.dns_over_https
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -197,8 +207,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (firefox.dns_over_https.enable_dns_β¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.dns_over_https.custom_dns_url[0m β Custom DNS URL. β
β [1;7m web address [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mValidators[0m: β
@@ -209,8 +220,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ type domainname β
β β β’ the domain name can be a hostname β
β β β’ must starts with 'https://' only β
-β β [1mDisabled[0m: if "Use Provider" is not β
-β β "Custom". β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (firefox.dns_over_https.provider) is β
+β β not "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/160/doc_changelog.sh b/tests/result_tutorial/160/doc_changelog.sh
index a9cf3b9f0..a52983e2c 100644
--- a/tests/result_tutorial/160/doc_changelog.sh
+++ b/tests/result_tutorial/160/doc_changelog.sh
@@ -37,6 +37,7 @@
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -48,6 +49,7 @@
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.address[0m β Proxy address. β
β [1;7m domainname [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -55,6 +57,7 @@
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -66,6 +69,7 @@
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -82,8 +86,9 @@
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (firefox.proxy_mode) β
+β β hasn't the value "Automatic proxy β
+β β configuration URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.no_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -104,22 +109,27 @@
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.prompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.proxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
+β β to the Internet" β
+β β (firefox.proxy_mode) is not "Manual β
β β proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" β
+β β (firefox.manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.dns_over_https.enable_dns_ovβ¦[0m β Enable DNS over HTTPS. β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: false β
@@ -130,8 +140,9 @@
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (firefox.dns_over_https.enable_dns_β¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.dns_over_https.custom_dns_url[0m β Custom DNS URL. β
β [1;7m web address [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mValidators[0m: β
@@ -142,8 +153,9 @@
β β β’ type domainname β
β β β’ the domain name can be a hostname β
β β β’ must starts with 'https://' only β
-β β [1mDisabled[0m: if "Use Provider" is not β
-β β "Custom". β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (firefox.dns_over_https.provider) is β
+β β not "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mDeleted variables[0m
diff --git a/tests/result_tutorial/161/doc.json b/tests/result_tutorial/161/doc.json
index b2313635a..4a46a110c 100644
--- a/tests/result_tutorial/161/doc.json
+++ b/tests/result_tutorial/161/doc.json
@@ -55,7 +55,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -162,7 +162,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "firefox.manual.use_for_https"
},
@@ -190,7 +190,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -224,7 +224,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -271,7 +271,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -305,7 +305,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -371,7 +371,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -406,7 +406,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -460,7 +460,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -493,7 +493,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "firefox.proxy_mode",
@@ -562,7 +562,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"false\".",
+ "message": "when the variable {0} has the value \"false\".",
"path": {
"path": "firefox.dns_over_https.enable_dns_over_https"
},
@@ -603,7 +603,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Custom\".",
+ "description": "if {0} is not \"Custom\".",
"variables": [
{
"path": "firefox.dns_over_https.provider",
diff --git a/tests/result_tutorial/161/doc.sh b/tests/result_tutorial/161/doc.sh
index bdadb6bab..fb5eaff19 100644
--- a/tests/result_tutorial/161/doc.sh
+++ b/tests/result_tutorial/161/doc.sh
@@ -1,10 +1,10 @@
[1;4;96mFirefox[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: firefox
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: firefox
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -21,19 +21,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mfirefox.proxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;38;5;46mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -62,12 +62,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mfirefox.manual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -78,6 +78,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -89,14 +90,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -107,6 +109,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -118,6 +121,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -139,8 +143,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (firefox.proxy_mode) β
+β β hasn't the value "Automatic proxy β
+β β configuration URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.no_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -161,29 +166,34 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.prompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.proxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
+β β to the Internet" β
+β β (firefox.proxy_mode) is not "Manual β
β β proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" β
+β β (firefox.manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mDNS over HTTPS[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.dns_over_https
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.dns_over_https
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -197,8 +207,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (firefox.dns_over_https.enable_dns_β¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.dns_over_https.custom_dns_url[0m β Custom DNS URL. β
β [1;7m web address [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mValidators[0m: β
@@ -209,8 +220,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ type domainname β
β β β’ the domain name can be a hostname β
β β β’ must starts with 'https://' only β
-β β [1mDisabled[0m: if "Use Provider" is not β
-β β "Custom". β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (firefox.dns_over_https.provider) is β
+β β not "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/result_tutorial/170/doc.json b/tests/result_tutorial/170/doc.json
index 1f1b1e1f4..a2a19d0f4 100644
--- a/tests/result_tutorial/170/doc.json
+++ b/tests/result_tutorial/170/doc.json
@@ -55,7 +55,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -162,7 +162,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "firefox.manual.use_for_https"
},
@@ -190,7 +190,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -224,7 +224,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -271,7 +271,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -305,7 +305,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -371,7 +371,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -406,7 +406,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -460,7 +460,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -493,7 +493,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "firefox.proxy_mode",
@@ -562,7 +562,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"false\".",
+ "message": "when the variable {0} has the value \"false\".",
"path": {
"path": "firefox.dns_over_https.enable_dns_over_https"
},
@@ -603,7 +603,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Custom\".",
+ "description": "if {0} is not \"Custom\".",
"variables": [
{
"path": "firefox.dns_over_https.provider",
diff --git a/tests/result_tutorial/170/doc.sh b/tests/result_tutorial/170/doc.sh
index e9010f93b..1b344a9fb 100644
--- a/tests/result_tutorial/170/doc.sh
+++ b/tests/result_tutorial/170/doc.sh
@@ -1,10 +1,10 @@
[1;4;96mFirefox[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: firefox
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: firefox
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -21,19 +21,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mfirefox.proxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;38;5;46mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -62,12 +62,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mfirefox.manual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -78,6 +78,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -89,14 +90,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -107,6 +109,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -118,6 +121,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -139,8 +143,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (firefox.proxy_mode) β
+β β hasn't the value "Automatic proxy β
+β β configuration URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.no_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -161,29 +166,34 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.prompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.proxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
+β β to the Internet" β
+β β (firefox.proxy_mode) is not "Manual β
β β proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" β
+β β (firefox.manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mDNS over HTTPS[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.dns_over_https
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.dns_over_https
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -197,8 +207,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (firefox.dns_over_https.enable_dns_β¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.dns_over_https.custom_dns_url[0m β Custom DNS URL. β
β [1;7m web address [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mValidators[0m: β
@@ -209,26 +220,27 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ type domainname β
β β β’ the domain name can be a hostname β
β β β’ must starts with 'https://' only β
-β β [1mDisabled[0m: if "Use Provider" is not β
-β β "Custom". β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (firefox.dns_over_https.provider) is β
+β β not "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mFoxyproxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: foxyproxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: foxyproxy
+[34mβ [0m[1;7m basic [0m
[1;4;92mProxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: foxyproxy.proxies
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: foxyproxy.proxies
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/180/doc.json b/tests/result_tutorial/180/doc.json
index 9cb819615..6b9614430 100644
--- a/tests/result_tutorial/180/doc.json
+++ b/tests/result_tutorial/180/doc.json
@@ -55,7 +55,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -162,7 +162,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "firefox.manual.use_for_https"
},
@@ -190,7 +190,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -224,7 +224,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -271,7 +271,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -305,7 +305,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -371,7 +371,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -406,7 +406,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -460,7 +460,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -493,7 +493,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "firefox.proxy_mode",
@@ -562,7 +562,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"false\".",
+ "message": "when the variable {0} has the value \"false\".",
"path": {
"path": "firefox.dns_over_https.enable_dns_over_https"
},
@@ -603,7 +603,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Custom\".",
+ "description": "if {0} is not \"Custom\".",
"variables": [
{
"path": "firefox.dns_over_https.provider",
diff --git a/tests/result_tutorial/180/doc.sh b/tests/result_tutorial/180/doc.sh
index c9687758f..40ca0ffd8 100644
--- a/tests/result_tutorial/180/doc.sh
+++ b/tests/result_tutorial/180/doc.sh
@@ -1,10 +1,10 @@
[1;4;96mFirefox[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: firefox
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: firefox
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -21,19 +21,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mfirefox.proxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;38;5;46mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -62,12 +62,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mfirefox.manual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -78,6 +78,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -89,14 +90,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -107,6 +109,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -118,6 +121,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -139,8 +143,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (firefox.proxy_mode) β
+β β hasn't the value "Automatic proxy β
+β β configuration URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.no_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -161,29 +166,34 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.prompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.proxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
+β β to the Internet" β
+β β (firefox.proxy_mode) is not "Manual β
β β proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" β
+β β (firefox.manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mDNS over HTTPS[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.dns_over_https
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.dns_over_https
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -197,8 +207,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (firefox.dns_over_https.enable_dns_β¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.dns_over_https.custom_dns_url[0m β Custom DNS URL. β
β [1;7m web address [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mValidators[0m: β
@@ -209,26 +220,27 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ type domainname β
β β β’ the domain name can be a hostname β
β β β’ must starts with 'https://' only β
-β β [1mDisabled[0m: if "Use Provider" is not β
-β β "Custom". β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (firefox.dns_over_https.provider) is β
+β β not "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mFoxyproxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: foxyproxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: foxyproxy
+[34mβ [0m[1;7m basic [0m
[1;4;92mProxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: foxyproxy.proxies
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: foxyproxy.proxies
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/181/doc.json b/tests/result_tutorial/181/doc.json
index 764c39fb5..83481685a 100644
--- a/tests/result_tutorial/181/doc.json
+++ b/tests/result_tutorial/181/doc.json
@@ -55,7 +55,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -162,7 +162,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "firefox.manual.use_for_https"
},
@@ -190,7 +190,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -224,7 +224,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -271,7 +271,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -305,7 +305,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -371,7 +371,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -406,7 +406,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -460,7 +460,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -493,7 +493,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "firefox.proxy_mode",
@@ -562,7 +562,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"false\".",
+ "message": "when the variable {0} has the value \"false\".",
"path": {
"path": "firefox.dns_over_https.enable_dns_over_https"
},
@@ -603,7 +603,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Custom\".",
+ "description": "if {0} is not \"Custom\".",
"variables": [
{
"path": "firefox.dns_over_https.provider",
diff --git a/tests/result_tutorial/181/doc.sh b/tests/result_tutorial/181/doc.sh
index 70905a784..4bc812340 100644
--- a/tests/result_tutorial/181/doc.sh
+++ b/tests/result_tutorial/181/doc.sh
@@ -1,10 +1,10 @@
[1;4;96mFirefox[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: firefox
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: firefox
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -21,19 +21,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mfirefox.proxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;38;5;46mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -62,12 +62,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mfirefox.manual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -78,6 +78,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -89,14 +90,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -107,6 +109,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -118,6 +121,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -139,8 +143,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (firefox.proxy_mode) β
+β β hasn't the value "Automatic proxy β
+β β configuration URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.no_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -161,29 +166,34 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.prompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.proxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
+β β to the Internet" β
+β β (firefox.proxy_mode) is not "Manual β
β β proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" β
+β β (firefox.manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mDNS over HTTPS[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.dns_over_https
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.dns_over_https
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -197,8 +207,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (firefox.dns_over_https.enable_dns_β¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.dns_over_https.custom_dns_url[0m β Custom DNS URL. β
β [1;7m web address [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mValidators[0m: β
@@ -209,26 +220,27 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ type domainname β
β β β’ the domain name can be a hostname β
β β β’ must starts with 'https://' only β
-β β [1mDisabled[0m: if "Use Provider" is not β
-β β "Custom". β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (firefox.dns_over_https.provider) is β
+β β not "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mFoxyproxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: foxyproxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: foxyproxy
+[34mβ [0m[1;7m standard [0m
[1;4;92mProxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: foxyproxy.proxies
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: foxyproxy.proxies
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/182/doc.json b/tests/result_tutorial/182/doc.json
index 71c6f4102..16a71abd0 100644
--- a/tests/result_tutorial/182/doc.json
+++ b/tests/result_tutorial/182/doc.json
@@ -55,7 +55,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -162,7 +162,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "firefox.manual.use_for_https"
},
@@ -190,7 +190,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -224,7 +224,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -271,7 +271,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -305,7 +305,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -371,7 +371,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -406,7 +406,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -460,7 +460,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -493,7 +493,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "firefox.proxy_mode",
@@ -562,7 +562,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"false\".",
+ "message": "when the variable {0} has the value \"false\".",
"path": {
"path": "firefox.dns_over_https.enable_dns_over_https"
},
@@ -603,7 +603,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Custom\".",
+ "description": "if {0} is not \"Custom\".",
"variables": [
{
"path": "firefox.dns_over_https.provider",
diff --git a/tests/result_tutorial/182/doc.sh b/tests/result_tutorial/182/doc.sh
index 389fbcc1f..7c85638ac 100644
--- a/tests/result_tutorial/182/doc.sh
+++ b/tests/result_tutorial/182/doc.sh
@@ -1,10 +1,10 @@
[1;4;96mFirefox[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: firefox
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: firefox
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -21,19 +21,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mfirefox.proxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;38;5;46mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -62,12 +62,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mfirefox.manual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -78,6 +78,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -89,14 +90,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -107,6 +109,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -118,6 +121,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -139,8 +143,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (firefox.proxy_mode) β
+β β hasn't the value "Automatic proxy β
+β β configuration URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.no_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -161,29 +166,34 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.prompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.proxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
+β β to the Internet" β
+β β (firefox.proxy_mode) is not "Manual β
β β proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" β
+β β (firefox.manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mDNS over HTTPS[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.dns_over_https
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.dns_over_https
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -197,8 +207,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (firefox.dns_over_https.enable_dns_β¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.dns_over_https.custom_dns_url[0m β Custom DNS URL. β
β [1;7m web address [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mValidators[0m: β
@@ -209,26 +220,27 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ type domainname β
β β β’ the domain name can be a hostname β
β β β’ must starts with 'https://' only β
-β β [1mDisabled[0m: if "Use Provider" is not β
-β β "Custom". β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (firefox.dns_over_https.provider) is β
+β β not "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mFoxyproxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: foxyproxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: foxyproxy
+[34mβ [0m[1;7m basic [0m
[1;4;92mProxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: foxyproxy.proxies
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: foxyproxy.proxies
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/190/doc.json b/tests/result_tutorial/190/doc.json
index ba769ba02..6a5334200 100644
--- a/tests/result_tutorial/190/doc.json
+++ b/tests/result_tutorial/190/doc.json
@@ -55,7 +55,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -162,7 +162,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "firefox.manual.use_for_https"
},
@@ -190,7 +190,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -224,7 +224,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -271,7 +271,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -305,7 +305,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -371,7 +371,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -406,7 +406,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -460,7 +460,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -493,7 +493,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "firefox.proxy_mode",
@@ -562,7 +562,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"false\".",
+ "message": "when the variable {0} has the value \"false\".",
"path": {
"path": "firefox.dns_over_https.enable_dns_over_https"
},
@@ -603,7 +603,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Custom\".",
+ "description": "if {0} is not \"Custom\".",
"variables": [
{
"path": "firefox.dns_over_https.provider",
diff --git a/tests/result_tutorial/190/doc.sh b/tests/result_tutorial/190/doc.sh
index c24fadcde..4058f4553 100644
--- a/tests/result_tutorial/190/doc.sh
+++ b/tests/result_tutorial/190/doc.sh
@@ -1,10 +1,10 @@
[1;4;96mFirefox[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: firefox
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: firefox
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -21,19 +21,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mfirefox.proxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;38;5;46mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -62,12 +62,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mfirefox.manual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -78,6 +78,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -89,14 +90,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -107,6 +109,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -118,6 +121,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -139,8 +143,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (firefox.proxy_mode) β
+β β hasn't the value "Automatic proxy β
+β β configuration URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.no_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -161,29 +166,34 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.prompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.proxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
+β β to the Internet" β
+β β (firefox.proxy_mode) is not "Manual β
β β proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" β
+β β (firefox.manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mDNS over HTTPS[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.dns_over_https
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.dns_over_https
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -197,8 +207,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (firefox.dns_over_https.enable_dns_β¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.dns_over_https.custom_dns_url[0m β Custom DNS URL. β
β [1;7m web address [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mValidators[0m: β
@@ -209,26 +220,27 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ type domainname β
β β β’ the domain name can be a hostname β
β β β’ must starts with 'https://' only β
-β β [1mDisabled[0m: if "Use Provider" is not β
-β β "Custom". β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (firefox.dns_over_https.provider) is β
+β β not "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mFoxyproxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: foxyproxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: foxyproxy
+[34mβ [0m[1;7m basic [0m
[1;4;92mProxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: foxyproxy.proxies
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: foxyproxy.proxies
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/200/doc.json b/tests/result_tutorial/200/doc.json
index 92069ab85..a56bab1f0 100644
--- a/tests/result_tutorial/200/doc.json
+++ b/tests/result_tutorial/200/doc.json
@@ -55,7 +55,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -162,7 +162,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "firefox.manual.use_for_https"
},
@@ -190,7 +190,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -224,7 +224,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -271,7 +271,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -305,7 +305,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -371,7 +371,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -406,7 +406,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -460,7 +460,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -493,7 +493,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "firefox.proxy_mode",
@@ -562,7 +562,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"false\".",
+ "message": "when the variable {0} has the value \"false\".",
"path": {
"path": "firefox.dns_over_https.enable_dns_over_https"
},
@@ -603,7 +603,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Custom\".",
+ "description": "if {0} is not \"Custom\".",
"variables": [
{
"path": "firefox.dns_over_https.provider",
diff --git a/tests/result_tutorial/200/doc.sh b/tests/result_tutorial/200/doc.sh
index 734de2b8b..96b1777bb 100644
--- a/tests/result_tutorial/200/doc.sh
+++ b/tests/result_tutorial/200/doc.sh
@@ -1,10 +1,10 @@
[1;4;96mFirefox[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: firefox
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: firefox
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -21,19 +21,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mfirefox.proxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;38;5;46mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -62,12 +62,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mfirefox.manual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -78,6 +78,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -89,14 +90,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -107,6 +109,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -118,6 +121,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -139,8 +143,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (firefox.proxy_mode) β
+β β hasn't the value "Automatic proxy β
+β β configuration URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.no_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -161,29 +166,34 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.prompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.proxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
+β β to the Internet" β
+β β (firefox.proxy_mode) is not "Manual β
β β proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" β
+β β (firefox.manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mDNS over HTTPS[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.dns_over_https
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.dns_over_https
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -197,8 +207,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (firefox.dns_over_https.enable_dns_β¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.dns_over_https.custom_dns_url[0m β Custom DNS URL. β
β [1;7m web address [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mValidators[0m: β
@@ -209,26 +220,27 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ type domainname β
β β β’ the domain name can be a hostname β
β β β’ must starts with 'https://' only β
-β β [1mDisabled[0m: if "Use Provider" is not β
-β β "Custom". β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (firefox.dns_over_https.provider) is β
+β β not "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mFoxyproxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: foxyproxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: foxyproxy
+[34mβ [0m[1;7m basic [0m
[1;4;92mProxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: foxyproxy.proxies
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: foxyproxy.proxies
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/210/doc.json b/tests/result_tutorial/210/doc.json
index 4e27cd2cd..67a7fb20c 100644
--- a/tests/result_tutorial/210/doc.json
+++ b/tests/result_tutorial/210/doc.json
@@ -55,7 +55,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -162,7 +162,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "firefox.manual.use_for_https"
},
@@ -190,7 +190,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -224,7 +224,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -271,7 +271,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -305,7 +305,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -371,7 +371,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -406,7 +406,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -460,7 +460,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -493,7 +493,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "firefox.proxy_mode",
@@ -562,7 +562,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"false\".",
+ "message": "when the variable {0} has the value \"false\".",
"path": {
"path": "firefox.dns_over_https.enable_dns_over_https"
},
@@ -603,7 +603,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Custom\".",
+ "description": "if {0} is not \"Custom\".",
"variables": [
{
"path": "firefox.dns_over_https.provider",
diff --git a/tests/result_tutorial/210/doc.sh b/tests/result_tutorial/210/doc.sh
index 80127b3c9..74f28c52e 100644
--- a/tests/result_tutorial/210/doc.sh
+++ b/tests/result_tutorial/210/doc.sh
@@ -1,10 +1,10 @@
[1;4;96mFirefox[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: firefox
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: firefox
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -21,19 +21,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mfirefox.proxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;38;5;46mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -62,12 +62,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mfirefox.manual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -78,6 +78,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -89,14 +90,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -107,6 +109,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -118,6 +121,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -139,8 +143,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (firefox.proxy_mode) β
+β β hasn't the value "Automatic proxy β
+β β configuration URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.no_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -161,29 +166,34 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.prompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.proxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
+β β to the Internet" β
+β β (firefox.proxy_mode) is not "Manual β
β β proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" β
+β β (firefox.manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mDNS over HTTPS[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.dns_over_https
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.dns_over_https
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -197,8 +207,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (firefox.dns_over_https.enable_dns_β¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.dns_over_https.custom_dns_url[0m β Custom DNS URL. β
β [1;7m web address [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mValidators[0m: β
@@ -209,26 +220,27 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ type domainname β
β β β’ the domain name can be a hostname β
β β β’ must starts with 'https://' only β
-β β [1mDisabled[0m: if "Use Provider" is not β
-β β "Custom". β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (firefox.dns_over_https.provider) is β
+β β not "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mFoxyproxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: foxyproxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: foxyproxy
+[34mβ [0m[1;7m basic [0m
[1;4;92mProxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: foxyproxy.proxies
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: foxyproxy.proxies
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/result_tutorial/211/doc.json b/tests/result_tutorial/211/doc.json
index 33d3ad04d..9f001a9dd 100644
--- a/tests/result_tutorial/211/doc.json
+++ b/tests/result_tutorial/211/doc.json
@@ -55,7 +55,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".",
+ "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -162,7 +162,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "firefox.manual.use_for_https"
},
@@ -190,7 +190,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -224,7 +224,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -271,7 +271,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.address",
"type": "variable"
@@ -305,7 +305,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "firefox.manual.http_proxy.port",
"type": "variable"
@@ -371,7 +371,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".",
+ "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -406,7 +406,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -460,7 +460,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"No proxy\".",
+ "message": "when the variable {0} has the value \"No proxy\".",
"path": {
"path": "firefox.proxy_mode"
},
@@ -493,7 +493,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Manual proxy configuration\"\nor \"{1}\" is \"v4\".",
+ "description": "if {0} is not \"Manual proxy configuration\"\nor {1} is \"v4\".",
"variables": [
{
"path": "firefox.proxy_mode",
@@ -562,7 +562,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"false\".",
+ "message": "when the variable {0} has the value \"false\".",
"path": {
"path": "firefox.dns_over_https.enable_dns_over_https"
},
@@ -603,7 +603,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if \"{0}\" is not \"Custom\".",
+ "description": "if {0} is not \"Custom\".",
"variables": [
{
"path": "firefox.dns_over_https.provider",
diff --git a/tests/result_tutorial/211/doc.sh b/tests/result_tutorial/211/doc.sh
index fdf0d6075..43b5a1c03 100644
--- a/tests/result_tutorial/211/doc.sh
+++ b/tests/result_tutorial/211/doc.sh
@@ -1,10 +1,10 @@
[1;4;96mFirefox[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: firefox
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: firefox
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -21,19 +21,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mManual proxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m hasn't
-the value [32m"Manual proxy configuration"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: when the variable [32m"Configure Proxy Access to the Internet"[0m
+[34mβ [0m[1m([0mfirefox.proxy_mode[1m)[0m hasn't the value [32m"Manual proxy configuration"[0m.
[1;4;38;5;46mHTTP Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.http_proxy
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -62,12 +62,12 @@ the value [32m"Manual proxy configuration"[0m.
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mHTTPS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.https_proxy
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"Also use this proxy for HTTPS"[0m
+[34mβ [0m[1m([0mfirefox.manual.use_for_https[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -78,6 +78,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.https_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -89,14 +90,15 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mSOCKS Proxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.manual.socks_proxy
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -107,6 +109,7 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
β β "Proxy address" β
+β β (firefox.manual.http_proxy.address). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.port[0m β Proxy port. β
β [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m β [1mValidators[0m: β
@@ -118,6 +121,7 @@ the value [32m"Manual proxy configuration"[0m.
β β are allowed β
β β [1mDefault[0m: the value of the variable β
β β "Proxy port" β
+β β (firefox.manual.http_proxy.port). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.manual.socks_proxy.version[0m β SOCKS host version used by proxy. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
@@ -139,8 +143,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ the domain name can be a hostname β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" hasn't the value β
-β β "Automatic proxy configuration URL". β
+β β Internet" (firefox.proxy_mode) β
+β β hasn't the value "Automatic proxy β
+β β configuration URL". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.no_proxy[0m β Address for which proxy will be β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β desactivated. β
@@ -161,29 +166,34 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ 192.168.1.0/24 β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.prompt_authentication[0m β Prompt for authentication if β
β [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β password is saved. β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDefault[0m: true β
β β [1mDisabled[0m: when the variable β
β β "Configure Proxy Access to the β
-β β Internet" has the value "No proxy". β
+β β Internet" (firefox.proxy_mode) has β
+β β the value "No proxy". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.proxy_dns_socks5[0m β Use proxy DNS when using SOCKS v5. β
β [1;7m boolean [0m [1;7m advanced [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: false β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: if "Configure Proxy Access β
-β β to the Internet" is not "Manual β
+β β to the Internet" β
+β β (firefox.proxy_mode) is not "Manual β
β β proxy configuration" β
β β or "SOCKS host version used by β
-β β proxy" is "v4". β
+β β proxy" β
+β β (firefox.manual.socks_proxy.version) β
+β β is "v4". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mDNS over HTTPS[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: firefox.dns_over_https
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: firefox.dns_over_https
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -197,8 +207,9 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ NextDNS β
β β β’ Custom β
β β [1mDisabled[0m: when the variable "Enable β
-β β DNS over HTTPS" has the value β
-β β "false". β
+β β DNS over HTTPS" β
+β β (firefox.dns_over_https.enable_dns_β¦ β
+β β has the value "false". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfirefox.dns_over_https.custom_dns_url[0m β Custom DNS URL. β
β [1;7m web address [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mValidators[0m: β
@@ -209,26 +220,27 @@ the value [32m"Manual proxy configuration"[0m.
β β β’ type domainname β
β β β’ the domain name can be a hostname β
β β β’ must starts with 'https://' only β
-β β [1mDisabled[0m: if "Use Provider" is not β
-β β "Custom". β
+β β [1mDisabled[0m: if "Use Provider" β
+β β (firefox.dns_over_https.provider) is β
+β β not "Custom". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mFoxyproxy[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: foxyproxy
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: foxyproxy
+[34mβ [0m[1;7m basic [0m
[1;4;92mProxy configuration[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: foxyproxy.proxies
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: foxyproxy.proxies
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/00_2default_calculated_multi.adoc b/tests/results/test/00_2default_calculated_multi.adoc
index 72661fad4..d056a8c9b 100644
--- a/tests/results/test/00_2default_calculated_multi.adoc
+++ b/tests/results/test/00_2default_calculated_multi.adoc
@@ -10,6 +10,6 @@
* maybe
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A second variable. +
-**Default**: the value of "a first variable".
+**Default**: the value of "a first variable" (var1).
|====
diff --git a/tests/results/test/00_2default_calculated_multi.gitlab.md b/tests/results/test/00_2default_calculated_multi.gitlab.md
index e0e1d4047..1f4822a27 100644
--- a/tests/results/test/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test/00_2default_calculated_multi.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#var1)". |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test/00_2default_calculated_multi.html b/tests/results/test/00_2default_calculated_multi.html
index 502f2d952..6533d698c 100644
--- a/tests/results/test/00_2default_calculated_multi.html
+++ b/tests/results/test/00_2default_calculated_multi.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A first variable. Default: |
-var2 string multiple standard mandatory unique | A second variable. Default: the value of "a first variable". |
+maybe
+var2 string multiple standard mandatory unique | A second variable. Default: the value of "a first variable" (var1). |
diff --git a/tests/results/test/00_2default_calculated_multi.json b/tests/results/test/00_2default_calculated_multi.json
index b7cd433e8..bb1a60244 100644
--- a/tests/results/test/00_2default_calculated_multi.json
+++ b/tests/results/test/00_2default_calculated_multi.json
@@ -53,7 +53,7 @@
"default": {
"name": "Default",
"values": {
- "description": "the value of \"{0}\".",
+ "description": "the value of {0}.",
"variables": [
{
"path": "var1",
diff --git a/tests/results/test/00_2default_calculated_multi.md b/tests/results/test/00_2default_calculated_multi.md
index e0e1d4047..1f4822a27 100644
--- a/tests/results/test/00_2default_calculated_multi.md
+++ b/tests/results/test/00_2default_calculated_multi.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#var1)". |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test/00_2default_calculated_multi.sh b/tests/results/test/00_2default_calculated_multi.sh
index 82a770854..8b01315f7 100644
--- a/tests/results/test/00_2default_calculated_multi.sh
+++ b/tests/results/test/00_2default_calculated_multi.sh
@@ -9,5 +9,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of "a first β
-β [1;7mmandatory [0m [1;7m unique [0m β variable". β
+β [1;7mmandatory [0m [1;7m unique [0m β variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/00_2default_calculated_variable.adoc b/tests/results/test/00_2default_calculated_variable.adoc
index d47b812a7..1e8ffea04 100644
--- a/tests/results/test/00_2default_calculated_variable.adoc
+++ b/tests/results/test/00_2default_calculated_variable.adoc
@@ -10,6 +10,6 @@
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `multiple` `standard` `mandatory` `unique` | A second variable. +
**Validator**: type domainname +
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test/00_2default_calculated_variable.gitlab.md b/tests/results/test/00_2default_calculated_variable.gitlab.md
index db918542a..b62d7fb91 100644
--- a/tests/results/test/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test/00_2default_calculated_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test/00_2default_calculated_variable.html b/tests/results/test/00_2default_calculated_variable.html
index f382f304e..eb8bc88bd 100644
--- a/tests/results/test/00_2default_calculated_variable.html
+++ b/tests/results/test/00_2default_calculated_variable.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
var1 domainname multiple basic mandatory unique | A first variable. Validators: - type domainname
-- the domain name can be an IP
|
-var2 domainname multiple standard mandatory unique | A second variable. Validator: type domainname Default: the value of the variable "a first variable" |
+the domain name can be an IP
+var2 domainname multiple standard mandatory unique | A second variable. Validator: type domainname Default: the value of the variable "a first variable" (var1). |
diff --git a/tests/results/test/00_2default_calculated_variable.json b/tests/results/test/00_2default_calculated_variable.json
index 4c6410f2e..5a35bfb64 100644
--- a/tests/results/test/00_2default_calculated_variable.json
+++ b/tests/results/test/00_2default_calculated_variable.json
@@ -52,7 +52,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test/00_2default_calculated_variable.md b/tests/results/test/00_2default_calculated_variable.md
index db918542a..b62d7fb91 100644
--- a/tests/results/test/00_2default_calculated_variable.md
+++ b/tests/results/test/00_2default_calculated_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test/00_2default_calculated_variable.sh b/tests/results/test/00_2default_calculated_variable.sh
index c182b27e3..205f490e5 100644
--- a/tests/results/test/00_2default_calculated_variable.sh
+++ b/tests/results/test/00_2default_calculated_variable.sh
@@ -9,5 +9,5 @@
β [1mvar2[0m β A second variable. β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mValidator[0m: type domainname β
β [1;7mmandatory [0m [1;7m unique [0m β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/00_2default_calculated_variable_transitive.adoc b/tests/results/test/00_2default_calculated_variable_transitive.adoc
index 32bc11c9e..1d1f9bee5 100644
--- a/tests/results/test/00_2default_calculated_variable_transitive.adoc
+++ b/tests/results/test/00_2default_calculated_variable_transitive.adoc
@@ -14,6 +14,6 @@
* type domainname
* the domain name can be an IP
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test/00_2default_calculated_variable_transitive.gitlab.md
index d339e6d4e..47dd559f6 100644
--- a/tests/results/test/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test/00_2default_calculated_variable_transitive.html b/tests/results/test/00_2default_calculated_variable_transitive.html
index 78727414c..87fb2dbed 100644
--- a/tests/results/test/00_2default_calculated_variable_transitive.html
+++ b/tests/results/test/00_2default_calculated_variable_transitive.html
@@ -6,7 +6,7 @@
var1 domainname multiple basic mandatory unique | A first variable. Validators: - type domainname
- the domain name can be an IP
|
var2 domainname multiple standard mandatory unique | A second variable. Validators: - type domainname
-- the domain name can be an IP
Default: the value of the variable "a first variable" |
+the domain name can be an IP
Default: the value of the variable "a first variable" (var1).
diff --git a/tests/results/test/00_2default_calculated_variable_transitive.json b/tests/results/test/00_2default_calculated_variable_transitive.json
index 25dd3a1d9..fa84916c3 100644
--- a/tests/results/test/00_2default_calculated_variable_transitive.json
+++ b/tests/results/test/00_2default_calculated_variable_transitive.json
@@ -52,7 +52,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test/00_2default_calculated_variable_transitive.md b/tests/results/test/00_2default_calculated_variable_transitive.md
index d339e6d4e..47dd559f6 100644
--- a/tests/results/test/00_2default_calculated_variable_transitive.md
+++ b/tests/results/test/00_2default_calculated_variable_transitive.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test/00_2default_calculated_variable_transitive.sh b/tests/results/test/00_2default_calculated_variable_transitive.sh
index 201e3f886..33799337a 100644
--- a/tests/results/test/00_2default_calculated_variable_transitive.sh
+++ b/tests/results/test/00_2default_calculated_variable_transitive.sh
@@ -11,5 +11,5 @@
β [1;7mmandatory [0m [1;7m unique [0m β β’ type domainname β
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/00_6choice_link.adoc b/tests/results/test/00_6choice_link.adoc
index 110a30132..bae418302 100644
--- a/tests/results/test/00_6choice_link.adoc
+++ b/tests/results/test/00_6choice_link.adoc
@@ -16,6 +16,6 @@
* b
* c
-**Default**: the value of the variable "the first variable"
+**Default**: the value of the variable "the first variable" (var1).
|====
diff --git a/tests/results/test/00_6choice_link.gitlab.md b/tests/results/test/00_6choice_link.gitlab.md
index 20c2cf2fe..aace81625 100644
--- a/tests/results/test/00_6choice_link.gitlab.md
+++ b/tests/results/test/00_6choice_link.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
β’ a
β’ b
β’ c |
-| **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 "[the first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
β’ a
β’ b
β’ c |
+| **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 "[the first variable](#var1)" (var1). |
diff --git a/tests/results/test/00_6choice_link.html b/tests/results/test/00_6choice_link.html
index a7d2f4047..d7b76cf66 100644
--- a/tests/results/test/00_6choice_link.html
+++ b/tests/results/test/00_6choice_link.html
@@ -8,7 +8,7 @@
c
var2 choice standard mandatory | The second variable. Choices: Default: the value of the variable "the first variable" |
+c
Default: the value of the variable "the first variable" (var1).
diff --git a/tests/results/test/00_6choice_link.json b/tests/results/test/00_6choice_link.json
index 8b6842740..63f2af163 100644
--- a/tests/results/test/00_6choice_link.json
+++ b/tests/results/test/00_6choice_link.json
@@ -40,7 +40,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test/00_6choice_link.md b/tests/results/test/00_6choice_link.md
index 20c2cf2fe..aace81625 100644
--- a/tests/results/test/00_6choice_link.md
+++ b/tests/results/test/00_6choice_link.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
β’ a
β’ b
β’ c |
-| **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 "[the first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
β’ a
β’ b
β’ c |
+| **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 "[the first variable](#var1)" (var1). |
diff --git a/tests/results/test/00_6choice_link.sh b/tests/results/test/00_6choice_link.sh
index e1091655c..0fc1d94f7 100644
--- a/tests/results/test/00_6choice_link.sh
+++ b/tests/results/test/00_6choice_link.sh
@@ -13,5 +13,5 @@
β β β’ b β
β β β’ c β
β β [1mDefault[0m: the value of the variable β
-β β "the first variable" β
+β β "the first variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/00_6choice_variable.adoc b/tests/results/test/00_6choice_variable.adoc
index 6af801ffa..1a43870be 100644
--- a/tests/results/test/00_6choice_variable.adoc
+++ b/tests/results/test/00_6choice_variable.adoc
@@ -10,7 +10,7 @@
* c
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (var1). +
**Default**: a
|====
diff --git a/tests/results/test/00_6choice_variable.gitlab.md b/tests/results/test/00_6choice_variable.gitlab.md
index 47bd2f19b..879000e9f 100644
--- a/tests/results/test/00_6choice_variable.gitlab.md
+++ b/tests/results/test/00_6choice_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
diff --git a/tests/results/test/00_6choice_variable.html b/tests/results/test/00_6choice_variable.html
index 54009e310..1eab9c392 100644
--- a/tests/results/test/00_6choice_variable.html
+++ b/tests/results/test/00_6choice_variable.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A second variable. Default: |
-var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
+c
+var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (var1). Default: a |
diff --git a/tests/results/test/00_6choice_variable.json b/tests/results/test/00_6choice_variable.json
index 0dd023519..5fab92473 100644
--- a/tests/results/test/00_6choice_variable.json
+++ b/tests/results/test/00_6choice_variable.json
@@ -52,7 +52,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test/00_6choice_variable.md b/tests/results/test/00_6choice_variable.md
index 47bd2f19b..879000e9f 100644
--- a/tests/results/test/00_6choice_variable.md
+++ b/tests/results/test/00_6choice_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
diff --git a/tests/results/test/00_6choice_variable.sh b/tests/results/test/00_6choice_variable.sh
index 9103d5700..c833c096a 100644
--- a/tests/results/test/00_6choice_variable.sh
+++ b/tests/results/test/00_6choice_variable.sh
@@ -9,6 +9,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/00_6choice_variable_link.adoc b/tests/results/test/00_6choice_variable_link.adoc
index 84e92733f..2c707eea7 100644
--- a/tests/results/test/00_6choice_variable_link.adoc
+++ b/tests/results/test/00_6choice_variable_link.adoc
@@ -10,11 +10,11 @@
* c
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (var1). +
**Default**: a
| **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
-**Choices**: the value of the variable "a second variable" +
-**Default**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a second variable" (var1). +
+**Default**: the value of the variable "a first variable" (var2).
|====
diff --git a/tests/results/test/00_6choice_variable_link.gitlab.md b/tests/results/test/00_6choice_variable_link.gitlab.md
index 8213a8ca5..1240b5b68 100644
--- a/tests/results/test/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
-| **var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)"
**Default**: the value of the variable "[a first variable](#var2)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
+| **var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)" (var1).
**Default**: the value of the variable "[a first variable](#var2)" (var2). |
diff --git a/tests/results/test/00_6choice_variable_link.html b/tests/results/test/00_6choice_variable_link.html
index a1340fd28..634fa19c8 100644
--- a/tests/results/test/00_6choice_variable_link.html
+++ b/tests/results/test/00_6choice_variable_link.html
@@ -1,13 +1,13 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A second variable. Default: |
-var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
-var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" Default: the value of the variable "a first variable" |
+c
+var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (var1). Default: a |
+var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" (var1). Default: the value of the variable "a first variable" (var2). |
diff --git a/tests/results/test/00_6choice_variable_link.json b/tests/results/test/00_6choice_variable_link.json
index 7ead7e3b9..b17e4d089 100644
--- a/tests/results/test/00_6choice_variable_link.json
+++ b/tests/results/test/00_6choice_variable_link.json
@@ -52,7 +52,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
@@ -78,7 +78,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var2",
"type": "variable"
@@ -90,7 +90,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test/00_6choice_variable_link.md b/tests/results/test/00_6choice_variable_link.md
index 8213a8ca5..1240b5b68 100644
--- a/tests/results/test/00_6choice_variable_link.md
+++ b/tests/results/test/00_6choice_variable_link.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
-| **var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)"
**Default**: the value of the variable "[a first variable](#var2)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
+| **var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)" (var1).
**Default**: the value of the variable "[a first variable](#var2)" (var2). |
diff --git a/tests/results/test/00_6choice_variable_link.sh b/tests/results/test/00_6choice_variable_link.sh
index f19a692c1..2ab94ceac 100644
--- a/tests/results/test/00_6choice_variable_link.sh
+++ b/tests/results/test/00_6choice_variable_link.sh
@@ -9,12 +9,12 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar3[0m β A third variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var2). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/00_6choice_variable_link2.adoc b/tests/results/test/00_6choice_variable_link2.adoc
index 31d6639da..bb931633b 100644
--- a/tests/results/test/00_6choice_variable_link2.adoc
+++ b/tests/results/test/00_6choice_variable_link2.adoc
@@ -10,7 +10,7 @@
* c
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (var1). +
**Default**: a
|====
@@ -27,7 +27,7 @@
| Variable | Description
| **family.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
-**Choices**: the value of the variable "a second variable" +
-**Default**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a second variable" (var1). +
+**Default**: the value of the variable "a first variable" (var2).
|====
diff --git a/tests/results/test/00_6choice_variable_link2.gitlab.md b/tests/results/test/00_6choice_variable_link2.gitlab.md
index 2c2e08909..8897741cf 100644
--- a/tests/results/test/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test/00_6choice_variable_link2.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
family
@@ -9,9 +9,9 @@
> **Path**: family\
> `standard`
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)"
**Default**: the value of the variable "[a first variable](#var2)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)" (var1).
**Default**: the value of the variable "[a first variable](#var2)" (var2). |
diff --git a/tests/results/test/00_6choice_variable_link2.html b/tests/results/test/00_6choice_variable_link2.html
index 803cbdb50..e4561fca7 100644
--- a/tests/results/test/00_6choice_variable_link2.html
+++ b/tests/results/test/00_6choice_variable_link2.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A second variable. Default: |
-var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
+c
+var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (var1). Default: a |
@@ -18,10 +18,10 @@
-| Variable | Description |
+| Variable | Description |
-family.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" Default: the value of the variable "a first variable" |
+family.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" (var1). Default: the value of the variable "a first variable" (var2). |
diff --git a/tests/results/test/00_6choice_variable_link2.json b/tests/results/test/00_6choice_variable_link2.json
index 9749b37ed..24beda974 100644
--- a/tests/results/test/00_6choice_variable_link2.json
+++ b/tests/results/test/00_6choice_variable_link2.json
@@ -52,7 +52,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
@@ -87,7 +87,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var2",
"type": "variable"
@@ -99,7 +99,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test/00_6choice_variable_link2.md b/tests/results/test/00_6choice_variable_link2.md
index 0251fbd28..da17af320 100644
--- a/tests/results/test/00_6choice_variable_link2.md
+++ b/tests/results/test/00_6choice_variable_link2.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
# family
@@ -10,7 +10,7 @@
> **Path**: family\
> `standard`
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)"
**Default**: the value of the variable "[a first variable](#var2)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)" (var1).
**Default**: the value of the variable "[a first variable](#var2)" (var2). |
diff --git a/tests/results/test/00_6choice_variable_link2.sh b/tests/results/test/00_6choice_variable_link2.sh
index 1bd6787c6..0ce4e25d6 100644
--- a/tests/results/test/00_6choice_variable_link2.sh
+++ b/tests/results/test/00_6choice_variable_link2.sh
@@ -9,23 +9,23 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mfamily[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mfamily.var3[0m β A third variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var2). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/00_6regexp_link.adoc b/tests/results/test/00_6regexp_link.adoc
index 481287b7b..5a0905865 100644
--- a/tests/results/test/00_6regexp_link.adoc
+++ b/tests/results/test/00_6regexp_link.adoc
@@ -12,7 +12,7 @@
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. +
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
-**Default**: the value of the variable "a first variable" +
+**Default**: the value of the variable "a first variable" (var1). +
**Examples**:
* '#b2b1b1'
diff --git a/tests/results/test/00_6regexp_link.gitlab.md b/tests/results/test/00_6regexp_link.gitlab.md
index c1bc545a4..f66d66a83 100644
--- a/tests/results/test/00_6regexp_link.gitlab.md
+++ b/tests/results/test/00_6regexp_link.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 |
-| **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 "[a first variable](#var1)"
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 |
+| **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 "[a first variable](#var1)" (var1).
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
diff --git a/tests/results/test/00_6regexp_link.html b/tests/results/test/00_6regexp_link.html
index b46935504..7b128dff7 100644
--- a/tests/results/test/00_6regexp_link.html
+++ b/tests/results/test/00_6regexp_link.html
@@ -5,7 +5,7 @@
var1 regexp standard mandatory | A first variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: #a1a1a1 Examples: |
-var2 regexp standard mandatory | A second variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: the value of the variable "a first variable" Examples: - '#b2b1b1'
+var2 regexp standard mandatory | A second variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: the value of the variable "a first variable" (var1). Examples: |
|
diff --git a/tests/results/test/00_6regexp_link.json b/tests/results/test/00_6regexp_link.json
index 7980285a7..0a2a9fc76 100644
--- a/tests/results/test/00_6regexp_link.json
+++ b/tests/results/test/00_6regexp_link.json
@@ -47,7 +47,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test/00_6regexp_link.md b/tests/results/test/00_6regexp_link.md
index c1bc545a4..f66d66a83 100644
--- a/tests/results/test/00_6regexp_link.md
+++ b/tests/results/test/00_6regexp_link.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 |
-| **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 "[a first variable](#var1)"
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 |
+| **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 "[a first variable](#var1)" (var1).
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
diff --git a/tests/results/test/00_6regexp_link.sh b/tests/results/test/00_6regexp_link.sh
index 5c6aef80a..2dbb6dbb7 100644
--- a/tests/results/test/00_6regexp_link.sh
+++ b/tests/results/test/00_6regexp_link.sh
@@ -15,7 +15,7 @@
β β expressions β
β β "^#(?:[0-9a-f]{3}){1,2}$" β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var1). β
β β [1mExamples[0m: β
β β β’ #b2b1b1 β
β β β’ #b3b2b2 β
diff --git a/tests/results/test/00_9choice_variables.adoc b/tests/results/test/00_9choice_variables.adoc
index b357ce7de..a8ed7fac6 100644
--- a/tests/results/test/00_9choice_variables.adoc
+++ b/tests/results/test/00_9choice_variables.adoc
@@ -11,8 +11,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
**Choices**:
-* the value of the variable "the first source variable"
-* the value of the variable "the second source variable"
+* the value of the variable "the first source variable" (source_variable_1)
+* the value of the variable "the second source variable" (source_variable_2)
**Default**: val1
|====
diff --git a/tests/results/test/00_9choice_variables.gitlab.md b/tests/results/test/00_9choice_variables.gitlab.md
index 0ec391503..07182c8d3 100644
--- a/tests/results/test/00_9choice_variables.gitlab.md
+++ b/tests/results/test/00_9choice_variables.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
-| **source_variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.
**Default**: val2 |
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ the value of the variable "[the first source variable](#source_variable_1)"
β’ the value of the variable "[the second source variable](#source_variable_2)"
**Default**: val1 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
+| **source_variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.
**Default**: val2 |
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1)
β’ the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2)
**Default**: val1 |
diff --git a/tests/results/test/00_9choice_variables.html b/tests/results/test/00_9choice_variables.html
index 1fdedc922..07ca95a5e 100644
--- a/tests/results/test/00_9choice_variables.html
+++ b/tests/results/test/00_9choice_variables.html
@@ -5,8 +5,8 @@
source_variable_1 string standard mandatory | The first source variable. Default: val1 |
source_variable_2 string standard mandatory | The second source variable. Default: val2 |
-my_variable choice standard mandatory | A variable. Choices: - the value of the variable "the first source variable"
-- the value of the variable "the second source variable"
Default: val1 |
+my_variable choice standard mandatory | A variable. Choices: - the value of the variable "the first source variable" (source_variable_1)
+- the value of the variable "the second source variable" (source_variable_2)
Default: val1 |
diff --git a/tests/results/test/00_9choice_variables.json b/tests/results/test/00_9choice_variables.json
index 047841527..fea6cfbec 100644
--- a/tests/results/test/00_9choice_variables.json
+++ b/tests/results/test/00_9choice_variables.json
@@ -62,7 +62,7 @@
"name": "Choices",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "source_variable_1",
"type": "variable"
@@ -70,7 +70,7 @@
"description": "the first source variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "source_variable_2",
"type": "variable"
diff --git a/tests/results/test/00_9choice_variables.md b/tests/results/test/00_9choice_variables.md
index 0ec391503..07182c8d3 100644
--- a/tests/results/test/00_9choice_variables.md
+++ b/tests/results/test/00_9choice_variables.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
-| **source_variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.
**Default**: val2 |
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ the value of the variable "[the first source variable](#source_variable_1)"
β’ the value of the variable "[the second source variable](#source_variable_2)"
**Default**: val1 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
+| **source_variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.
**Default**: val2 |
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1)
β’ the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2)
**Default**: val1 |
diff --git a/tests/results/test/00_9choice_variables.sh b/tests/results/test/00_9choice_variables.sh
index 90608807a..8b569bc54 100644
--- a/tests/results/test/00_9choice_variables.sh
+++ b/tests/results/test/00_9choice_variables.sh
@@ -11,7 +11,9 @@
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
β β β’ the value of the variable "the β
β β first source variable" β
+β β (source_variable_1) β
β β β’ the value of the variable "the β
β β second source variable" β
+β β (source_variable_2) β
β β [1mDefault[0m: val1 β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/00_9default_calculation_multi_optional.adoc b/tests/results/test/00_9default_calculation_multi_optional.adoc
index dc00e0f46..33192e739 100644
--- a/tests/results/test/00_9default_calculation_multi_optional.adoc
+++ b/tests/results/test/00_9default_calculation_multi_optional.adoc
@@ -6,6 +6,6 @@
| **my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (my_variable) if it is defined
|====
diff --git a/tests/results/test/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test/00_9default_calculation_multi_optional.gitlab.md
index 7e340dfba..e03007f04 100644
--- a/tests/results/test/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test/00_9default_calculation_multi_optional.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test/00_9default_calculation_multi_optional.html b/tests/results/test/00_9default_calculation_multi_optional.html
index dcd881e9a..fd87b7170 100644
--- a/tests/results/test/00_9default_calculation_multi_optional.html
+++ b/tests/results/test/00_9default_calculation_multi_optional.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-my_variable string standard mandatory | Default: val1 |
-my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+my_variable string standard mandatory | Default: val1 |
+my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (my_variable) if it is defined
|
diff --git a/tests/results/test/00_9default_calculation_multi_optional.json b/tests/results/test/00_9default_calculation_multi_optional.json
index 152c7f4ac..7bbb814ec 100644
--- a/tests/results/test/00_9default_calculation_multi_optional.json
+++ b/tests/results/test/00_9default_calculation_multi_optional.json
@@ -41,7 +41,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "my_variable",
"type": "variable"
diff --git a/tests/results/test/00_9default_calculation_multi_optional.md b/tests/results/test/00_9default_calculation_multi_optional.md
index 7e340dfba..e03007f04 100644
--- a/tests/results/test/00_9default_calculation_multi_optional.md
+++ b/tests/results/test/00_9default_calculation_multi_optional.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test/00_9default_calculation_multi_optional.sh b/tests/results/test/00_9default_calculation_multi_optional.sh
index 171c38989..2c3c7484b 100644
--- a/tests/results/test/00_9default_calculation_multi_optional.sh
+++ b/tests/results/test/00_9default_calculation_multi_optional.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmy_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (my_variable) if it is β
+β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/00_9default_calculation_multi_optional2.adoc b/tests/results/test/00_9default_calculation_multi_optional2.adoc
index dc00e0f46..33192e739 100644
--- a/tests/results/test/00_9default_calculation_multi_optional2.adoc
+++ b/tests/results/test/00_9default_calculation_multi_optional2.adoc
@@ -6,6 +6,6 @@
| **my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (my_variable) if it is defined
|====
diff --git a/tests/results/test/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test/00_9default_calculation_multi_optional2.gitlab.md
index 7e340dfba..e03007f04 100644
--- a/tests/results/test/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test/00_9default_calculation_multi_optional2.html b/tests/results/test/00_9default_calculation_multi_optional2.html
index dcd881e9a..fd87b7170 100644
--- a/tests/results/test/00_9default_calculation_multi_optional2.html
+++ b/tests/results/test/00_9default_calculation_multi_optional2.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-my_variable string standard mandatory | Default: val1 |
-my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+my_variable string standard mandatory | Default: val1 |
+my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (my_variable) if it is defined
|
diff --git a/tests/results/test/00_9default_calculation_multi_optional2.json b/tests/results/test/00_9default_calculation_multi_optional2.json
index 152c7f4ac..7bbb814ec 100644
--- a/tests/results/test/00_9default_calculation_multi_optional2.json
+++ b/tests/results/test/00_9default_calculation_multi_optional2.json
@@ -41,7 +41,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "my_variable",
"type": "variable"
diff --git a/tests/results/test/00_9default_calculation_multi_optional2.md b/tests/results/test/00_9default_calculation_multi_optional2.md
index 7e340dfba..e03007f04 100644
--- a/tests/results/test/00_9default_calculation_multi_optional2.md
+++ b/tests/results/test/00_9default_calculation_multi_optional2.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test/00_9default_calculation_multi_optional2.sh b/tests/results/test/00_9default_calculation_multi_optional2.sh
index 171c38989..2c3c7484b 100644
--- a/tests/results/test/00_9default_calculation_multi_optional2.sh
+++ b/tests/results/test/00_9default_calculation_multi_optional2.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmy_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (my_variable) if it is β
+β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/00_9default_calculation_multi_optional_default.adoc b/tests/results/test/00_9default_calculation_multi_optional_default.adoc
index dc00e0f46..33192e739 100644
--- a/tests/results/test/00_9default_calculation_multi_optional_default.adoc
+++ b/tests/results/test/00_9default_calculation_multi_optional_default.adoc
@@ -6,6 +6,6 @@
| **my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (my_variable) if it is defined
|====
diff --git a/tests/results/test/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test/00_9default_calculation_multi_optional_default.gitlab.md
index 7e340dfba..e03007f04 100644
--- a/tests/results/test/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test/00_9default_calculation_multi_optional_default.html b/tests/results/test/00_9default_calculation_multi_optional_default.html
index dcd881e9a..fd87b7170 100644
--- a/tests/results/test/00_9default_calculation_multi_optional_default.html
+++ b/tests/results/test/00_9default_calculation_multi_optional_default.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-my_variable string standard mandatory | Default: val1 |
-my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+my_variable string standard mandatory | Default: val1 |
+my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (my_variable) if it is defined
|
diff --git a/tests/results/test/00_9default_calculation_multi_optional_default.json b/tests/results/test/00_9default_calculation_multi_optional_default.json
index 152c7f4ac..7bbb814ec 100644
--- a/tests/results/test/00_9default_calculation_multi_optional_default.json
+++ b/tests/results/test/00_9default_calculation_multi_optional_default.json
@@ -41,7 +41,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "my_variable",
"type": "variable"
diff --git a/tests/results/test/00_9default_calculation_multi_optional_default.md b/tests/results/test/00_9default_calculation_multi_optional_default.md
index 7e340dfba..e03007f04 100644
--- a/tests/results/test/00_9default_calculation_multi_optional_default.md
+++ b/tests/results/test/00_9default_calculation_multi_optional_default.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test/00_9default_calculation_multi_optional_default.sh b/tests/results/test/00_9default_calculation_multi_optional_default.sh
index 171c38989..2c3c7484b 100644
--- a/tests/results/test/00_9default_calculation_multi_optional_default.sh
+++ b/tests/results/test/00_9default_calculation_multi_optional_default.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmy_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (my_variable) if it is β
+β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/00_9default_calculation_optional_exists.adoc b/tests/results/test/00_9default_calculation_optional_exists.adoc
index de69aa7d7..e935769c5 100644
--- a/tests/results/test/00_9default_calculation_optional_exists.adoc
+++ b/tests/results/test/00_9default_calculation_optional_exists.adoc
@@ -1,12 +1,12 @@
[cols="1a,1a"]
|====
-| Variable | Description
+| Variable | Description
| **my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
* val1
-* val2
+* val2
| **my_calculated_variable** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "my_variable" if it is defined
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "my_variable" (my_variable) if it is defined.
|====
diff --git a/tests/results/test/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test/00_9default_calculation_optional_exists.gitlab.md
index 6c39c245b..cd4db4a08 100644
--- a/tests/results/test/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test/00_9default_calculation_optional_exists.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined. |
diff --git a/tests/results/test/00_9default_calculation_optional_exists.html b/tests/results/test/00_9default_calculation_optional_exists.html
index 80127d5fd..5432c28a5 100644
--- a/tests/results/test/00_9default_calculation_optional_exists.html
+++ b/tests/results/test/00_9default_calculation_optional_exists.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
my_variable string multiple standard mandatory unique | Default: |
-my_calculated_variable string multiple standard mandatory unique | Default: the value of the variable "my_variable" if it is defined |
+val2
+my_calculated_variable string multiple standard mandatory unique | Default: the value of the variable "my_variable" (my_variable) if it is defined. |
diff --git a/tests/results/test/00_9default_calculation_optional_exists.json b/tests/results/test/00_9default_calculation_optional_exists.json
index 6f0f46253..09460430d 100644
--- a/tests/results/test/00_9default_calculation_optional_exists.json
+++ b/tests/results/test/00_9default_calculation_optional_exists.json
@@ -50,7 +50,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined.",
"path": {
"path": "my_variable",
"type": "variable"
diff --git a/tests/results/test/00_9default_calculation_optional_exists.md b/tests/results/test/00_9default_calculation_optional_exists.md
index 6c39c245b..cd4db4a08 100644
--- a/tests/results/test/00_9default_calculation_optional_exists.md
+++ b/tests/results/test/00_9default_calculation_optional_exists.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined. |
diff --git a/tests/results/test/00_9default_calculation_optional_exists.sh b/tests/results/test/00_9default_calculation_optional_exists.sh
index e20b39fad..84985a730 100644
--- a/tests/results/test/00_9default_calculation_optional_exists.sh
+++ b/tests/results/test/00_9default_calculation_optional_exists.sh
@@ -6,6 +6,6 @@
β [1;7mmandatory [0m [1;7m unique [0m β β’ val2 β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmy_calculated_variable[0m β [1mDefault[0m: the value of the variable β
-β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "my_variable" if it is defined β
-β [1;7mmandatory [0m [1;7m unique [0m β β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "my_variable" (my_variable) if it is β
+β [1;7mmandatory [0m [1;7m unique [0m β defined. β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/00_9default_information_other_variable.adoc b/tests/results/test/00_9default_information_other_variable.adoc
index 80bdf3a90..b508717ab 100644
--- a/tests/results/test/00_9default_information_other_variable.adoc
+++ b/tests/results/test/00_9default_information_other_variable.adoc
@@ -5,6 +5,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "var1".
+**Default**: the value of the information "test_information" of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test/00_9default_information_other_variable.gitlab.md b/tests/results/test/00_9default_information_other_variable.gitlab.md
index 46dcf9c9d..86c82d56b 100644
--- a/tests/results/test/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test/00_9default_information_other_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
-| **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 "var1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test/00_9default_information_other_variable.html b/tests/results/test/00_9default_information_other_variable.html
index c24375e60..b51d190fa 100644
--- a/tests/results/test/00_9default_information_other_variable.html
+++ b/tests/results/test/00_9default_information_other_variable.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-var1 string basic mandatory | A first variable. |
-var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "var1". |
+var1 string basic mandatory | A first variable. |
+var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "a first variable" (var1). |
diff --git a/tests/results/test/00_9default_information_other_variable.json b/tests/results/test/00_9default_information_other_variable.json
index d9b7e9d9c..3b8274caa 100644
--- a/tests/results/test/00_9default_information_other_variable.json
+++ b/tests/results/test/00_9default_information_other_variable.json
@@ -31,7 +31,15 @@
"type": "variable",
"default": {
"name": "Default",
- "values": "the value of the information \"test_information\" of the variable \"var1\"."
+ "values": {
+ "message": "the value of the information \"test_information\" of the variable {0}.",
+ "path": {
+ "type": "information",
+ "information": "test_information",
+ "path": "var1"
+ },
+ "description": "a first variable"
+ }
},
"variable_type": "string"
}
diff --git a/tests/results/test/00_9default_information_other_variable.md b/tests/results/test/00_9default_information_other_variable.md
index 46dcf9c9d..86c82d56b 100644
--- a/tests/results/test/00_9default_information_other_variable.md
+++ b/tests/results/test/00_9default_information_other_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
-| **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 "var1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test/00_9default_information_other_variable.sh b/tests/results/test/00_9default_information_other_variable.sh
index f50b5ded2..41f0d3ff9 100644
--- a/tests/results/test/00_9default_information_other_variable.sh
+++ b/tests/results/test/00_9default_information_other_variable.sh
@@ -7,5 +7,6 @@
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "var1". β
+β β the variable "a first variable" β
+β β (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/00_9default_information_other_variable2.adoc b/tests/results/test/00_9default_information_other_variable2.adoc
index 80bdf3a90..b508717ab 100644
--- a/tests/results/test/00_9default_information_other_variable2.adoc
+++ b/tests/results/test/00_9default_information_other_variable2.adoc
@@ -5,6 +5,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "var1".
+**Default**: the value of the information "test_information" of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test/00_9default_information_other_variable2.gitlab.md b/tests/results/test/00_9default_information_other_variable2.gitlab.md
index 46dcf9c9d..86c82d56b 100644
--- a/tests/results/test/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test/00_9default_information_other_variable2.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
-| **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 "var1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test/00_9default_information_other_variable2.html b/tests/results/test/00_9default_information_other_variable2.html
index c24375e60..b51d190fa 100644
--- a/tests/results/test/00_9default_information_other_variable2.html
+++ b/tests/results/test/00_9default_information_other_variable2.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-var1 string basic mandatory | A first variable. |
-var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "var1". |
+var1 string basic mandatory | A first variable. |
+var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "a first variable" (var1). |
diff --git a/tests/results/test/00_9default_information_other_variable2.json b/tests/results/test/00_9default_information_other_variable2.json
index d9b7e9d9c..3b8274caa 100644
--- a/tests/results/test/00_9default_information_other_variable2.json
+++ b/tests/results/test/00_9default_information_other_variable2.json
@@ -31,7 +31,15 @@
"type": "variable",
"default": {
"name": "Default",
- "values": "the value of the information \"test_information\" of the variable \"var1\"."
+ "values": {
+ "message": "the value of the information \"test_information\" of the variable {0}.",
+ "path": {
+ "type": "information",
+ "information": "test_information",
+ "path": "var1"
+ },
+ "description": "a first variable"
+ }
},
"variable_type": "string"
}
diff --git a/tests/results/test/00_9default_information_other_variable2.md b/tests/results/test/00_9default_information_other_variable2.md
index 46dcf9c9d..86c82d56b 100644
--- a/tests/results/test/00_9default_information_other_variable2.md
+++ b/tests/results/test/00_9default_information_other_variable2.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
-| **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 "var1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test/00_9default_information_other_variable2.sh b/tests/results/test/00_9default_information_other_variable2.sh
index f50b5ded2..41f0d3ff9 100644
--- a/tests/results/test/00_9default_information_other_variable2.sh
+++ b/tests/results/test/00_9default_information_other_variable2.sh
@@ -7,5 +7,6 @@
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "var1". β
+β β the variable "a first variable" β
+β β (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/01_9choice_variable_multi.adoc b/tests/results/test/01_9choice_variable_multi.adoc
index a37951702..ea5e4530a 100644
--- a/tests/results/test/01_9choice_variable_multi.adoc
+++ b/tests/results/test/01_9choice_variable_multi.adoc
@@ -10,6 +10,6 @@
* c
| **variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A second variable. +
-**Choices**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a first variable" (variable1).
|====
diff --git a/tests/results/test/01_9choice_variable_multi.gitlab.md b/tests/results/test/01_9choice_variable_multi.gitlab.md
index 2588cc24b..230cc86f4 100644
--- a/tests/results/test/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test/01_9choice_variable_multi.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ a
β’ b
β’ c |
-| **variable2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Choices**: the value of the variable "[a first variable](#variable1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ a
β’ b
β’ c |
+| **variable2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Choices**: the value of the variable "[a first variable](#variable1)" (variable1). |
diff --git a/tests/results/test/01_9choice_variable_multi.html b/tests/results/test/01_9choice_variable_multi.html
index 46a350bb8..1e81c43ff 100644
--- a/tests/results/test/01_9choice_variable_multi.html
+++ b/tests/results/test/01_9choice_variable_multi.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
variable1 string multiple standard mandatory unique | A first variable. Default: |
-variable2 choice basic mandatory | A second variable. Choices: the value of the variable "a first variable" |
+c
+variable2 choice basic mandatory | A second variable. Choices: the value of the variable "a first variable" (variable1). |
diff --git a/tests/results/test/01_9choice_variable_multi.json b/tests/results/test/01_9choice_variable_multi.json
index 55e63e93b..2833bff24 100644
--- a/tests/results/test/01_9choice_variable_multi.json
+++ b/tests/results/test/01_9choice_variable_multi.json
@@ -48,7 +48,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "variable1",
"type": "variable"
diff --git a/tests/results/test/01_9choice_variable_multi.md b/tests/results/test/01_9choice_variable_multi.md
index 2588cc24b..230cc86f4 100644
--- a/tests/results/test/01_9choice_variable_multi.md
+++ b/tests/results/test/01_9choice_variable_multi.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ a
β’ b
β’ c |
-| **variable2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Choices**: the value of the variable "[a first variable](#variable1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ a
β’ b
β’ c |
+| **variable2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Choices**: the value of the variable "[a first variable](#variable1)" (variable1). |
diff --git a/tests/results/test/01_9choice_variable_multi.sh b/tests/results/test/01_9choice_variable_multi.sh
index c33614e64..8c6bb3267 100644
--- a/tests/results/test/01_9choice_variable_multi.sh
+++ b/tests/results/test/01_9choice_variable_multi.sh
@@ -9,5 +9,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable2[0m β A second variable. β
β [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (variable1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/04_1auto_save_and_calculated.adoc b/tests/results/test/04_1auto_save_and_calculated.adoc
index 26cdc1d37..a17ae3b2b 100644
--- a/tests/results/test/04_1auto_save_and_calculated.adoc
+++ b/tests/results/test/04_1auto_save_and_calculated.adoc
@@ -6,6 +6,6 @@
**Default**: no
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | A second variable. +
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test/04_1auto_save_and_calculated.gitlab.md b/tests/results/test/04_1auto_save_and_calculated.gitlab.md
index 2e06af2f5..fcdf08b47 100644
--- a/tests/results/test/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test/04_1auto_save_and_calculated.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
-| **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 "[a first variable](#var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test/04_1auto_save_and_calculated.html b/tests/results/test/04_1auto_save_and_calculated.html
index e0d8379b7..896094cf7 100644
--- a/tests/results/test/04_1auto_save_and_calculated.html
+++ b/tests/results/test/04_1auto_save_and_calculated.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-var1 string standard mandatory | A first variable. Default: no |
-var2 string basic mandatory auto modified | A second variable. Default: the value of the variable "a first variable" |
+var1 string standard mandatory | A first variable. Default: no |
+var2 string basic mandatory auto modified | A second variable. Default: the value of the variable "a first variable" (var1). |
diff --git a/tests/results/test/04_1auto_save_and_calculated.json b/tests/results/test/04_1auto_save_and_calculated.json
index 8a7210f39..3d0abf19f 100644
--- a/tests/results/test/04_1auto_save_and_calculated.json
+++ b/tests/results/test/04_1auto_save_and_calculated.json
@@ -42,7 +42,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test/04_1auto_save_and_calculated.md b/tests/results/test/04_1auto_save_and_calculated.md
index 2e06af2f5..fcdf08b47 100644
--- a/tests/results/test/04_1auto_save_and_calculated.md
+++ b/tests/results/test/04_1auto_save_and_calculated.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
-| **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 "[a first variable](#var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test/04_1auto_save_and_calculated.sh b/tests/results/test/04_1auto_save_and_calculated.sh
index 5c100132b..3a690ab84 100644
--- a/tests/results/test/04_1auto_save_and_calculated.sh
+++ b/tests/results/test/04_1auto_save_and_calculated.sh
@@ -6,5 +6,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m auto [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmodified [0m β "a first variable" β
+β [1;7mmodified [0m β "a first variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/04_1default_calculation_hidden.adoc b/tests/results/test/04_1default_calculation_hidden.adoc
index 1e09d9b5d..2a6661f18 100644
--- a/tests/results/test/04_1default_calculation_hidden.adoc
+++ b/tests/results/test/04_1default_calculation_hidden.adoc
@@ -6,7 +6,7 @@
**Default**: value
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a first variable" has the value "value".
+**Disabled**: when the variable "a first variable" (var1) has the value "value".
| **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. +
**Default**: depends on a calculation.
diff --git a/tests/results/test/04_1default_calculation_hidden.gitlab.md b/tests/results/test/04_1default_calculation_hidden.gitlab.md
index eff50c227..39cf66c25 100644
--- a/tests/results/test/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" has the value "value". |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" (var1) has the value "value". |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test/04_1default_calculation_hidden.html b/tests/results/test/04_1default_calculation_hidden.html
index 048ab90ac..ea67c227e 100644
--- a/tests/results/test/04_1default_calculation_hidden.html
+++ b/tests/results/test/04_1default_calculation_hidden.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-var1 string standard mandatory | A first variable. Default: value |
-var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" has the value "value". |
-var3 string standard mandatory | A third variable. Default: depends on a calculation. |
+var1 string standard mandatory | A first variable. Default: value |
+var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" (var1) has the value "value". |
+var3 string standard mandatory | A third variable. Default: depends on a calculation. |
diff --git a/tests/results/test/04_1default_calculation_hidden.json b/tests/results/test/04_1default_calculation_hidden.json
index bdef2bcb5..5c9354d23 100644
--- a/tests/results/test/04_1default_calculation_hidden.json
+++ b/tests/results/test/04_1default_calculation_hidden.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"value\".",
+ "message": "when the variable {0} has the value \"value\".",
"path": {
"path": "var1"
},
diff --git a/tests/results/test/04_1default_calculation_hidden.md b/tests/results/test/04_1default_calculation_hidden.md
index eff50c227..39cf66c25 100644
--- a/tests/results/test/04_1default_calculation_hidden.md
+++ b/tests/results/test/04_1default_calculation_hidden.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" has the value "value". |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" (var1) has the value "value". |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test/04_1default_calculation_hidden.sh b/tests/results/test/04_1default_calculation_hidden.sh
index 3f7d743f4..ce40adfa5 100644
--- a/tests/results/test/04_1default_calculation_hidden.sh
+++ b/tests/results/test/04_1default_calculation_hidden.sh
@@ -6,7 +6,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a first β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "value". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (var1) has the value β
+β β "value". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar3[0m β A third variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: depends on a calculation. β
diff --git a/tests/results/test/04_1default_calculation_hidden_2.adoc b/tests/results/test/04_1default_calculation_hidden_2.adoc
index 1e09d9b5d..2a6661f18 100644
--- a/tests/results/test/04_1default_calculation_hidden_2.adoc
+++ b/tests/results/test/04_1default_calculation_hidden_2.adoc
@@ -6,7 +6,7 @@
**Default**: value
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a first variable" has the value "value".
+**Disabled**: when the variable "a first variable" (var1) has the value "value".
| **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. +
**Default**: depends on a calculation.
diff --git a/tests/results/test/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test/04_1default_calculation_hidden_2.gitlab.md
index eff50c227..39cf66c25 100644
--- a/tests/results/test/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" has the value "value". |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" (var1) has the value "value". |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test/04_1default_calculation_hidden_2.html b/tests/results/test/04_1default_calculation_hidden_2.html
index 048ab90ac..ea67c227e 100644
--- a/tests/results/test/04_1default_calculation_hidden_2.html
+++ b/tests/results/test/04_1default_calculation_hidden_2.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-var1 string standard mandatory | A first variable. Default: value |
-var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" has the value "value". |
-var3 string standard mandatory | A third variable. Default: depends on a calculation. |
+var1 string standard mandatory | A first variable. Default: value |
+var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" (var1) has the value "value". |
+var3 string standard mandatory | A third variable. Default: depends on a calculation. |
diff --git a/tests/results/test/04_1default_calculation_hidden_2.json b/tests/results/test/04_1default_calculation_hidden_2.json
index bdef2bcb5..5c9354d23 100644
--- a/tests/results/test/04_1default_calculation_hidden_2.json
+++ b/tests/results/test/04_1default_calculation_hidden_2.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"value\".",
+ "message": "when the variable {0} has the value \"value\".",
"path": {
"path": "var1"
},
diff --git a/tests/results/test/04_1default_calculation_hidden_2.md b/tests/results/test/04_1default_calculation_hidden_2.md
index eff50c227..39cf66c25 100644
--- a/tests/results/test/04_1default_calculation_hidden_2.md
+++ b/tests/results/test/04_1default_calculation_hidden_2.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" has the value "value". |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" (var1) has the value "value". |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test/04_1default_calculation_hidden_2.sh b/tests/results/test/04_1default_calculation_hidden_2.sh
index 3f7d743f4..ce40adfa5 100644
--- a/tests/results/test/04_1default_calculation_hidden_2.sh
+++ b/tests/results/test/04_1default_calculation_hidden_2.sh
@@ -6,7 +6,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a first β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "value". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (var1) has the value β
+β β "value". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar3[0m β A third variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: depends on a calculation. β
diff --git a/tests/results/test/04_5disabled_calculation_optional_default.adoc b/tests/results/test/04_5disabled_calculation_optional_default.adoc
index 754e4d6f3..2a0523dbc 100644
--- a/tests/results/test/04_5disabled_calculation_optional_default.adoc
+++ b/tests/results/test/04_5disabled_calculation_optional_default.adoc
@@ -8,9 +8,9 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable.
| **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. +
-**Hidden**: when the variable "a condition" is defined and has the value "true".
+**Hidden**: when the variable "a condition" (condition) is defined and has the value "true".
| **var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A forth variable. +
-**Hidden**: when the variable "a condition" is defined and has the value "true".
+**Hidden**: when the variable "a condition" (condition) is defined and has the value "true".
|====
diff --git a/tests/results/test/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test/04_5disabled_calculation_optional_default.gitlab.md
index 06e793c78..413937c92 100644
--- a/tests/results/test/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#condition)" is defined and has the value "true". |
-| **var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.
**Hidden**: when the variable "[a condition](#condition)" is defined and has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#condition)" (condition) is defined and has the value "true". |
+| **var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.
**Hidden**: when the variable "[a condition](#condition)" (condition) is defined and has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_optional_default.html b/tests/results/test/04_5disabled_calculation_optional_default.html
index e0b530529..4a79a06ef 100644
--- a/tests/results/test/04_5disabled_calculation_optional_default.html
+++ b/tests/results/test/04_5disabled_calculation_optional_default.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-var1 string standard | A first variable. |
-var3 string standard hidden | A second variable. Hidden: when the variable "a condition" is defined and has the value "true". |
-var4 string standard hidden | A forth variable. Hidden: when the variable "a condition" is defined and has the value "true". |
+condition boolean standard mandatory | A condition. Default: false |
+var1 string standard | A first variable. |
+var3 string standard hidden | A second variable. Hidden: when the variable "a condition" (condition) is defined and has the value "true". |
+var4 string standard hidden | A forth variable. Hidden: when the variable "a condition" (condition) is defined and has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_optional_default.json b/tests/results/test/04_5disabled_calculation_optional_default.json
index e73d6ebdb..aaaa92374 100644
--- a/tests/results/test/04_5disabled_calculation_optional_default.json
+++ b/tests/results/test/04_5disabled_calculation_optional_default.json
@@ -39,7 +39,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is defined and has the value \"true\".",
+ "message": "when the variable {0} is defined and has the value \"true\".",
"path": {
"path": "condition"
},
@@ -62,7 +62,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is defined and has the value \"true\".",
+ "message": "when the variable {0} is defined and has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test/04_5disabled_calculation_optional_default.md b/tests/results/test/04_5disabled_calculation_optional_default.md
index 06e793c78..413937c92 100644
--- a/tests/results/test/04_5disabled_calculation_optional_default.md
+++ b/tests/results/test/04_5disabled_calculation_optional_default.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#condition)" is defined and has the value "true". |
-| **var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.
**Hidden**: when the variable "[a condition](#condition)" is defined and has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#condition)" (condition) is defined and has the value "true". |
+| **var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.
**Hidden**: when the variable "[a condition](#condition)" (condition) is defined and has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_optional_default.sh b/tests/results/test/04_5disabled_calculation_optional_default.sh
index d68a9f7aa..18231e72b 100644
--- a/tests/results/test/04_5disabled_calculation_optional_default.sh
+++ b/tests/results/test/04_5disabled_calculation_optional_default.sh
@@ -9,11 +9,11 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar3[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m β [1mHidden[0m: when the variable "a β
-β β condition" is defined and has the β
-β β value "true". β
+β β condition" (condition) is defined β
+β β and has the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar4[0m β A forth variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m β [1mHidden[0m: when the variable "a β
-β β condition" is defined and has the β
-β β value "true". β
+β β condition" (condition) is defined β
+β β and has the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/04_5disabled_calculation_variable.adoc b/tests/results/test/04_5disabled_calculation_variable.adoc
index 5a7abc6d4..7d5dd78a9 100644
--- a/tests/results/test/04_5disabled_calculation_variable.adoc
+++ b/tests/results/test/04_5disabled_calculation_variable.adoc
@@ -6,6 +6,6 @@
**Default**: false
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test/04_5disabled_calculation_variable.gitlab.md b/tests/results/test/04_5disabled_calculation_variable.gitlab.md
index 8ab92c153..f9c7885d5 100644
--- a/tests/results/test/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable.html b/tests/results/test/04_5disabled_calculation_variable.html
index 7f5356b92..d8abef986 100644
--- a/tests/results/test/04_5disabled_calculation_variable.html
+++ b/tests/results/test/04_5disabled_calculation_variable.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: false |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable.json b/tests/results/test/04_5disabled_calculation_variable.json
index 08310fb25..c09bbc485 100644
--- a/tests/results/test/04_5disabled_calculation_variable.json
+++ b/tests/results/test/04_5disabled_calculation_variable.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test/04_5disabled_calculation_variable.md b/tests/results/test/04_5disabled_calculation_variable.md
index 8ab92c153..f9c7885d5 100644
--- a/tests/results/test/04_5disabled_calculation_variable.md
+++ b/tests/results/test/04_5disabled_calculation_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable.sh b/tests/results/test/04_5disabled_calculation_variable.sh
index ef4139b27..8bf09f4cc 100644
--- a/tests/results/test/04_5disabled_calculation_variable.sh
+++ b/tests/results/test/04_5disabled_calculation_variable.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/04_5disabled_calculation_variable10.adoc b/tests/results/test/04_5disabled_calculation_variable10.adoc
index ac7d6d429..288a710a9 100644
--- a/tests/results/test/04_5disabled_calculation_variable10.adoc
+++ b/tests/results/test/04_5disabled_calculation_variable10.adoc
@@ -6,6 +6,6 @@
**Default**: true
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test/04_5disabled_calculation_variable10.gitlab.md
index 8ca9b3303..e3b811523 100644
--- a/tests/results/test/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable10.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable10.html b/tests/results/test/04_5disabled_calculation_variable10.html
index 09335d151..cc8610c8d 100644
--- a/tests/results/test/04_5disabled_calculation_variable10.html
+++ b/tests/results/test/04_5disabled_calculation_variable10.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: true |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable10.json b/tests/results/test/04_5disabled_calculation_variable10.json
index a612865d3..275a93689 100644
--- a/tests/results/test/04_5disabled_calculation_variable10.json
+++ b/tests/results/test/04_5disabled_calculation_variable10.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test/04_5disabled_calculation_variable10.md b/tests/results/test/04_5disabled_calculation_variable10.md
index 8ca9b3303..e3b811523 100644
--- a/tests/results/test/04_5disabled_calculation_variable10.md
+++ b/tests/results/test/04_5disabled_calculation_variable10.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable10.sh b/tests/results/test/04_5disabled_calculation_variable10.sh
index ae9956409..aa2aec814 100644
--- a/tests/results/test/04_5disabled_calculation_variable10.sh
+++ b/tests/results/test/04_5disabled_calculation_variable10.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/04_5disabled_calculation_variable2.adoc b/tests/results/test/04_5disabled_calculation_variable2.adoc
index ac7d6d429..288a710a9 100644
--- a/tests/results/test/04_5disabled_calculation_variable2.adoc
+++ b/tests/results/test/04_5disabled_calculation_variable2.adoc
@@ -6,6 +6,6 @@
**Default**: true
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test/04_5disabled_calculation_variable2.gitlab.md
index 8ca9b3303..e3b811523 100644
--- a/tests/results/test/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable2.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable2.html b/tests/results/test/04_5disabled_calculation_variable2.html
index 09335d151..cc8610c8d 100644
--- a/tests/results/test/04_5disabled_calculation_variable2.html
+++ b/tests/results/test/04_5disabled_calculation_variable2.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: true |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable2.json b/tests/results/test/04_5disabled_calculation_variable2.json
index a612865d3..275a93689 100644
--- a/tests/results/test/04_5disabled_calculation_variable2.json
+++ b/tests/results/test/04_5disabled_calculation_variable2.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test/04_5disabled_calculation_variable2.md b/tests/results/test/04_5disabled_calculation_variable2.md
index 8ca9b3303..e3b811523 100644
--- a/tests/results/test/04_5disabled_calculation_variable2.md
+++ b/tests/results/test/04_5disabled_calculation_variable2.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable2.sh b/tests/results/test/04_5disabled_calculation_variable2.sh
index ae9956409..aa2aec814 100644
--- a/tests/results/test/04_5disabled_calculation_variable2.sh
+++ b/tests/results/test/04_5disabled_calculation_variable2.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/04_5disabled_calculation_variable3.adoc b/tests/results/test/04_5disabled_calculation_variable3.adoc
index 37e63933c..08968108a 100644
--- a/tests/results/test/04_5disabled_calculation_variable3.adoc
+++ b/tests/results/test/04_5disabled_calculation_variable3.adoc
@@ -6,6 +6,6 @@
**Default**: yes
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "yes".
+**Disabled**: when the variable "a condition" (condition) has the value "yes".
|====
diff --git a/tests/results/test/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test/04_5disabled_calculation_variable3.gitlab.md
index c108835d7..fbf13d0c6 100644
--- a/tests/results/test/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable3.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
-| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "yes". |
diff --git a/tests/results/test/04_5disabled_calculation_variable3.html b/tests/results/test/04_5disabled_calculation_variable3.html
index 47993ca06..40c05ef2e 100644
--- a/tests/results/test/04_5disabled_calculation_variable3.html
+++ b/tests/results/test/04_5disabled_calculation_variable3.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition string standard mandatory | A condition. Default: yes |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "yes". |
+condition string standard mandatory | A condition. Default: yes |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "yes". |
diff --git a/tests/results/test/04_5disabled_calculation_variable3.json b/tests/results/test/04_5disabled_calculation_variable3.json
index d25df8ed4..155fbcda9 100644
--- a/tests/results/test/04_5disabled_calculation_variable3.json
+++ b/tests/results/test/04_5disabled_calculation_variable3.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"yes\".",
+ "message": "when the variable {0} has the value \"yes\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test/04_5disabled_calculation_variable3.md b/tests/results/test/04_5disabled_calculation_variable3.md
index c108835d7..fbf13d0c6 100644
--- a/tests/results/test/04_5disabled_calculation_variable3.md
+++ b/tests/results/test/04_5disabled_calculation_variable3.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
-| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "yes". |
diff --git a/tests/results/test/04_5disabled_calculation_variable3.sh b/tests/results/test/04_5disabled_calculation_variable3.sh
index 6d3232374..2cbf12806 100644
--- a/tests/results/test/04_5disabled_calculation_variable3.sh
+++ b/tests/results/test/04_5disabled_calculation_variable3.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "yes". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "yes". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/04_5disabled_calculation_variable4.adoc b/tests/results/test/04_5disabled_calculation_variable4.adoc
index 02614ce1b..229fd3bf0 100644
--- a/tests/results/test/04_5disabled_calculation_variable4.adoc
+++ b/tests/results/test/04_5disabled_calculation_variable4.adoc
@@ -6,6 +6,6 @@
**Default**: yes
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" hasn't the value "yes".
+**Disabled**: when the variable "a condition" (condition) hasn't the value "yes".
|====
diff --git a/tests/results/test/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test/04_5disabled_calculation_variable4.gitlab.md
index 9f9077f3d..78d4a1b9f 100644
--- a/tests/results/test/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable4.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" hasn't the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) hasn't the value "yes". |
diff --git a/tests/results/test/04_5disabled_calculation_variable4.html b/tests/results/test/04_5disabled_calculation_variable4.html
index f623226c1..c73d98e0a 100644
--- a/tests/results/test/04_5disabled_calculation_variable4.html
+++ b/tests/results/test/04_5disabled_calculation_variable4.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition string standard mandatory | A condition. Default: yes |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" hasn't the value "yes". |
+condition string standard mandatory | A condition. Default: yes |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) hasn't the value "yes". |
diff --git a/tests/results/test/04_5disabled_calculation_variable4.json b/tests/results/test/04_5disabled_calculation_variable4.json
index fb31e716c..c91daf701 100644
--- a/tests/results/test/04_5disabled_calculation_variable4.json
+++ b/tests/results/test/04_5disabled_calculation_variable4.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"yes\".",
+ "message": "when the variable {0} hasn't the value \"yes\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test/04_5disabled_calculation_variable4.md b/tests/results/test/04_5disabled_calculation_variable4.md
index 9f9077f3d..78d4a1b9f 100644
--- a/tests/results/test/04_5disabled_calculation_variable4.md
+++ b/tests/results/test/04_5disabled_calculation_variable4.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" hasn't the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) hasn't the value "yes". |
diff --git a/tests/results/test/04_5disabled_calculation_variable4.sh b/tests/results/test/04_5disabled_calculation_variable4.sh
index 748817e80..2a6cba26d 100644
--- a/tests/results/test/04_5disabled_calculation_variable4.sh
+++ b/tests/results/test/04_5disabled_calculation_variable4.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" hasn't the value "yes". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) hasn't the β
+β β value "yes". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/04_5disabled_calculation_variable7.adoc b/tests/results/test/04_5disabled_calculation_variable7.adoc
index 5a7abc6d4..7d5dd78a9 100644
--- a/tests/results/test/04_5disabled_calculation_variable7.adoc
+++ b/tests/results/test/04_5disabled_calculation_variable7.adoc
@@ -6,6 +6,6 @@
**Default**: false
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test/04_5disabled_calculation_variable7.gitlab.md
index 8ab92c153..f9c7885d5 100644
--- a/tests/results/test/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable7.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable7.html b/tests/results/test/04_5disabled_calculation_variable7.html
index 7f5356b92..d8abef986 100644
--- a/tests/results/test/04_5disabled_calculation_variable7.html
+++ b/tests/results/test/04_5disabled_calculation_variable7.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: false |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable7.json b/tests/results/test/04_5disabled_calculation_variable7.json
index 08310fb25..c09bbc485 100644
--- a/tests/results/test/04_5disabled_calculation_variable7.json
+++ b/tests/results/test/04_5disabled_calculation_variable7.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test/04_5disabled_calculation_variable7.md b/tests/results/test/04_5disabled_calculation_variable7.md
index 8ab92c153..f9c7885d5 100644
--- a/tests/results/test/04_5disabled_calculation_variable7.md
+++ b/tests/results/test/04_5disabled_calculation_variable7.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable7.sh b/tests/results/test/04_5disabled_calculation_variable7.sh
index ef4139b27..8bf09f4cc 100644
--- a/tests/results/test/04_5disabled_calculation_variable7.sh
+++ b/tests/results/test/04_5disabled_calculation_variable7.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/04_5disabled_calculation_variable_multi.adoc b/tests/results/test/04_5disabled_calculation_variable_multi.adoc
index d8dbae54b..15bcc16b0 100644
--- a/tests/results/test/04_5disabled_calculation_variable_multi.adoc
+++ b/tests/results/test/04_5disabled_calculation_variable_multi.adoc
@@ -6,6 +6,6 @@
**Default**: false
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `basic` `mandatory` `__disabled__` `unique` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test/04_5disabled_calculation_variable_multi.gitlab.md
index 7c0ebf293..6971e9e2e 100644
--- a/tests/results/test/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable_multi.html b/tests/results/test/04_5disabled_calculation_variable_multi.html
index fe1a4e4ab..f1c58dd2a 100644
--- a/tests/results/test/04_5disabled_calculation_variable_multi.html
+++ b/tests/results/test/04_5disabled_calculation_variable_multi.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-variable string multiple basic mandatory disabled unique | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: false |
+variable string multiple basic mandatory disabled unique | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable_multi.json b/tests/results/test/04_5disabled_calculation_variable_multi.json
index 6a1aa5c8d..5407dedfb 100644
--- a/tests/results/test/04_5disabled_calculation_variable_multi.json
+++ b/tests/results/test/04_5disabled_calculation_variable_multi.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test/04_5disabled_calculation_variable_multi.md b/tests/results/test/04_5disabled_calculation_variable_multi.md
index 7c0ebf293..6971e9e2e 100644
--- a/tests/results/test/04_5disabled_calculation_variable_multi.md
+++ b/tests/results/test/04_5disabled_calculation_variable_multi.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test/04_5disabled_calculation_variable_multi.sh b/tests/results/test/04_5disabled_calculation_variable_multi.sh
index fa3f32b4f..9be6ae6bb 100644
--- a/tests/results/test/04_5disabled_calculation_variable_multi.sh
+++ b/tests/results/test/04_5disabled_calculation_variable_multi.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m basic [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;7mmandatory [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m [1;7m unique [0m β condition" has the value "true". β
+β [1;7mmandatory [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m [1;7m unique [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive.adoc b/tests/results/test/04_5disabled_calculation_variable_transitive.adoc
index a9bc53ab2..247470821 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive.adoc
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive.adoc
@@ -6,9 +6,9 @@
**Default**: true
| **variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
| **variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is "disabled".
+**Disabled**: when the variable "a variable" (variable1) is "disabled".
|====
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive.gitlab.md b/tests/results/test/04_5disabled_calculation_variable_transitive.gitlab.md
index 3403194cb..efaaac988 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is "disabled". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is "disabled". |
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive.html b/tests/results/test/04_5disabled_calculation_variable_transitive.html
index 1560c5b47..20206cbe4 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive.html
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-variable1 string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
-variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is "disabled". |
+condition boolean standard mandatory | A condition. Default: true |
+variable1 string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
+variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (variable1) is "disabled". |
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive.json b/tests/results/test/04_5disabled_calculation_variable_transitive.json
index a82b80b97..05940f8af 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive.json
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
@@ -65,7 +65,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is \"disabled\".",
+ "message": "when the variable {0} is \"disabled\".",
"path": {
"path": "variable1"
},
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive.md b/tests/results/test/04_5disabled_calculation_variable_transitive.md
index 3403194cb..efaaac988 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive.md
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is "disabled". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is "disabled". |
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive.sh b/tests/results/test/04_5disabled_calculation_variable_transitive.sh
index a8e283f73..d2e5264b1 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive.sh
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive.sh
@@ -6,9 +6,10 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable1[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (variable1) is "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive_3.adoc b/tests/results/test/04_5disabled_calculation_variable_transitive_3.adoc
index d210af162..c7d94b84c 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive_3.adoc
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive_3.adoc
@@ -7,9 +7,9 @@
| **variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable. +
**Default**: disabled +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
| **variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is disabled or has the value "disabled".
+**Disabled**: when the variable "a variable" (variable1) is disabled or has the value "disabled".
|====
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive_3.gitlab.md b/tests/results/test/04_5disabled_calculation_variable_transitive_3.gitlab.md
index 57ff10a62..77fe23eb9 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive_3.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive_3.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive_3.html b/tests/results/test/04_5disabled_calculation_variable_transitive_3.html
index 4e033a608..c250e0581 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive_3.html
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive_3.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-variable1 string standard mandatory disabled | A variable. Default: disabled Disabled: when the variable "a condition" has the value "true". |
-variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is disabled or has the value "disabled". |
+condition boolean standard mandatory | A condition. Default: false |
+variable1 string standard mandatory disabled | A variable. Default: disabled Disabled: when the variable "a condition" (condition) has the value "true". |
+variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive_3.json b/tests/results/test/04_5disabled_calculation_variable_transitive_3.json
index 5a29fa258..e5466ece5 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive_3.json
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive_3.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
@@ -69,7 +69,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is disabled or has the value \"disabled\".",
+ "message": "when the variable {0} is disabled or has the value \"disabled\".",
"path": {
"path": "variable1"
},
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive_3.md b/tests/results/test/04_5disabled_calculation_variable_transitive_3.md
index 57ff10a62..77fe23eb9 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive_3.md
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive_3.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive_3.sh b/tests/results/test/04_5disabled_calculation_variable_transitive_3.sh
index eea0b9a54..2832f2a2c 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive_3.sh
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive_3.sh
@@ -7,10 +7,11 @@
β [1mvariable1[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: disabled β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is disabled or has the β
-β β value "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (variable1) is disabled or β
+β β has the value "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive_4.adoc b/tests/results/test/04_5disabled_calculation_variable_transitive_4.adoc
index 651532711..66144b2b7 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive_4.adoc
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive_4.adoc
@@ -7,9 +7,9 @@
| **variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable. +
**Default**: not_disabled +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
| **variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is disabled or has the value "disabled".
+**Disabled**: when the variable "a variable" (variable1) is disabled or has the value "disabled".
|====
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive_4.gitlab.md b/tests/results/test/04_5disabled_calculation_variable_transitive_4.gitlab.md
index 2112f9ee1..bbced7587 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive_4.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive_4.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive_4.html b/tests/results/test/04_5disabled_calculation_variable_transitive_4.html
index 9ba437258..6a8b828d0 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive_4.html
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive_4.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-variable1 string standard mandatory disabled | A variable. Default: not_disabled Disabled: when the variable "a condition" has the value "true". |
-variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is disabled or has the value "disabled". |
+condition boolean standard mandatory | A condition. Default: true |
+variable1 string standard mandatory disabled | A variable. Default: not_disabled Disabled: when the variable "a condition" (condition) has the value "true". |
+variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive_4.json b/tests/results/test/04_5disabled_calculation_variable_transitive_4.json
index 904c72549..e80cf58a3 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive_4.json
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive_4.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
@@ -69,7 +69,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is disabled or has the value \"disabled\".",
+ "message": "when the variable {0} is disabled or has the value \"disabled\".",
"path": {
"path": "variable1"
},
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive_4.md b/tests/results/test/04_5disabled_calculation_variable_transitive_4.md
index 2112f9ee1..bbced7587 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive_4.md
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive_4.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test/04_5disabled_calculation_variable_transitive_4.sh b/tests/results/test/04_5disabled_calculation_variable_transitive_4.sh
index 9b47c3f97..d2d64a19c 100644
--- a/tests/results/test/04_5disabled_calculation_variable_transitive_4.sh
+++ b/tests/results/test/04_5disabled_calculation_variable_transitive_4.sh
@@ -7,10 +7,11 @@
β [1mvariable1[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: not_disabled β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is disabled or has the β
-β β value "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (variable1) is disabled or β
+β β has the value "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/16_2family_redefine_calculation.sh b/tests/results/test/16_2family_redefine_calculation.sh
index bd980348f..c8ed7d4b7 100644
--- a/tests/results/test/16_2family_redefine_calculation.sh
+++ b/tests/results/test/16_2family_redefine_calculation.sh
@@ -1,10 +1,10 @@
[1;4;96mfamily[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: depends on a calculation.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: depends on a calculation.
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
diff --git a/tests/results/test/16_3family_empty_at_ends.sh b/tests/results/test/16_3family_empty_at_ends.sh
index 8e3e322b4..bd2d7aebc 100644
--- a/tests/results/test/16_3family_empty_at_ends.sh
+++ b/tests/results/test/16_3family_empty_at_ends.sh
@@ -1,9 +1,9 @@
[1;4;96mfamily[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m basic [0m
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
diff --git a/tests/results/test/16_5redefine_family.sh b/tests/results/test/16_5redefine_family.sh
index 1b6f102be..d4e34b673 100644
--- a/tests/results/test/16_5redefine_family.sh
+++ b/tests/results/test/16_5redefine_family.sh
@@ -1,9 +1,9 @@
[1;4;96mNew description[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/16_5redefine_help.sh b/tests/results/test/16_5redefine_help.sh
index cc58a4028..f7c54d58a 100644
--- a/tests/results/test/16_5redefine_help.sh
+++ b/tests/results/test/16_5redefine_help.sh
@@ -1,10 +1,10 @@
[1;4;96mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mRedefine help family ok.
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mRedefine help family ok.
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/16_6exists_redefine_family.sh b/tests/results/test/16_6exists_redefine_family.sh
index 1aef01d39..893d89736 100644
--- a/tests/results/test/16_6exists_redefine_family.sh
+++ b/tests/results/test/16_6exists_redefine_family.sh
@@ -1,9 +1,9 @@
[1;4;96mNew description[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family1
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family1
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,10 +14,10 @@
[1;4;96mA second family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family2
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family2
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/20_0family_append.sh b/tests/results/test/20_0family_append.sh
index c8f8a4b5d..ba01163b7 100644
--- a/tests/results/test/20_0family_append.sh
+++ b/tests/results/test/20_0family_append.sh
@@ -1,9 +1,9 @@
[1;4;96mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/20_0multi_family.sh b/tests/results/test/20_0multi_family.sh
index b8f7b3f3d..d83cb4486 100644
--- a/tests/results/test/20_0multi_family.sh
+++ b/tests/results/test/20_0multi_family.sh
@@ -1,16 +1,16 @@
[1;4;96mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m standard [0m
[1;4;92mA sub family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family.subfamily
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family.subfamily
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/20_0multi_family_basic.sh b/tests/results/test/20_0multi_family_basic.sh
index 7b77c747b..50c855894 100644
--- a/tests/results/test/20_0multi_family_basic.sh
+++ b/tests/results/test/20_0multi_family_basic.sh
@@ -1,16 +1,16 @@
[1;4;96mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m basic [0m
[1;4;92mA sub family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family.subfamily
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family.subfamily
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/20_0multi_family_expert.sh b/tests/results/test/20_0multi_family_expert.sh
index a01c816e0..5f4b91a84 100644
--- a/tests/results/test/20_0multi_family_expert.sh
+++ b/tests/results/test/20_0multi_family_expert.sh
@@ -1,16 +1,16 @@
[1;4;96mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m advanced [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m advanced [0m
[1;4;92mA sub family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family.subfamily
-[34mβ [0m[1;7m advanced [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family.subfamily
+[34mβ [0m[1;7m advanced [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/20_0multi_family_order.sh b/tests/results/test/20_0multi_family_order.sh
index 2db1ec712..3b26ec0e2 100644
--- a/tests/results/test/20_0multi_family_order.sh
+++ b/tests/results/test/20_0multi_family_order.sh
@@ -6,10 +6,10 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -19,10 +19,10 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA sub family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family.subfamily
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family.subfamily
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/20_2family_looks_like_dynamic.sh b/tests/results/test/20_2family_looks_like_dynamic.sh
index 602b09e6f..32857bd8a 100644
--- a/tests/results/test/20_2family_looks_like_dynamic.sh
+++ b/tests/results/test/20_2family_looks_like_dynamic.sh
@@ -1,9 +1,9 @@
[1;4;96mmy_family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: my_family
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: my_family
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/20_2family_looks_like_variable.sh b/tests/results/test/20_2family_looks_like_variable.sh
index 89e0a01a3..9f6bd5efc 100644
--- a/tests/results/test/20_2family_looks_like_variable.sh
+++ b/tests/results/test/20_2family_looks_like_variable.sh
@@ -1,9 +1,9 @@
[1;4;96mmy_family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: my_family
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: my_family
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/20_7help_family.sh b/tests/results/test/20_7help_family.sh
index cf44726cc..9ab00950b 100644
--- a/tests/results/test/20_7help_family.sh
+++ b/tests/results/test/20_7help_family.sh
@@ -1,14 +1,14 @@
[1;4;96mThe first family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mMulti line.
-[34mβ [0m
-[34mβ [0mHelp.
-[34mβ [0m
-[34mβ [0mWith useful information.
-[34mβ [0m[1mPath[0m: family1
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mMulti line.
+[34mβ [0m
+[34mβ [0mHelp.
+[34mβ [0m
+[34mβ [0mWith useful information.
+[34mβ [0m[1mPath[0m: family1
+[34mβ [0m[1;7m basic [0m
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
@@ -19,13 +19,13 @@
[1;4;96mThe second family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mMulti line.
-[34mβ [0mHelp.
-[34mβ [0mWith useful information.
-[34mβ [0m[1mPath[0m: family2
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mMulti line.
+[34mβ [0mHelp.
+[34mβ [0mWith useful information.
+[34mβ [0m[1mPath[0m: family2
+[34mβ [0m[1;7m basic [0m
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
diff --git a/tests/results/test/20_9default_information_parent.adoc b/tests/results/test/20_9default_information_parent.adoc
index 171ab6827..b72f58800 100644
--- a/tests/results/test/20_9default_information_parent.adoc
+++ b/tests/results/test/20_9default_information_parent.adoc
@@ -13,6 +13,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **family.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "family".
+**Default**: the value of the information "test_information" of the variable "family" (family).
|====
diff --git a/tests/results/test/20_9default_information_parent.gitlab.md b/tests/results/test/20_9default_information_parent.gitlab.md
index 64414c27a..18e9ee586 100644
--- a/tests/results/test/20_9default_information_parent.gitlab.md
+++ b/tests/results/test/20_9default_information_parent.gitlab.md
@@ -4,10 +4,10 @@
> **Path**: family\
> `basic`
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
+| **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](#family)" (family). |
diff --git a/tests/results/test/20_9default_information_parent.html b/tests/results/test/20_9default_information_parent.html
index 938d2ecce..335af9287 100644
--- a/tests/results/test/20_9default_information_parent.html
+++ b/tests/results/test/20_9default_information_parent.html
@@ -6,11 +6,11 @@
-| Variable | Description |
+| Variable | Description |
-family.var1 string basic mandatory | A first variable. |
-family.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "family". |
+family.var1 string basic mandatory | A first variable. |
+family.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "family" (family). |
diff --git a/tests/results/test/20_9default_information_parent.json b/tests/results/test/20_9default_information_parent.json
index f2fdf1f13..a2c5a3640 100644
--- a/tests/results/test/20_9default_information_parent.json
+++ b/tests/results/test/20_9default_information_parent.json
@@ -40,7 +40,15 @@
"type": "variable",
"default": {
"name": "Default",
- "values": "the value of the information \"test_information\" of the variable \"family\"."
+ "values": {
+ "message": "the value of the information \"test_information\" of the variable {0}.",
+ "path": {
+ "type": "information",
+ "information": "test_information",
+ "path": "family"
+ },
+ "description": "family"
+ }
},
"variable_type": "string"
}
diff --git a/tests/results/test/20_9default_information_parent.md b/tests/results/test/20_9default_information_parent.md
index f61e4c551..645ac3b39 100644
--- a/tests/results/test/20_9default_information_parent.md
+++ b/tests/results/test/20_9default_information_parent.md
@@ -5,8 +5,8 @@
> **Path**: family\
> `basic`
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
+| **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](#family)" (family). |
diff --git a/tests/results/test/20_9default_information_parent.sh b/tests/results/test/20_9default_information_parent.sh
index 3680f6d2c..e1f34fabe 100644
--- a/tests/results/test/20_9default_information_parent.sh
+++ b/tests/results/test/20_9default_information_parent.sh
@@ -1,9 +1,9 @@
[1;4;96mfamily[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,6 +14,6 @@
β [1mfamily.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "family". β
+β β the variable "family" (family). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/20_9family_absolute.adoc b/tests/results/test/20_9family_absolute.adoc
index ad7ce962b..1fa09d942 100644
--- a/tests/results/test/20_9family_absolute.adoc
+++ b/tests/results/test/20_9family_absolute.adoc
@@ -36,8 +36,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | Third variable. +
**Default**:
-* the value of the variable "first variable"
-* the value of the variable "a second variable"
+* the value of the variable "first variable" (var1)
+* the value of the variable "a second variable" (family.var2)
|====
== A family
@@ -53,7 +53,7 @@
| Variable | Description
| **family2.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable2. +
-**Default**: the value of the variable "a second variable"
+**Default**: the value of the variable "a second variable" (family.var2).
| **family2.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: string4 +
**Example**: string5
@@ -74,8 +74,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | Fourth variable. +
**Default**:
-* the value of the variable "first variable"
-* the value of the variable "a second variable"
-* the value of the variable "var3"
+* the value of the variable "first variable" (var1)
+* the value of the variable "a second variable" (family.var2)
+* the value of the variable "var3" (family2.var3)
|====
diff --git a/tests/results/test/20_9family_absolute.gitlab.md b/tests/results/test/20_9family_absolute.gitlab.md
index 882a3ef83..2698b6f99 100644
--- a/tests/results/test/20_9family_absolute.gitlab.md
+++ b/tests/results/test/20_9family_absolute.gitlab.md
@@ -18,9 +18,9 @@
> **Path**: family.subfamily\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Third variable.
**Default**:
β’ the value of the variable "[first variable](#var1)"
β’ the value of the variable "[a second variable](#family.var2)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Third variable.
**Default**:
β’ the value of the variable "[first variable](#var1)" (var1)
β’ the value of the variable "[a second variable](#family.var2)" (family.var2) |
@@ -32,10 +32,10 @@
> **Path**: family2\
> `standard`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" |
-| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: string4
**Example**: string5 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
+| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" (family.var2). |
+| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: string4
**Example**: string5 |
A sub family
@@ -43,9 +43,9 @@
> **Path**: family2.subfamily\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)"
β’ the value of the variable "[a second variable](#family.var2)"
β’ the value of the variable "[var3](#family2.var3)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)" (var1)
β’ the value of the variable "[a second variable](#family.var2)" (family.var2)
β’ the value of the variable "[var3](#family2.var3)" (family2.var3) |
diff --git a/tests/results/test/20_9family_absolute.html b/tests/results/test/20_9family_absolute.html
index fe2366c82..dd30a9072 100644
--- a/tests/results/test/20_9family_absolute.html
+++ b/tests/results/test/20_9family_absolute.html
@@ -33,8 +33,8 @@
| Variable | Description |
-family.subfamily.variable string multiple standard mandatory unique | Third variable. Default: - the value of the variable "first variable"
-- the value of the variable "a second variable"
|
+family.subfamily.variable string multiple standard mandatory unique | Third variable. Default: - the value of the variable "first variable" (var1)
+- the value of the variable "a second variable" (family.var2)
|
@@ -46,11 +46,11 @@
-| Variable | Description |
+| Variable | Description |
-family2.var2 string standard mandatory | A variable2. Default: the value of the variable "a second variable" |
-family2.var3 string standard mandatory | Default: string4 Example: string5 |
+family2.var2 string standard mandatory | A variable2. Default: the value of the variable "a second variable" (family.var2). |
+family2.var3 string standard mandatory | Default: string4 Example: string5 |
@@ -65,9 +65,9 @@
| Variable | Description |
-family2.subfamily.variable string multiple standard mandatory unique | Fourth variable. Default: - the value of the variable "first variable"
-- the value of the variable "a second variable"
-- the value of the variable "var3"
|
+family2.subfamily.variable string multiple standard mandatory unique | Fourth variable. Default: - the value of the variable "first variable" (var1)
+- the value of the variable "a second variable" (family.var2)
+- the value of the variable "var3" (family2.var3)
|
diff --git a/tests/results/test/20_9family_absolute.json b/tests/results/test/20_9family_absolute.json
index b3f486e4c..6fb645e86 100644
--- a/tests/results/test/20_9family_absolute.json
+++ b/tests/results/test/20_9family_absolute.json
@@ -79,7 +79,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "var1",
"type": "variable"
@@ -87,7 +87,7 @@
"description": "first variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "family.var2",
"type": "variable"
@@ -130,7 +130,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "family.var2",
"type": "variable"
@@ -197,7 +197,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "var1",
"type": "variable"
@@ -205,7 +205,7 @@
"description": "first variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "family.var2",
"type": "variable"
@@ -213,7 +213,7 @@
"description": "a second variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "family2.var3",
"type": "variable"
diff --git a/tests/results/test/20_9family_absolute.md b/tests/results/test/20_9family_absolute.md
index c5f770466..637af77fe 100644
--- a/tests/results/test/20_9family_absolute.md
+++ b/tests/results/test/20_9family_absolute.md
@@ -20,9 +20,9 @@
> **Path**: family.subfamily\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Third variable.
**Default**:
β’ the value of the variable "[first variable](#var1)"
β’ the value of the variable "[a second variable](#family.var2)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Third variable.
**Default**:
β’ the value of the variable "[first variable](#var1)" (var1)
β’ the value of the variable "[a second variable](#family.var2)" (family.var2) |
# A family
@@ -31,10 +31,10 @@
> **Path**: family2\
> `standard`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" |
-| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: string4
**Example**: string5 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
+| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" (family.var2). |
+| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: string4
**Example**: string5 |
## A sub family
@@ -43,7 +43,7 @@
> **Path**: family2.subfamily\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)"
β’ the value of the variable "[a second variable](#family.var2)"
β’ the value of the variable "[var3](#family2.var3)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)" (var1)
β’ the value of the variable "[a second variable](#family.var2)" (family.var2)
β’ the value of the variable "[var3](#family2.var3)" (family2.var3) |
diff --git a/tests/results/test/20_9family_absolute.sh b/tests/results/test/20_9family_absolute.sh
index b504f9d35..b31ecccf6 100644
--- a/tests/results/test/20_9family_absolute.sh
+++ b/tests/results/test/20_9family_absolute.sh
@@ -6,10 +6,10 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -19,10 +19,10 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA sub family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family.subfamily
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family.subfamily
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -30,35 +30,35 @@
β [1mfamily.subfamily.variable[0m β Third variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "first β
-β β variable" β
+β β variable" (var1) β
β β β’ the value of the variable "a β
-β β second variable" β
+β β second variable" (family.var2) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family2
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family2
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mfamily2.var2[0m β A variable2. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (family.var2). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfamily2.var3[0m β [1mDefault[0m: string4 β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mExample[0m: string5 β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA sub family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family2.subfamily
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family2.subfamily
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -66,10 +66,11 @@
β [1mfamily2.subfamily.variable[0m β Fourth variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "first β
-β β variable" β
+β β variable" (var1) β
β β β’ the value of the variable "a β
-β β second variable" β
+β β second variable" (family.var2) β
β β β’ the value of the variable "var3" β
+β β (family2.var3) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/24_0family_hidden_condition_sub_family.sh b/tests/results/test/24_0family_hidden_condition_sub_family.sh
index 145ae757c..a32fd185e 100644
--- a/tests/results/test/24_0family_hidden_condition_sub_family.sh
+++ b/tests/results/test/24_0family_hidden_condition_sub_family.sh
@@ -6,18 +6,18 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mPossibly hidden family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: if condition is yes.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: if condition is yes.
[1;4;92msubfamily[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family.subfamily
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family.subfamily
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/24_0family_hidden_condition_variable_sub_family.adoc b/tests/results/test/24_0family_hidden_condition_variable_sub_family.adoc
index 390c15b30..a6e553637 100644
--- a/tests/results/test/24_0family_hidden_condition_variable_sub_family.adoc
+++ b/tests/results/test/24_0family_hidden_condition_variable_sub_family.adoc
@@ -13,7 +13,7 @@
**Path**: family +
`standard` `__hidden__` +
-**Hidden**: when the variable "the variable use has condition" has the value "true".
+**Hidden**: when the variable "the variable use has condition" (condition) has the value "true".
====
=== A subfamily
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 c51d3e5e6..bdb311a2c 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
@@ -7,7 +7,7 @@
> [!note] π Informations
> **Path**: family\
> `standard` *`hidden`*\
-> **Hidden**: when the variable "[the variable use has condition](#condition)" has the value "true".
+> **Hidden**: when the variable "[the variable use has condition](#condition)" (condition) has the value "true".
A subfamily
diff --git a/tests/results/test/24_0family_hidden_condition_variable_sub_family.html b/tests/results/test/24_0family_hidden_condition_variable_sub_family.html
index 8ac278a8d..54076af7c 100644
--- a/tests/results/test/24_0family_hidden_condition_variable_sub_family.html
+++ b/tests/results/test/24_0family_hidden_condition_variable_sub_family.html
@@ -13,7 +13,7 @@
standard hidden
-Hidden: when the variable "the variable use has condition" has the value "true".
+Hidden: when the variable "the variable use has condition" (condition) has the value "true".
A subfamily
diff --git a/tests/results/test/24_0family_hidden_condition_variable_sub_family.json b/tests/results/test/24_0family_hidden_condition_variable_sub_family.json
index 7440f61d2..8f16139aa 100644
--- a/tests/results/test/24_0family_hidden_condition_variable_sub_family.json
+++ b/tests/results/test/24_0family_hidden_condition_variable_sub_family.json
@@ -32,7 +32,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test/24_0family_hidden_condition_variable_sub_family.md
index d5e2382b6..c70a1e20f 100644
--- a/tests/results/test/24_0family_hidden_condition_variable_sub_family.md
+++ b/tests/results/test/24_0family_hidden_condition_variable_sub_family.md
@@ -8,7 +8,7 @@
>
> **Path**: family\
> `standard` *`hidden`*\
-> **Hidden**: when the variable "[the variable use has condition](#condition)" has the value "true".
+> **Hidden**: when the variable "[the variable use has condition](#condition)" (condition) has the value "true".
## A subfamily
diff --git a/tests/results/test/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test/24_0family_hidden_condition_variable_sub_family.sh
index 488a64c8a..3cdd802e4 100644
--- a/tests/results/test/24_0family_hidden_condition_variable_sub_family.sh
+++ b/tests/results/test/24_0family_hidden_condition_variable_sub_family.sh
@@ -6,19 +6,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mPossibly hidden family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"the variable use has condition"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"the variable use has condition"[0m [1m([0mcondition[1m)[0m has
+[34mβ [0mthe value [32m"true"[0m.
[1;4;92mA subfamily[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family.subfamily
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family.subfamily
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test/24_0family_hidden_param_condition_sub_family.sh
index 9b5bafabf..a7db364a4 100644
--- a/tests/results/test/24_0family_hidden_param_condition_sub_family.sh
+++ b/tests/results/test/24_0family_hidden_param_condition_sub_family.sh
@@ -6,18 +6,18 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mPossibly hidden family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: if condition is yes.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: if condition is yes.
[1;4;92mA subfamily[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family.sub_family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family.sub_family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/24_0family_mandatory_condition_variable.adoc b/tests/results/test/24_0family_mandatory_condition_variable.adoc
index 569995ff4..670f1379c 100644
--- a/tests/results/test/24_0family_mandatory_condition_variable.adoc
+++ b/tests/results/test/24_0family_mandatory_condition_variable.adoc
@@ -6,6 +6,6 @@
**Default**: true
| **var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. +
-**Mandatory**: when the variable "a condition" has the value "true".
+**Mandatory**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test/24_0family_mandatory_condition_variable.gitlab.md
index 4ffab6984..b415ac968 100644
--- a/tests/results/test/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`mandatory`* | A variable.
**Mandatory**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`mandatory`* | A variable.
**Mandatory**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test/24_0family_mandatory_condition_variable.html b/tests/results/test/24_0family_mandatory_condition_variable.html
index 8b66ec022..87c179635 100644
--- a/tests/results/test/24_0family_mandatory_condition_variable.html
+++ b/tests/results/test/24_0family_mandatory_condition_variable.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-var string standard mandatory | A variable. Mandatory: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: true |
+var string standard mandatory | A variable. Mandatory: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test/24_0family_mandatory_condition_variable.json b/tests/results/test/24_0family_mandatory_condition_variable.json
index c27aa63c1..10d366965 100644
--- a/tests/results/test/24_0family_mandatory_condition_variable.json
+++ b/tests/results/test/24_0family_mandatory_condition_variable.json
@@ -30,7 +30,7 @@
"ori_name": "mandatory",
"access_control": false,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test/24_0family_mandatory_condition_variable.md b/tests/results/test/24_0family_mandatory_condition_variable.md
index 4ffab6984..b415ac968 100644
--- a/tests/results/test/24_0family_mandatory_condition_variable.md
+++ b/tests/results/test/24_0family_mandatory_condition_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`mandatory`* | A variable.
**Mandatory**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`mandatory`* | A variable.
**Mandatory**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test/24_0family_mandatory_condition_variable.sh b/tests/results/test/24_0family_mandatory_condition_variable.sh
index 3e6f7b53a..e40c8fb4f 100644
--- a/tests/results/test/24_0family_mandatory_condition_variable.sh
+++ b/tests/results/test/24_0family_mandatory_condition_variable.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mmandatory[0m[1;7m [0m β [1mMandatory[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/24_7validators_variable_optional.sh b/tests/results/test/24_7validators_variable_optional.sh
index 2af8e55d8..7222f2ace 100644
--- a/tests/results/test/24_7validators_variable_optional.sh
+++ b/tests/results/test/24_7validators_variable_optional.sh
@@ -1,9 +1,9 @@
[1;4;96mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: general
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: general
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_0leadership.sh b/tests/results/test/40_0leadership.sh
index 1e58ab6e4..dad791009 100644
--- a/tests/results/test/40_0leadership.sh
+++ b/tests/results/test/40_0leadership.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_0leadership_diff_name.sh b/tests/results/test/40_0leadership_diff_name.sh
index 776f6c461..d7bf7a745 100644
--- a/tests/results/test/40_0leadership_diff_name.sh
+++ b/tests/results/test/40_0leadership_diff_name.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leadership
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leadership
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_0leadership_follower_default_calculation.sh b/tests/results/test/40_0leadership_follower_default_calculation.sh
index 8facb9ab4..cd9ac2f0a 100644
--- a/tests/results/test/40_0leadership_follower_default_calculation.sh
+++ b/tests/results/test/40_0leadership_follower_default_calculation.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_0leadership_follower_default_value.sh b/tests/results/test/40_0leadership_follower_default_value.sh
index 435196434..fc56c7dba 100644
--- a/tests/results/test/40_0leadership_follower_default_value.sh
+++ b/tests/results/test/40_0leadership_follower_default_value.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_0leadership_leader_follower.adoc b/tests/results/test/40_0leadership_leader_follower.adoc
index da42a8e4c..34c07298a 100644
--- a/tests/results/test/40_0leadership_leader_follower.adoc
+++ b/tests/results/test/40_0leadership_leader_follower.adoc
@@ -18,6 +18,6 @@ This family contains lists of variable blocks. +
* value2
| **leadership.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (leadership.leader).
|====
diff --git a/tests/results/test/40_0leadership_leader_follower.gitlab.md b/tests/results/test/40_0leadership_leader_follower.gitlab.md
index 2c49f3b58..6744a7d79 100644
--- a/tests/results/test/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test/40_0leadership_leader_follower.gitlab.md
@@ -5,10 +5,10 @@
> **Path**: leadership\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------|
-| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#leadership.leader)" (leadership.leader). |
diff --git a/tests/results/test/40_0leadership_leader_follower.html b/tests/results/test/40_0leadership_leader_follower.html
index 158f3b5c9..6c4a8ac30 100644
--- a/tests/results/test/40_0leadership_leader_follower.html
+++ b/tests/results/test/40_0leadership_leader_follower.html
@@ -8,12 +8,12 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
leadership.leader string multiple standard mandatory unique | A leader. Default: |
-leadership.follower string standard mandatory | A follower. Default: the value of the variable "a leader" |
+value2
+leadership.follower string standard mandatory | A follower. Default: the value of the variable "a leader" (leadership.leader). |
diff --git a/tests/results/test/40_0leadership_leader_follower.json b/tests/results/test/40_0leadership_leader_follower.json
index 38e056ca0..61593085d 100644
--- a/tests/results/test/40_0leadership_leader_follower.json
+++ b/tests/results/test/40_0leadership_leader_follower.json
@@ -59,7 +59,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "leadership.leader",
"type": "variable"
diff --git a/tests/results/test/40_0leadership_leader_follower.md b/tests/results/test/40_0leadership_leader_follower.md
index 4af2d2605..ebe11f8b6 100644
--- a/tests/results/test/40_0leadership_leader_follower.md
+++ b/tests/results/test/40_0leadership_leader_follower.md
@@ -6,8 +6,8 @@
> **Path**: leadership\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------|
-| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#leadership.leader)" (leadership.leader). |
diff --git a/tests/results/test/40_0leadership_leader_follower.sh b/tests/results/test/40_0leadership_leader_follower.sh
index ef08e633a..28e4b108c 100644
--- a/tests/results/test/40_0leadership_leader_follower.sh
+++ b/tests/results/test/40_0leadership_leader_follower.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leadership
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leadership
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,6 +16,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mleadership.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a leader" β
+β β "a leader" (leadership.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/40_0leadership_leader_not_multi.sh b/tests/results/test/40_0leadership_leader_not_multi.sh
index 8474d4389..d4dfd4f92 100644
--- a/tests/results/test/40_0leadership_leader_not_multi.sh
+++ b/tests/results/test/40_0leadership_leader_not_multi.sh
@@ -1,9 +1,9 @@
[1;4;96mgeneral[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: general
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: general
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,18 +14,18 @@
[1;4;96mgeneral1[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: general1
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: general1
+[34mβ [0m[1;7m basic [0m
[1;4;92mLeader[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: general1.leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: general1.leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_0leadership_reduce.sh b/tests/results/test/40_0leadership_reduce.sh
index f56206654..0ea47ba1a 100644
--- a/tests/results/test/40_0leadership_reduce.sh
+++ b/tests/results/test/40_0leadership_reduce.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leadership
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leadership
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_1leadership_append_follower.sh b/tests/results/test/40_1leadership_append_follower.sh
index bdb0eb4e6..7a54edd67 100644
--- a/tests/results/test/40_1leadership_append_follower.sh
+++ b/tests/results/test/40_1leadership_append_follower.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_2leadership_calculation_index.sh b/tests/results/test/40_2leadership_calculation_index.sh
index 7223ae7fa..04d203100 100644
--- a/tests/results/test/40_2leadership_calculation_index.sh
+++ b/tests/results/test/40_2leadership_calculation_index.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_2leadership_calculation_index_2.sh b/tests/results/test/40_2leadership_calculation_index_2.sh
index 7223ae7fa..04d203100 100644
--- a/tests/results/test/40_2leadership_calculation_index_2.sh
+++ b/tests/results/test/40_2leadership_calculation_index_2.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_6leadership_follower_multi.sh b/tests/results/test/40_6leadership_follower_multi.sh
index 42fdb229f..4e340a0b7 100644
--- a/tests/results/test/40_6leadership_follower_multi.sh
+++ b/tests/results/test/40_6leadership_follower_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leadership
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leadership
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test/40_6leadership_follower_multi_no_mandatory.sh
index cd05846a1..96de8ddd0 100644
--- a/tests/results/test/40_6leadership_follower_multi_no_mandatory.sh
+++ b/tests/results/test/40_6leadership_follower_multi_no_mandatory.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leadership
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leadership
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_8calculation_multi_variable.adoc b/tests/results/test/40_8calculation_multi_variable.adoc
index b0146becc..6b570964e 100644
--- a/tests/results/test/40_8calculation_multi_variable.adoc
+++ b/tests/results/test/40_8calculation_multi_variable.adoc
@@ -5,8 +5,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A first variable. +
**Default**:
-* the value of the variable "a second variable"
-* the value of the variable "a third variable"
+* the value of the variable "a second variable" (var2)
+* the value of the variable "a third variable" (var3)
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
**Default**: no
diff --git a/tests/results/test/40_8calculation_multi_variable.gitlab.md b/tests/results/test/40_8calculation_multi_variable.gitlab.md
index a8097936b..b93c7c30e 100644
--- a/tests/results/test/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#var2)"
β’ the value of the variable "[a third variable](#var3)" |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#var2)" (var2)
β’ the value of the variable "[a third variable](#var3)" (var3) |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
diff --git a/tests/results/test/40_8calculation_multi_variable.html b/tests/results/test/40_8calculation_multi_variable.html
index 9f7dae316..b96bf3ac8 100644
--- a/tests/results/test/40_8calculation_multi_variable.html
+++ b/tests/results/test/40_8calculation_multi_variable.html
@@ -3,8 +3,8 @@
| Variable | Description |
-var string multiple standard mandatory unique | A first variable. Default: - the value of the variable "a second variable"
-- the value of the variable "a third variable"
|
+var string multiple standard mandatory unique | A first variable. Default: - the value of the variable "a second variable" (var2)
+- the value of the variable "a third variable" (var3)
|
var2 string standard mandatory | A second variable. Default: no |
var3 string standard mandatory | A third variable. Default: yes |
diff --git a/tests/results/test/40_8calculation_multi_variable.json b/tests/results/test/40_8calculation_multi_variable.json
index 646102dbe..f9bae352d 100644
--- a/tests/results/test/40_8calculation_multi_variable.json
+++ b/tests/results/test/40_8calculation_multi_variable.json
@@ -23,7 +23,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "var2",
"type": "variable"
@@ -31,7 +31,7 @@
"description": "a second variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "var3",
"type": "variable"
diff --git a/tests/results/test/40_8calculation_multi_variable.md b/tests/results/test/40_8calculation_multi_variable.md
index a8097936b..b93c7c30e 100644
--- a/tests/results/test/40_8calculation_multi_variable.md
+++ b/tests/results/test/40_8calculation_multi_variable.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#var2)"
β’ the value of the variable "[a third variable](#var3)" |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#var2)" (var2)
β’ the value of the variable "[a third variable](#var3)" (var3) |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
diff --git a/tests/results/test/40_8calculation_multi_variable.sh b/tests/results/test/40_8calculation_multi_variable.sh
index a44375f67..3ecf839ff 100644
--- a/tests/results/test/40_8calculation_multi_variable.sh
+++ b/tests/results/test/40_8calculation_multi_variable.sh
@@ -4,9 +4,9 @@
β [1mvar[0m β A first variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
-β β second variable" β
+β β second variable" (var2) β
β β β’ the value of the variable "a third β
-β β variable" β
+β β variable" (var3) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: no β
diff --git a/tests/results/test/40_8calculation_multi_variable_parent.adoc b/tests/results/test/40_8calculation_multi_variable_parent.adoc
index 65e8ff0b7..c9ed3ce7a 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent.adoc
+++ b/tests/results/test/40_8calculation_multi_variable_parent.adoc
@@ -19,6 +19,6 @@
| Variable | Description
| **fam1.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (var).
|====
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 586a3d738..078fd7ed7 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md
@@ -8,9 +8,9 @@
> **Path**: fam1\
> `standard`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
-| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a variable](#var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
+| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a variable](#var)" (var). |
diff --git a/tests/results/test/40_8calculation_multi_variable_parent.html b/tests/results/test/40_8calculation_multi_variable_parent.html
index 7d2b170d3..bcc777f96 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent.html
+++ b/tests/results/test/40_8calculation_multi_variable_parent.html
@@ -15,10 +15,10 @@
-| Variable | Description |
+| Variable | Description |
-fam1.var string standard mandatory | A calculated variable. Default: the value of the variable "a variable" |
+fam1.var string standard mandatory | A calculated variable. Default: the value of the variable "a variable" (var). |
diff --git a/tests/results/test/40_8calculation_multi_variable_parent.json b/tests/results/test/40_8calculation_multi_variable_parent.json
index d71443a5c..7dcfcd545 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent.json
+++ b/tests/results/test/40_8calculation_multi_variable_parent.json
@@ -46,7 +46,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/40_8calculation_multi_variable_parent.md b/tests/results/test/40_8calculation_multi_variable_parent.md
index 28c8652cf..141dc03ec 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent.md
+++ b/tests/results/test/40_8calculation_multi_variable_parent.md
@@ -9,7 +9,7 @@
> **Path**: fam1\
> `standard`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
-| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a variable](#var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
+| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a variable](#var)" (var). |
diff --git a/tests/results/test/40_8calculation_multi_variable_parent.sh b/tests/results/test/40_8calculation_multi_variable_parent.sh
index 9a7deac40..d3813b409 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent.sh
+++ b/tests/results/test/40_8calculation_multi_variable_parent.sh
@@ -6,16 +6,16 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: fam1
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: fam1
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mfam1.var[0m β A calculated variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/40_8calculation_multi_variable_parent2.adoc b/tests/results/test/40_8calculation_multi_variable_parent2.adoc
index 81edf7530..a820d7465 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent2.adoc
+++ b/tests/results/test/40_8calculation_multi_variable_parent2.adoc
@@ -27,6 +27,6 @@
| Variable | Description
| **fam2.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (fam1.var).
|====
diff --git a/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md
index 9f3d3b90a..f762f3db2 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md
@@ -16,9 +16,9 @@
> **Path**: fam2\
> `standard`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------|
-| **fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#fam1.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------|
+| **fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#fam1.var)" (fam1.var). |
diff --git a/tests/results/test/40_8calculation_multi_variable_parent2.html b/tests/results/test/40_8calculation_multi_variable_parent2.html
index 3c5d40b8c..87a6bcb00 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent2.html
+++ b/tests/results/test/40_8calculation_multi_variable_parent2.html
@@ -21,10 +21,10 @@
-| Variable | Description |
+| Variable | Description |
-fam2.var string standard mandatory | A variable. Default: the value of the variable "a variable" |
+fam2.var string standard mandatory | A variable. Default: the value of the variable "a variable" (fam1.var). |
diff --git a/tests/results/test/40_8calculation_multi_variable_parent2.json b/tests/results/test/40_8calculation_multi_variable_parent2.json
index 0f644d676..79360af2a 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent2.json
+++ b/tests/results/test/40_8calculation_multi_variable_parent2.json
@@ -58,7 +58,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "fam1.var",
"type": "variable"
diff --git a/tests/results/test/40_8calculation_multi_variable_parent2.md b/tests/results/test/40_8calculation_multi_variable_parent2.md
index 6f3b14861..9dacb07ea 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent2.md
+++ b/tests/results/test/40_8calculation_multi_variable_parent2.md
@@ -16,7 +16,7 @@
> **Path**: fam2\
> `standard`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------|
-| **fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#fam1.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------|
+| **fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#fam1.var)" (fam1.var). |
diff --git a/tests/results/test/40_8calculation_multi_variable_parent2.sh b/tests/results/test/40_8calculation_multi_variable_parent2.sh
index d17084e2a..753415bac 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent2.sh
+++ b/tests/results/test/40_8calculation_multi_variable_parent2.sh
@@ -1,9 +1,9 @@
[1;4;96mFirst family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: fam1
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: fam1
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,16 +14,16 @@
[1;4;96mSecond family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: fam2
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: fam2
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mfam2.var[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (fam1.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.adoc b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.adoc
index 44f38d67a..b7f9b1805 100644
--- a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.adoc
+++ b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.adoc
@@ -20,6 +20,6 @@ This family contains lists of variable blocks. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A follower. +
**Default**:
-* the value of the variable "a leader"
+* the value of the variable "a leader" (leadership.leader)
|====
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 aa07efcc4..7e9485f83 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
@@ -5,10 +5,10 @@
> **Path**: leadership\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#leadership.leader)" (leadership.leader) |
diff --git a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.html b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.html
index 66bd6279e..eb1a0a311 100644
--- a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.html
+++ b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.html
@@ -8,12 +8,12 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
leadership.leader string multiple standard mandatory unique | A leader. Default: |
-leadership.follower string multiple standard mandatory unique | A follower. Default: - the value of the variable "a leader"
|
+value2
+leadership.follower string multiple standard mandatory unique | A follower. Default: - the value of the variable "a leader" (leadership.leader)
|
diff --git a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.json b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.json
index 1cd276de4..94cc000c4 100644
--- a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.json
+++ b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.json
@@ -66,7 +66,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "leadership.leader",
"type": "variable"
diff --git a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.md
index 6c0e7d237..672447d2e 100644
--- a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.md
+++ b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.md
@@ -6,8 +6,8 @@
> **Path**: leadership\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#leadership.leader)" (leadership.leader) |
diff --git a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.sh
index 74de2ab31..3cafe8f7b 100644
--- a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.sh
+++ b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leadership
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leadership
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -17,6 +17,6 @@
β [1mleadership.follower[0m β A follower. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
-β β leader" β
+β β leader" (leadership.leader) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test/40_9leadership-calculation-outside-follower-first.sh
index f09863a83..3cff5ba8b 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower-first.sh
+++ b/tests/results/test/40_9leadership-calculation-outside-follower-first.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test/40_9leadership-calculation-outside-follower-last.sh
index f09863a83..3cff5ba8b 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower-last.sh
+++ b/tests/results/test/40_9leadership-calculation-outside-follower-last.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.adoc b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.adoc
index 277ec0b6c..c49d1a658 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.adoc
+++ b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.adoc
@@ -21,8 +21,8 @@ This family contains lists of variable blocks. +
[cols="1a,1a"]
|====
-| Variable | Description
+| Variable | Description
| **variable** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | **Default**: the value of the variable "follower"
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | **Default**: the value of the variable "follower" (leader.follower).
|====
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 27a86a653..90451579a 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
@@ -12,7 +12,7 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------|
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#leader.follower)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#leader.follower)" (leader.follower). |
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.html b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.html
index 27bee31ce..497ef8965 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.html
+++ b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.html
@@ -19,10 +19,10 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
-variable string multiple standard unique | Default: the value of the variable "follower" |
+variable string multiple standard unique | Default: the value of the variable "follower" (leader.follower). |
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.json b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.json
index 44362a085..40cc9aec8 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.json
+++ b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.json
@@ -66,7 +66,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "leader.follower",
"type": "variable"
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.md
index 8c92ee367..bf211420c 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.md
+++ b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.md
@@ -11,7 +11,7 @@
| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
| **leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------|
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#leader.follower)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#leader.follower)" (leader.follower). |
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.sh
index e73150811..48cc37ad8 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.sh
+++ b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.sh
@@ -1,10 +1,10 @@
[1;4;96mleader[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -21,6 +21,6 @@
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mvariable[0m β [1mDefault[0m: the value of the variable β
-β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "follower" β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "follower" (leader.follower). β
β [1;7munique [0m β β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.adoc b/tests/results/test/40_9leadership-calculation-outside-follower.adoc
index 006d85a82..fe4b79b00 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower.adoc
+++ b/tests/results/test/40_9leadership-calculation-outside-follower.adoc
@@ -29,6 +29,6 @@ This family contains lists of variable blocks. +
| Variable | Description
| **calculate** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A calculated variable. +
-**Default**: the value of the variable "a follower"
+**Default**: the value of the variable "a follower" (leader.follower1).
|====
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 88f9f063b..4d94d65e2 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md
@@ -13,7 +13,7 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#leader.follower1)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#leader.follower1)" (leader.follower1). |
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.html b/tests/results/test/40_9leadership-calculation-outside-follower.html
index 50e77a1b1..cabb2f776 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower.html
+++ b/tests/results/test/40_9leadership-calculation-outside-follower.html
@@ -20,10 +20,10 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
-calculate string multiple standard mandatory | A calculated variable. Default: the value of the variable "a follower" |
+calculate string multiple standard mandatory | A calculated variable. Default: the value of the variable "a follower" (leader.follower1). |
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.json b/tests/results/test/40_9leadership-calculation-outside-follower.json
index c7a5e6195..bcf4432ba 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower.json
+++ b/tests/results/test/40_9leadership-calculation-outside-follower.json
@@ -101,7 +101,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "leader.follower1",
"type": "variable"
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.md b/tests/results/test/40_9leadership-calculation-outside-follower.md
index 706c7886f..a0998169c 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower.md
+++ b/tests/results/test/40_9leadership-calculation-outside-follower.md
@@ -12,7 +12,7 @@
| **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 |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#leader.follower1)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#leader.follower1)" (leader.follower1). |
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.sh b/tests/results/test/40_9leadership-calculation-outside-follower.sh
index a790240a0..5c90474e1 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower.sh
+++ b/tests/results/test/40_9leadership-calculation-outside-follower.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -26,5 +26,5 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mcalculate[0m β A calculated variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m β "a follower" β
+β [1;7mmandatory [0m β "a follower" (leader.follower1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test/40_9leadership-calculation-outside-leader-first.sh
index 314b6fbca..7b4ea29fd 100644
--- a/tests/results/test/40_9leadership-calculation-outside-leader-first.sh
+++ b/tests/results/test/40_9leadership-calculation-outside-leader-first.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test/40_9leadership-calculation-outside-leader-last.sh
index 314b6fbca..7b4ea29fd 100644
--- a/tests/results/test/40_9leadership-calculation-outside-leader-last.sh
+++ b/tests/results/test/40_9leadership-calculation-outside-leader-last.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.adoc b/tests/results/test/40_9leadership-calculation-outside-leader.adoc
index 2f263d784..79963768d 100644
--- a/tests/results/test/40_9leadership-calculation-outside-leader.adoc
+++ b/tests/results/test/40_9leadership-calculation-outside-leader.adoc
@@ -29,6 +29,6 @@ This family contains lists of variable blocks. +
| Variable | Description
| **calculate** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A calculated variable. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (leader.leader).
|====
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 a19079c4a..900d64d59 100644
--- a/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md
@@ -13,7 +13,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#leader.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#leader.leader)" (leader.leader). |
diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.html b/tests/results/test/40_9leadership-calculation-outside-leader.html
index 6858a43f8..3bca8ca40 100644
--- a/tests/results/test/40_9leadership-calculation-outside-leader.html
+++ b/tests/results/test/40_9leadership-calculation-outside-leader.html
@@ -20,10 +20,10 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
-calculate string multiple standard mandatory unique | A calculated variable. Default: the value of the variable "a leader" |
+calculate string multiple standard mandatory unique | A calculated variable. Default: the value of the variable "a leader" (leader.leader). |
diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.json b/tests/results/test/40_9leadership-calculation-outside-leader.json
index 6ffbc16b0..1c33c94cc 100644
--- a/tests/results/test/40_9leadership-calculation-outside-leader.json
+++ b/tests/results/test/40_9leadership-calculation-outside-leader.json
@@ -107,7 +107,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "leader.leader",
"type": "variable"
diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.md b/tests/results/test/40_9leadership-calculation-outside-leader.md
index 2b168061e..6a2a623ff 100644
--- a/tests/results/test/40_9leadership-calculation-outside-leader.md
+++ b/tests/results/test/40_9leadership-calculation-outside-leader.md
@@ -12,7 +12,7 @@
| **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 |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#leader.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#leader.leader)" (leader.leader). |
diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.sh b/tests/results/test/40_9leadership-calculation-outside-leader.sh
index cd471a036..ea257db7e 100644
--- a/tests/results/test/40_9leadership-calculation-outside-leader.sh
+++ b/tests/results/test/40_9leadership-calculation-outside-leader.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -26,5 +26,5 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mcalculate[0m β A calculated variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "a leader" β
+β [1;7mmandatory [0m [1;7m unique [0m β "a leader" (leader.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/40_9leadership-calculation-variable.adoc b/tests/results/test/40_9leadership-calculation-variable.adoc
index 2c47b732b..6626368b0 100644
--- a/tests/results/test/40_9leadership-calculation-variable.adoc
+++ b/tests/results/test/40_9leadership-calculation-variable.adoc
@@ -23,7 +23,7 @@ This family contains lists of variable blocks. +
| Variable | Description
| **leader.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A leader. +
-**Default**: the value of the variable "a calculated variable"
+**Default**: the value of the variable "a calculated variable" (calculate).
| **leader.follower1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
**Default**: val11
diff --git a/tests/results/test/40_9leadership-calculation-variable.gitlab.md b/tests/results/test/40_9leadership-calculation-variable.gitlab.md
index 99d199a75..6b33e06bb 100644
--- a/tests/results/test/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-variable.gitlab.md
@@ -9,11 +9,11 @@
> **Path**: leader\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#calculate)" |
-| **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 |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------|
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#calculate)" (calculate). |
+| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
+| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
diff --git a/tests/results/test/40_9leadership-calculation-variable.html b/tests/results/test/40_9leadership-calculation-variable.html
index bd2a91a42..ff13a9591 100644
--- a/tests/results/test/40_9leadership-calculation-variable.html
+++ b/tests/results/test/40_9leadership-calculation-variable.html
@@ -18,12 +18,12 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
-leader.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a calculated variable" |
-leader.follower1 string standard mandatory | A follower. Default: val11 |
-leader.follower2 string standard mandatory | An other follower. Default: val21 |
+leader.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a calculated variable" (calculate). |
+leader.follower1 string standard mandatory | A follower. Default: val11 |
+leader.follower2 string standard mandatory | An other follower. Default: val21 |
diff --git a/tests/results/test/40_9leadership-calculation-variable.json b/tests/results/test/40_9leadership-calculation-variable.json
index 98eba0101..117b044fe 100644
--- a/tests/results/test/40_9leadership-calculation-variable.json
+++ b/tests/results/test/40_9leadership-calculation-variable.json
@@ -65,7 +65,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "calculate",
"type": "variable"
diff --git a/tests/results/test/40_9leadership-calculation-variable.md b/tests/results/test/40_9leadership-calculation-variable.md
index 9dce41510..2fe589ccd 100644
--- a/tests/results/test/40_9leadership-calculation-variable.md
+++ b/tests/results/test/40_9leadership-calculation-variable.md
@@ -10,9 +10,9 @@
> **Path**: leader\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#calculate)" |
-| **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 |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------|
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#calculate)" (calculate). |
+| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
+| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
diff --git a/tests/results/test/40_9leadership-calculation-variable.sh b/tests/results/test/40_9leadership-calculation-variable.sh
index 8eac4c6d4..5ac94d73d 100644
--- a/tests/results/test/40_9leadership-calculation-variable.sh
+++ b/tests/results/test/40_9leadership-calculation-variable.sh
@@ -8,18 +8,18 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mleader.leader[0m β A leader. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "a calculated variable" β
+β [1;7mmandatory [0m [1;7m unique [0m β "a calculated variable" (calculate). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mleader.follower1[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: val11 β
diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower.adoc b/tests/results/test/40_9leadership-calculation-variable_leader_follower.adoc
index 6a46f1c54..c4ed25bab 100644
--- a/tests/results/test/40_9leadership-calculation-variable_leader_follower.adoc
+++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower.adoc
@@ -34,7 +34,7 @@ This family contains lists of variable blocks. +
| Variable | Description
| **leadership_2.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A leader. +
-**Default**: the value of the variable "a follower"
+**Default**: the value of the variable "a follower" (leadership_1.follower).
| **leadership_2.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
**Default**: val
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 9357fe8f3..6d582543b 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
@@ -19,10 +19,10 @@
> **Path**: leadership_2\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#leadership_1.follower)" |
-| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#leadership_1.follower)" (leadership_1.follower). |
+| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower.html b/tests/results/test/40_9leadership-calculation-variable_leader_follower.html
index 12718032e..8e675eca1 100644
--- a/tests/results/test/40_9leadership-calculation-variable_leader_follower.html
+++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower.html
@@ -27,11 +27,11 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
-leadership_2.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a follower" |
-leadership_2.follower string standard mandatory | A follower. Default: val |
+leadership_2.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a follower" (leadership_1.follower). |
+leadership_2.follower string standard mandatory | A follower. Default: val |
diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower.json b/tests/results/test/40_9leadership-calculation-variable_leader_follower.json
index 2bd205b9b..82ac28004 100644
--- a/tests/results/test/40_9leadership-calculation-variable_leader_follower.json
+++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower.json
@@ -96,7 +96,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "leadership_1.follower",
"type": "variable"
diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test/40_9leadership-calculation-variable_leader_follower.md
index 97915bcfb..6fe986ab1 100644
--- a/tests/results/test/40_9leadership-calculation-variable_leader_follower.md
+++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower.md
@@ -19,8 +19,8 @@
> **Path**: leadership_2\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#leadership_1.follower)" |
-| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#leadership_1.follower)" (leadership_1.follower). |
+| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test/40_9leadership-calculation-variable_leader_follower.sh
index e97bfee5a..d07564367 100644
--- a/tests/results/test/40_9leadership-calculation-variable_leader_follower.sh
+++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leadership_1
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leadership_1
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -20,11 +20,11 @@
[1;4;96mA second leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leadership_2
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leadership_2
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -32,6 +32,7 @@
β [1mleadership_2.leader[0m β A leader. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "a follower" β
+β β (leadership_1.follower). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mleadership_2.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: val β
diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.adoc b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.adoc
index 1c44be21a..94e82c6b7 100644
--- a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.adoc
+++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.adoc
@@ -40,6 +40,6 @@ This family contains lists of variable blocks. +
* value2
| **leadership_2.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A follower. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (leadership_1.leader).
|====
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 50394d438..aa36838bd 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
@@ -19,10 +19,10 @@
> **Path**: leadership_2\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
-| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#leadership_1.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#leadership_1.leader)" (leadership_1.leader). |
diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.html b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.html
index 5a65490e8..f0c37fab1 100644
--- a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.html
+++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.html
@@ -27,12 +27,12 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
leadership_2.leader string multiple standard mandatory unique | A leader. Default: |
-leadership_2.follower string multiple standard mandatory unique | A follower. Default: the value of the variable "a leader" |
+value2
+leadership_2.follower string multiple standard mandatory unique | A follower. Default: the value of the variable "a leader" (leadership_1.leader). |
diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.json b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.json
index ee377e412..b1c44acc1 100644
--- a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.json
+++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.json
@@ -126,7 +126,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "leadership_1.leader",
"type": "variable"
diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.md
index 84ccc2f87..4feab2acf 100644
--- a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.md
+++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.md
@@ -19,8 +19,8 @@
> **Path**: leadership_2\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
-| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#leadership_1.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#leadership_1.leader)" (leadership_1.leader). |
diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.sh
index 95afaa556..b99fc97f4 100644
--- a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.sh
+++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leadership_1
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leadership_1
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -20,11 +20,11 @@
[1;4;96mA second leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leadership_2
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leadership_2
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -36,6 +36,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mleadership_2.follower[0m β A follower. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "a leader" β
+β [1;7mmandatory [0m [1;7m unique [0m β "a leader" (leadership_1.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/41_0choice_leader.sh b/tests/results/test/41_0choice_leader.sh
index 061570d6d..8b023109b 100644
--- a/tests/results/test/41_0choice_leader.sh
+++ b/tests/results/test/41_0choice_leader.sh
@@ -1,10 +1,10 @@
[1;4;96mThe leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/44_4disabled_calcultion_follower_index.sh b/tests/results/test/44_4disabled_calcultion_follower_index.sh
index 2dcfe4900..84304893a 100644
--- a/tests/results/test/44_4disabled_calcultion_follower_index.sh
+++ b/tests/results/test/44_4disabled_calcultion_follower_index.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leadership
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leadership
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/44_4leadership_mandatory.sh b/tests/results/test/44_4leadership_mandatory.sh
index 2601b04dd..640eacebc 100644
--- a/tests/results/test/44_4leadership_mandatory.sh
+++ b/tests/results/test/44_4leadership_mandatory.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/44_4leadership_mandatory_follower.sh b/tests/results/test/44_4leadership_mandatory_follower.sh
index 1328c3440..40f401070 100644
--- a/tests/results/test/44_4leadership_mandatory_follower.sh
+++ b/tests/results/test/44_4leadership_mandatory_follower.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/44_5leadership_leader_hidden_calculation.sh b/tests/results/test/44_5leadership_leader_hidden_calculation.sh
index cca2ad4bd..fbc9c1e59 100644
--- a/tests/results/test/44_5leadership_leader_hidden_calculation.sh
+++ b/tests/results/test/44_5leadership_leader_hidden_calculation.sh
@@ -6,12 +6,12 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: if condition is no.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: if condition is no.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/44_6leadership_follower_disabled_calculation.sh b/tests/results/test/44_6leadership_follower_disabled_calculation.sh
index e05ea5c3e..4d2f517ab 100644
--- a/tests/results/test/44_6leadership_follower_disabled_calculation.sh
+++ b/tests/results/test/44_6leadership_follower_disabled_calculation.sh
@@ -6,11 +6,11 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic.adoc b/tests/results/test/60_0family_dynamic.adoc
index c0acf9727..8e6841902 100644
--- a/tests/results/test/60_0family_dynamic.adoc
+++ b/tests/results/test/60_0family_dynamic.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var).
====
[cols="1a,1a"]
|====
diff --git a/tests/results/test/60_0family_dynamic.gitlab.md b/tests/results/test/60_0family_dynamic.gitlab.md
index 1f78c98e2..59a3b42f9 100644
--- a/tests/results/test/60_0family_dynamic.gitlab.md
+++ b/tests/results/test/60_0family_dynamic.gitlab.md
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test/60_0family_dynamic.html b/tests/results/test/60_0family_dynamic.html
index 702f2fbdd..2b73fdec2 100644
--- a/tests/results/test/60_0family_dynamic.html
+++ b/tests/results/test/60_0family_dynamic.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var).
diff --git a/tests/results/test/60_0family_dynamic.json b/tests/results/test/60_0family_dynamic.json
index 6beb13eae..9f662b180 100644
--- a/tests/results/test/60_0family_dynamic.json
+++ b/tests/results/test/60_0family_dynamic.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_0family_dynamic.md b/tests/results/test/60_0family_dynamic.md
index e81949b24..35aa76268 100644
--- a/tests/results/test/60_0family_dynamic.md
+++ b/tests/results/test/60_0family_dynamic.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test/60_0family_dynamic.sh b/tests/results/test/60_0family_dynamic.sh
index a083246e8..086eb3f91 100644
--- a/tests/results/test/60_0family_dynamic.sh
+++ b/tests/results/test/60_0family_dynamic.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic_1_1.adoc b/tests/results/test/60_0family_dynamic_1_1.adoc
index c980a4919..eb855b2eb 100644
--- a/tests/results/test/60_0family_dynamic_1_1.adoc
+++ b/tests/results/test/60_0family_dynamic_1_1.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var).
====
[cols="1a,1a"]
|====
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 6a4fa5810..5047e7d3a 100644
--- a/tests/results/test/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_1_1.gitlab.md
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test/60_0family_dynamic_1_1.html b/tests/results/test/60_0family_dynamic_1_1.html
index 0c2a86a01..a41aa1189 100644
--- a/tests/results/test/60_0family_dynamic_1_1.html
+++ b/tests/results/test/60_0family_dynamic_1_1.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var).
diff --git a/tests/results/test/60_0family_dynamic_1_1.json b/tests/results/test/60_0family_dynamic_1_1.json
index 2d1e57873..4e3ff11ab 100644
--- a/tests/results/test/60_0family_dynamic_1_1.json
+++ b/tests/results/test/60_0family_dynamic_1_1.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_0family_dynamic_1_1.md b/tests/results/test/60_0family_dynamic_1_1.md
index c22114d88..a097e30bd 100644
--- a/tests/results/test/60_0family_dynamic_1_1.md
+++ b/tests/results/test/60_0family_dynamic_1_1.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test/60_0family_dynamic_1_1.sh b/tests/results/test/60_0family_dynamic_1_1.sh
index f574ae182..9d27e6f00 100644
--- a/tests/results/test/60_0family_dynamic_1_1.sh
+++ b/tests/results/test/60_0family_dynamic_1_1.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic_1_1_empty.adoc b/tests/results/test/60_0family_dynamic_1_1_empty.adoc
index 99aa39881..f85892287 100644
--- a/tests/results/test/60_0family_dynamic_1_1_empty.adoc
+++ b/tests/results/test/60_0family_dynamic_1_1_empty.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var).
====
[cols="1a,1a"]
|====
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 3130d07d4..77dab8d18 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
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test/60_0family_dynamic_1_1_empty.html b/tests/results/test/60_0family_dynamic_1_1_empty.html
index 316ceb8ab..13dd6604f 100644
--- a/tests/results/test/60_0family_dynamic_1_1_empty.html
+++ b/tests/results/test/60_0family_dynamic_1_1_empty.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var).
diff --git a/tests/results/test/60_0family_dynamic_1_1_empty.json b/tests/results/test/60_0family_dynamic_1_1_empty.json
index 2ca9018b3..e03405d1d 100644
--- a/tests/results/test/60_0family_dynamic_1_1_empty.json
+++ b/tests/results/test/60_0family_dynamic_1_1_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_0family_dynamic_1_1_empty.md b/tests/results/test/60_0family_dynamic_1_1_empty.md
index cc2e9e916..c64a77fa1 100644
--- a/tests/results/test/60_0family_dynamic_1_1_empty.md
+++ b/tests/results/test/60_0family_dynamic_1_1_empty.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test/60_0family_dynamic_1_1_empty.sh b/tests/results/test/60_0family_dynamic_1_1_empty.sh
index 49f6f1fe0..d3b6549e5 100644
--- a/tests/results/test/60_0family_dynamic_1_1_empty.sh
+++ b/tests/results/test/60_0family_dynamic_1_1_empty.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic_empty.adoc b/tests/results/test/60_0family_dynamic_empty.adoc
index 498f50ad1..a097d9a1a 100644
--- a/tests/results/test/60_0family_dynamic_empty.adoc
+++ b/tests/results/test/60_0family_dynamic_empty.adoc
@@ -13,7 +13,7 @@
This family builds families dynamically. +
**Path**: dyn__example__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var).
====
[cols="1a,1a"]
|====
diff --git a/tests/results/test/60_0family_dynamic_empty.gitlab.md b/tests/results/test/60_0family_dynamic_empty.gitlab.md
index bf736f5ea..fa234e463 100644
--- a/tests/results/test/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_empty.gitlab.md
@@ -8,7 +8,7 @@
> This family builds families dynamically.\
> **Path**: dyn*example*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test/60_0family_dynamic_empty.html b/tests/results/test/60_0family_dynamic_empty.html
index 067e0d5d9..202c8c418 100644
--- a/tests/results/test/60_0family_dynamic_empty.html
+++ b/tests/results/test/60_0family_dynamic_empty.html
@@ -15,7 +15,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var).
diff --git a/tests/results/test/60_0family_dynamic_empty.json b/tests/results/test/60_0family_dynamic_empty.json
index 5c68a315b..3a270b133 100644
--- a/tests/results/test/60_0family_dynamic_empty.json
+++ b/tests/results/test/60_0family_dynamic_empty.json
@@ -34,7 +34,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_0family_dynamic_empty.md b/tests/results/test/60_0family_dynamic_empty.md
index 503c5bb96..1ab51bb08 100644
--- a/tests/results/test/60_0family_dynamic_empty.md
+++ b/tests/results/test/60_0family_dynamic_empty.md
@@ -9,7 +9,7 @@
> This family builds families dynamically.\
> **Path**: dyn*example*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test/60_0family_dynamic_empty.sh b/tests/results/test/60_0family_dynamic_empty.sh
index 6987bba2f..e757f8b85 100644
--- a/tests/results/test/60_0family_dynamic_empty.sh
+++ b/tests/results/test/60_0family_dynamic_empty.sh
@@ -7,12 +7,12 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: dyn[3mexample[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: dyn[3mexample[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.adoc b/tests/results/test/60_0family_dynamic_forbidden_char.adoc
index e6f85c10e..288925732 100644
--- a/tests/results/test/60_0family_dynamic_forbidden_char.adoc
+++ b/tests/results/test/60_0family_dynamic_forbidden_char.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val_1__
* dyn__val_2__ +
`standard` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var).
====
[cols="1a,1a"]
|====
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 78f9e36c6..395228ea4 100644
--- a/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md
@@ -10,7 +10,7 @@
> - dyn*val_1*
> - dyn*val_2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.html b/tests/results/test/60_0family_dynamic_forbidden_char.html
index 04a20b697..364cce8c3 100644
--- a/tests/results/test/60_0family_dynamic_forbidden_char.html
+++ b/tests/results/test/60_0family_dynamic_forbidden_char.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var).
diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.json b/tests/results/test/60_0family_dynamic_forbidden_char.json
index 9a91112f4..127fc6328 100644
--- a/tests/results/test/60_0family_dynamic_forbidden_char.json
+++ b/tests/results/test/60_0family_dynamic_forbidden_char.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.md b/tests/results/test/60_0family_dynamic_forbidden_char.md
index 21e318c5b..5aace03c4 100644
--- a/tests/results/test/60_0family_dynamic_forbidden_char.md
+++ b/tests/results/test/60_0family_dynamic_forbidden_char.md
@@ -11,7 +11,7 @@
> - dyn*val_1*
> - dyn*val_2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.sh b/tests/results/test/60_0family_dynamic_forbidden_char.sh
index 7c80abb88..fcb5ac5c6 100644
--- a/tests/results/test/60_0family_dynamic_forbidden_char.sh
+++ b/tests/results/test/60_0family_dynamic_forbidden_char.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval_1[0m
-[34mβ [0m β’ dyn[3mval_2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval_1[0m
+[34mβ [0m β’ dyn[3mval_2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic_no_description.adoc b/tests/results/test/60_0family_dynamic_no_description.adoc
index 593e4e16e..6a4f1e9e3 100644
--- a/tests/results/test/60_0family_dynamic_no_description.adoc
+++ b/tests/results/test/60_0family_dynamic_no_description.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var).
====
[cols="1a,1a"]
|====
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 47217bf0c..8d6c57c63 100644
--- a/tests/results/test/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_no_description.gitlab.md
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/tests/results/test/60_0family_dynamic_no_description.html b/tests/results/test/60_0family_dynamic_no_description.html
index dc1fb0cb5..d82ea6232 100644
--- a/tests/results/test/60_0family_dynamic_no_description.html
+++ b/tests/results/test/60_0family_dynamic_no_description.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var).
diff --git a/tests/results/test/60_0family_dynamic_no_description.json b/tests/results/test/60_0family_dynamic_no_description.json
index 59f1c8866..24e44cd81 100644
--- a/tests/results/test/60_0family_dynamic_no_description.json
+++ b/tests/results/test/60_0family_dynamic_no_description.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_0family_dynamic_no_description.md b/tests/results/test/60_0family_dynamic_no_description.md
index 00a27fbcb..e75a77327 100644
--- a/tests/results/test/60_0family_dynamic_no_description.md
+++ b/tests/results/test/60_0family_dynamic_no_description.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/tests/results/test/60_0family_dynamic_no_description.sh b/tests/results/test/60_0family_dynamic_no_description.sh
index b0820ebe0..00799aa8d 100644
--- a/tests/results/test/60_0family_dynamic_no_description.sh
+++ b/tests/results/test/60_0family_dynamic_no_description.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar[1m)[0m.
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic_no_description_empty.adoc b/tests/results/test/60_0family_dynamic_no_description_empty.adoc
index bd616cd32..ff64e6905 100644
--- a/tests/results/test/60_0family_dynamic_no_description_empty.adoc
+++ b/tests/results/test/60_0family_dynamic_no_description_empty.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var).
====
[cols="1a,1a"]
|====
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 d52ae5c26..4259c5339 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
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/tests/results/test/60_0family_dynamic_no_description_empty.html b/tests/results/test/60_0family_dynamic_no_description_empty.html
index d842cb4f3..8ddc1ac40 100644
--- a/tests/results/test/60_0family_dynamic_no_description_empty.html
+++ b/tests/results/test/60_0family_dynamic_no_description_empty.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var).
diff --git a/tests/results/test/60_0family_dynamic_no_description_empty.json b/tests/results/test/60_0family_dynamic_no_description_empty.json
index 62fa21236..936db24b2 100644
--- a/tests/results/test/60_0family_dynamic_no_description_empty.json
+++ b/tests/results/test/60_0family_dynamic_no_description_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_0family_dynamic_no_description_empty.md b/tests/results/test/60_0family_dynamic_no_description_empty.md
index e2c4f0141..12a7b5ae2 100644
--- a/tests/results/test/60_0family_dynamic_no_description_empty.md
+++ b/tests/results/test/60_0family_dynamic_no_description_empty.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/tests/results/test/60_0family_dynamic_no_description_empty.sh b/tests/results/test/60_0family_dynamic_no_description_empty.sh
index a4ef6f406..76652fa43 100644
--- a/tests/results/test/60_0family_dynamic_no_description_empty.sh
+++ b/tests/results/test/60_0family_dynamic_no_description_empty.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar[1m)[0m.
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic_source_hidden.sh b/tests/results/test/60_0family_dynamic_source_hidden.sh
index ba8648a5b..9ab014b56 100644
--- a/tests/results/test/60_0family_dynamic_source_hidden.sh
+++ b/tests/results/test/60_0family_dynamic_source_hidden.sh
@@ -1,15 +1,15 @@
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: [1m([0mfrom an undocumented variable[1m)[0m
-[34mβ [0m β’ val1
-[34mβ [0m β’ val2
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: [1m([0mfrom an undocumented variable[1m)[0m
+[34mβ [0m β’ val1
+[34mβ [0m β’ val2
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic_static.sh b/tests/results/test/60_0family_dynamic_static.sh
index 5f631d876..ab50205d5 100644
--- a/tests/results/test/60_0family_dynamic_static.sh
+++ b/tests/results/test/60_0family_dynamic_static.sh
@@ -1,15 +1,15 @@
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ val1
-[34mβ [0m β’ val2
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ val1
+[34mβ [0m β’ val2
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic_test.adoc b/tests/results/test/60_0family_dynamic_test.adoc
index 370d261e2..841650e49 100644
--- a/tests/results/test/60_0family_dynamic_test.adoc
+++ b/tests/results/test/60_0family_dynamic_test.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var).
====
[cols="1a,1a"]
|====
diff --git a/tests/results/test/60_0family_dynamic_test.gitlab.md b/tests/results/test/60_0family_dynamic_test.gitlab.md
index a0c224437..44192ab20 100644
--- a/tests/results/test/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_test.gitlab.md
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test/60_0family_dynamic_test.html b/tests/results/test/60_0family_dynamic_test.html
index 8d6a474bd..0a29b4228 100644
--- a/tests/results/test/60_0family_dynamic_test.html
+++ b/tests/results/test/60_0family_dynamic_test.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var).
diff --git a/tests/results/test/60_0family_dynamic_test.json b/tests/results/test/60_0family_dynamic_test.json
index 08b0888d4..58b312e41 100644
--- a/tests/results/test/60_0family_dynamic_test.json
+++ b/tests/results/test/60_0family_dynamic_test.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_0family_dynamic_test.md b/tests/results/test/60_0family_dynamic_test.md
index 5044549d1..e85a5336e 100644
--- a/tests/results/test/60_0family_dynamic_test.md
+++ b/tests/results/test/60_0family_dynamic_test.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test/60_0family_dynamic_test.sh b/tests/results/test/60_0family_dynamic_test.sh
index 4ccdcda0c..165504d8f 100644
--- a/tests/results/test/60_0family_dynamic_test.sh
+++ b/tests/results/test/60_0family_dynamic_test.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic_upper_char.adoc b/tests/results/test/60_0family_dynamic_upper_char.adoc
index fa3b03eee..4e539c6a5 100644
--- a/tests/results/test/60_0family_dynamic_upper_char.adoc
+++ b/tests/results/test/60_0family_dynamic_upper_char.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var).
====
[cols="1a,1a"]
|====
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 4ecd55859..3c0bac738 100644
--- a/tests/results/test/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_upper_char.gitlab.md
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test/60_0family_dynamic_upper_char.html b/tests/results/test/60_0family_dynamic_upper_char.html
index 9c8b624a4..2f9d3c274 100644
--- a/tests/results/test/60_0family_dynamic_upper_char.html
+++ b/tests/results/test/60_0family_dynamic_upper_char.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var).
diff --git a/tests/results/test/60_0family_dynamic_upper_char.json b/tests/results/test/60_0family_dynamic_upper_char.json
index 4c80246e5..b051cdc12 100644
--- a/tests/results/test/60_0family_dynamic_upper_char.json
+++ b/tests/results/test/60_0family_dynamic_upper_char.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_0family_dynamic_upper_char.md b/tests/results/test/60_0family_dynamic_upper_char.md
index 912c375b6..9d857806c 100644
--- a/tests/results/test/60_0family_dynamic_upper_char.md
+++ b/tests/results/test/60_0family_dynamic_upper_char.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test/60_0family_dynamic_upper_char.sh b/tests/results/test/60_0family_dynamic_upper_char.sh
index 848233bca..b2fff0e91 100644
--- a/tests/results/test/60_0family_dynamic_upper_char.sh
+++ b/tests/results/test/60_0family_dynamic_upper_char.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic_variable_empty.adoc b/tests/results/test/60_0family_dynamic_variable_empty.adoc
index 967fa4e39..1012d4806 100644
--- a/tests/results/test/60_0family_dynamic_variable_empty.adoc
+++ b/tests/results/test/60_0family_dynamic_variable_empty.adoc
@@ -13,7 +13,7 @@
This family builds families dynamically. +
**Path**: dyn__example__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (var).
====
[cols="1a,1a"]
|====
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 815b705f5..823ce8ae9 100644
--- a/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md
@@ -8,7 +8,7 @@
> This family builds families dynamically.\
> **Path**: dyn*example*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var)" (var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
diff --git a/tests/results/test/60_0family_dynamic_variable_empty.html b/tests/results/test/60_0family_dynamic_variable_empty.html
index 04684b7fc..011022f13 100644
--- a/tests/results/test/60_0family_dynamic_variable_empty.html
+++ b/tests/results/test/60_0family_dynamic_variable_empty.html
@@ -15,7 +15,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (var).
diff --git a/tests/results/test/60_0family_dynamic_variable_empty.json b/tests/results/test/60_0family_dynamic_variable_empty.json
index 5846a97f4..e2bf72904 100644
--- a/tests/results/test/60_0family_dynamic_variable_empty.json
+++ b/tests/results/test/60_0family_dynamic_variable_empty.json
@@ -40,7 +40,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_0family_dynamic_variable_empty.md b/tests/results/test/60_0family_dynamic_variable_empty.md
index 4b270a701..d3a9119d9 100644
--- a/tests/results/test/60_0family_dynamic_variable_empty.md
+++ b/tests/results/test/60_0family_dynamic_variable_empty.md
@@ -9,7 +9,7 @@
> This family builds families dynamically.\
> **Path**: dyn*example*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var)" (var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
diff --git a/tests/results/test/60_0family_dynamic_variable_empty.sh b/tests/results/test/60_0family_dynamic_variable_empty.sh
index b9231eec6..77968a012 100644
--- a/tests/results/test/60_0family_dynamic_variable_empty.sh
+++ b/tests/results/test/60_0family_dynamic_variable_empty.sh
@@ -7,12 +7,12 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: dyn[3mexample[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: dyn[3mexample[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic_variable_optional.sh b/tests/results/test/60_0family_dynamic_variable_optional.sh
index 6057e5524..61d95c956 100644
--- a/tests/results/test/60_0family_dynamic_variable_optional.sh
+++ b/tests/results/test/60_0family_dynamic_variable_optional.sh
@@ -1,15 +1,15 @@
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3ma[0m
-[34mβ [0m β’ dyn[3mb[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ a
-[34mβ [0m β’ b
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3ma[0m
+[34mβ [0m β’ dyn[3mb[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ a
+[34mβ [0m β’ b
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.adoc b/tests/results/test/60_0family_dynamic_variable_suffix.adoc
index d0799f8e2..2d45a15c9 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix.adoc
+++ b/tests/results/test/60_0family_dynamic_variable_suffix.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var).
====
[cols="1a,1a"]
|====
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 cc76db31c..0a6cd0ac4 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------|
diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.html b/tests/results/test/60_0family_dynamic_variable_suffix.html
index af55b2d97..ab5b6061e 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix.html
+++ b/tests/results/test/60_0family_dynamic_variable_suffix.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var).
diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.json b/tests/results/test/60_0family_dynamic_variable_suffix.json
index 1e29e5e80..0eb744010 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix.json
+++ b/tests/results/test/60_0family_dynamic_variable_suffix.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.md b/tests/results/test/60_0family_dynamic_variable_suffix.md
index 27c6140da..b5cc48947 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix.md
+++ b/tests/results/test/60_0family_dynamic_variable_suffix.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------|
diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.sh b/tests/results/test/60_0family_dynamic_variable_suffix.sh
index cccda0a85..b09df74cd 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix.sh
+++ b/tests/results/test/60_0family_dynamic_variable_suffix.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_dynamic_variable_suffix_empty.adoc b/tests/results/test/60_0family_dynamic_variable_suffix_empty.adoc
index 6b2fea7bb..361a98687 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.adoc
+++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var).
====
[cols="1a,1a"]
|====
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 ad7279805..2c6cb98fd 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
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------|
diff --git a/tests/results/test/60_0family_dynamic_variable_suffix_empty.html b/tests/results/test/60_0family_dynamic_variable_suffix_empty.html
index 48ddcafd5..9280d4871 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.html
+++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var).
diff --git a/tests/results/test/60_0family_dynamic_variable_suffix_empty.json b/tests/results/test/60_0family_dynamic_variable_suffix_empty.json
index c9fb5e421..5db8cb8c3 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.json
+++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test/60_0family_dynamic_variable_suffix_empty.md
index 5cc4f9a69..9f757e842 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.md
+++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var)" (var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------|
diff --git a/tests/results/test/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test/60_0family_dynamic_variable_suffix_empty.sh
index 011a24b43..266cbf6e4 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.sh
+++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_0family_mode.sh b/tests/results/test/60_0family_mode.sh
index 2ecadeaea..67dc974a1 100644
--- a/tests/results/test/60_0family_mode.sh
+++ b/tests/results/test/60_0family_mode.sh
@@ -1,9 +1,9 @@
[1;4;96mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_1family_dynamic_jinja.sh b/tests/results/test/60_1family_dynamic_jinja.sh
index 87cd3b61f..433d050f0 100644
--- a/tests/results/test/60_1family_dynamic_jinja.sh
+++ b/tests/results/test/60_1family_dynamic_jinja.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3m1[0m
-[34mβ [0m β’ dyn[3m2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: index of suffix value.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3m1[0m
+[34mβ [0m β’ dyn[3m2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: index of suffix value.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.adoc b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.adoc
index e32c3c2db..62dedb4ac 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.adoc
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (var1).
====
=== A family
@@ -46,6 +46,6 @@ This family builds families dynamically. +
| Variable | Description
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of "with a variable".
+**Default**: the value of "with a variable" (dyn__val1__.family.var).
|====
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 7f6d3f158..674ce818a 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
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var1)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var1)" (var1).
A family
@@ -28,7 +28,7 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#dyn:::identifier:::.family.var)". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#dyn:::identifier:::.family.var)" (dyn*val1*.family.var). |
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.html b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.html
index a724bd55e..3094ca553 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.html
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (var1).
A family
@@ -37,10 +37,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-var2 string standard mandatory | A second variable. Default: the value of "with a variable". |
+var2 string standard mandatory | A second variable. Default: the value of "with a variable" (dynval1.family.var). |
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.json b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.json
index 63c9f79ab..c156aa2a4 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.json
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
@@ -123,7 +123,7 @@
"default": {
"name": "Default",
"values": {
- "description": "the value of \"{0}\".",
+ "description": "the value of {0}.",
"variables": [
{
"path": "dyn{{ identifier }}.family.var",
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.md
index 70eddad74..c2b7cfd31 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.md
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var1)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var1)" (var1).
## A family
@@ -26,7 +26,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------|
| **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 |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#dyn:::identifier:::.family.var)". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#dyn:::identifier:::.family.var)" (dyn*val1*.family.var). |
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.sh
index 622136c0b..cdb46d9d9 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.sh
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.sh
@@ -8,23 +8,23 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mvar1[1m)[0m.
[1;4;92mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m.family
-[34mβ [0m β’ dyn[3mval2[0m.family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m.family
+[34mβ [0m β’ dyn[3mval2[0m.family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -40,5 +40,5 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of "with a β
-β β variable". β
+β β variable" (dyn[3mval1[0m.family.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.adoc b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.adoc
index 802988f4c..3092b2cc4 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.adoc
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "a identifier variable"
+**Identifiers**: the value of the variable "a identifier variable" (var).
====
=== A family inside dynamic family
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 930471247..91b5f4682 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
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a identifier variable](#var)"
+> **Identifiers**: the value of the variable "[a identifier variable](#var)" (var).
A family inside dynamic family
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.html b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.html
index 7a0016d65..283976db7 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.html
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a identifier variable"
+Identifiers: the value of the variable "a identifier variable" (var).
A family inside dynamic family
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.json b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.json
index 81e77be4b..9eeaa546c 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.json
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.md
index ee6b179b8..dd8b47cee 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.md
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a identifier variable](#var)"
+> **Identifiers**: the value of the variable "[a identifier variable](#var)" (var).
## A family inside dynamic family
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.sh
index a3c0fd562..44afa5b26 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.sh
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.sh
@@ -8,23 +8,23 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a identifier variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a identifier variable"[0m [1m([0mvar[1m)[0m.
[1;4;92mA family inside dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m.family
-[34mβ [0m β’ dyn[3mval2[0m.family
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m.family
+[34mβ [0m β’ dyn[3mval2[0m.family
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc
index 4abd17680..a68b72566 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "a identifier variable"
+**Identifiers**: the value of the variable "a identifier variable" (var).
====
=== A family inside dynamic family
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 b8fa746a5..8e8cbc49d 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
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a identifier variable](#var)"
+> **Identifiers**: the value of the variable "[a identifier variable](#var)" (var).
A family inside dynamic family
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.html b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.html
index 13b8448da..2ab4b9f6c 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.html
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a identifier variable"
+Identifiers: the value of the variable "a identifier variable" (var).
A family inside dynamic family
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.json b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.json
index 02648c311..81055249a 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.json
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.md
index 71b87ceba..3b82f103e 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.md
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a identifier variable](#var)"
+> **Identifiers**: the value of the variable "[a identifier variable](#var)" (var).
## A family inside dynamic family
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh
index c65e5d060..73794f9a4 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh
@@ -8,23 +8,23 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a identifier variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a identifier variable"[0m [1m([0mvar[1m)[0m.
[1;4;92mA family inside dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m.family
-[34mβ [0m β’ dyn[3mval2[0m.family
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m.family
+[34mβ [0m β’ dyn[3mval2[0m.family
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.adoc b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.adoc
index e263dbe29..95e929b30 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.adoc
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (var1).
====
=== A family
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 8dc4ae72e..a58bb9737 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
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var1)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var1)" (var1).
A family
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.html b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.html
index 9553e16e8..6690c7005 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.html
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (var1).
A family
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.json b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.json
index 1834e00a5..35e510402 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.json
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.md
index 0bf4be687..bf031d7af 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.md
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var1)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var1)" (var1).
## A family
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.sh
index 49bb90035..8f561b05e 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.sh
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.sh
@@ -8,23 +8,23 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mvar1[1m)[0m.
[1;4;92mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m.family
-[34mβ [0m β’ dyn[3mval2[0m.family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m.family
+[34mβ [0m β’ dyn[3mval2[0m.family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_2family_dynamic_outside_calc.adoc b/tests/results/test/60_2family_dynamic_outside_calc.adoc
index a018b5f8a..b5c9bef6b 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc.adoc
+++ b/tests/results/test/60_2family_dynamic_outside_calc.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffx variable"
+**Identifiers**: the value of the variable "a suffx variable" (var1).
====
[cols="1a,1a"]
|====
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 1f16f60d9..fe1db4be0 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffx variable](#var1)"
+> **Identifiers**: the value of the variable "[a suffx variable](#var1)" (var1).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
diff --git a/tests/results/test/60_2family_dynamic_outside_calc.html b/tests/results/test/60_2family_dynamic_outside_calc.html
index 31401158c..634dca853 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc.html
+++ b/tests/results/test/60_2family_dynamic_outside_calc.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffx variable"
+Identifiers: the value of the variable "a suffx variable" (var1).
diff --git a/tests/results/test/60_2family_dynamic_outside_calc.json b/tests/results/test/60_2family_dynamic_outside_calc.json
index 7cba46149..43ff4d991 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc.json
+++ b/tests/results/test/60_2family_dynamic_outside_calc.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test/60_2family_dynamic_outside_calc.md b/tests/results/test/60_2family_dynamic_outside_calc.md
index 018e5155a..7ec334f49 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc.md
+++ b/tests/results/test/60_2family_dynamic_outside_calc.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffx variable](#var1)"
+> **Identifiers**: the value of the variable "[a suffx variable](#var1)" (var1).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
diff --git a/tests/results/test/60_2family_dynamic_outside_calc.sh b/tests/results/test/60_2family_dynamic_outside_calc.sh
index 05c6373b7..729611812 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc.sh
+++ b/tests/results/test/60_2family_dynamic_outside_calc.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffx variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffx variable"[0m [1m([0mvar1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_2family_dynamic_outside_calc_empty.adoc b/tests/results/test/60_2family_dynamic_outside_calc_empty.adoc
index b48abbacb..6e8c450c2 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc_empty.adoc
+++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffx variable"
+**Identifiers**: the value of the variable "a suffx variable" (var1).
====
[cols="1a,1a"]
|====
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 ecf6554b9..34d693c18 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
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffx variable](#var1)"
+> **Identifiers**: the value of the variable "[a suffx variable](#var1)" (var1).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
diff --git a/tests/results/test/60_2family_dynamic_outside_calc_empty.html b/tests/results/test/60_2family_dynamic_outside_calc_empty.html
index 7ad28dcba..cad7c6b53 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc_empty.html
+++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffx variable"
+Identifiers: the value of the variable "a suffx variable" (var1).
diff --git a/tests/results/test/60_2family_dynamic_outside_calc_empty.json b/tests/results/test/60_2family_dynamic_outside_calc_empty.json
index 90d67de63..e47c6c619 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc_empty.json
+++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test/60_2family_dynamic_outside_calc_empty.md b/tests/results/test/60_2family_dynamic_outside_calc_empty.md
index 0507305c6..45735ae01 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc_empty.md
+++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffx variable](#var1)"
+> **Identifiers**: the value of the variable "[a suffx variable](#var1)" (var1).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
diff --git a/tests/results/test/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test/60_2family_dynamic_outside_calc_empty.sh
index e9a75012a..03712a342 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc_empty.sh
+++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffx variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffx variable"[0m [1m([0mvar1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_5family_dynamic_calc_description.adoc b/tests/results/test/60_5family_dynamic_calc_description.adoc
index a34630c91..cbcc18daf 100644
--- a/tests/results/test/60_5family_dynamic_calc_description.adoc
+++ b/tests/results/test/60_5family_dynamic_calc_description.adoc
@@ -27,12 +27,12 @@ This family builds families dynamically. +
| Variable | Description
| **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
-**Disabled**: when the variable "a dynamic variable for __val1__" has the value "val".
+**Disabled**: when the variable "a dynamic variable for __val1__" (dyn__val1__.var) has the value "val".
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A new variable. +
**Default**:
-* the value of the variable "a dynamic variable for __val1__"
-* the value of the variable "a dynamic variable for __val2__"
+* the value of the variable "a dynamic variable for __val1__" (dyn__val1__.var)
+* the value of the variable "a dynamic variable for __val2__" (dyn__val2__.var)
|====
diff --git a/tests/results/test/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test/60_5family_dynamic_calc_description.gitlab.md
index ce1198c12..c46d6fbef 100644
--- a/tests/results/test/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_description.gitlab.md
@@ -16,8 +16,8 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" has the value "val". |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)"
β’ the value of the variable "[a dynamic variable for *val2*](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" (dyn*val1*.var) has the value "val". |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[a dynamic variable for *val2*](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test/60_5family_dynamic_calc_description.html b/tests/results/test/60_5family_dynamic_calc_description.html
index 575856e0f..5a6c0b40a 100644
--- a/tests/results/test/60_5family_dynamic_calc_description.html
+++ b/tests/results/test/60_5family_dynamic_calc_description.html
@@ -21,12 +21,12 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-var1 string basic mandatory disabled | A new variable. Disabled: when the variable "a dynamic variable for val1" has the value "val". |
-var2 string multiple standard mandatory | A new variable. Default: - the value of the variable "a dynamic variable for val1"
-- the value of the variable "a dynamic variable for val2"
|
+var1 string basic mandatory disabled | A new variable. Disabled: when the variable "a dynamic variable for val1" (dynval1.var) has the value "val". |
+var2 string multiple standard mandatory | A new variable. Default: - the value of the variable "a dynamic variable for val1" (dynval1.var)
+- the value of the variable "a dynamic variable for val2" (dynval2.var)
|
diff --git a/tests/results/test/60_5family_dynamic_calc_description.json b/tests/results/test/60_5family_dynamic_calc_description.json
index 26913d07d..f9a65ead3 100644
--- a/tests/results/test/60_5family_dynamic_calc_description.json
+++ b/tests/results/test/60_5family_dynamic_calc_description.json
@@ -67,7 +67,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"val\".",
+ "message": "when the variable {0} has the value \"val\".",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
@@ -100,7 +100,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
@@ -110,7 +110,7 @@
"description": "a dynamic variable for {{ identifier }}"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test/60_5family_dynamic_calc_description.md b/tests/results/test/60_5family_dynamic_calc_description.md
index 191d77e8f..69221aa35 100644
--- a/tests/results/test/60_5family_dynamic_calc_description.md
+++ b/tests/results/test/60_5family_dynamic_calc_description.md
@@ -15,8 +15,8 @@
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" has the value "val". |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)"
β’ the value of the variable "[a dynamic variable for *val2*](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" (dyn*val1*.var) has the value "val". |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[a dynamic variable for *val2*](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test/60_5family_dynamic_calc_description.sh b/tests/results/test/60_5family_dynamic_calc_description.sh
index b74330537..bd82e851a 100644
--- a/tests/results/test/60_5family_dynamic_calc_description.sh
+++ b/tests/results/test/60_5family_dynamic_calc_description.sh
@@ -1,15 +1,15 @@
[1;4;96mA dynamic famify for [0m[1;3;4;96mval1[0m[1;4;96m or [0m[1;3;4;96mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ val1
-[34mβ [0m β’ val2
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ val1
+[34mβ [0m β’ val2
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -24,13 +24,15 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mvar1[0m β A new variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable for [3mval1[0m" has the β
-β β value "val". β
+β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable for [3mval1[0m" β
+β β (dyn[3mval1[0m.var) has the value "val". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A new variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m β β’ the value of the variable "a β
β β dynamic variable for [3mval1[0m" β
+β β (dyn[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β dynamic variable for [3mval2[0m" β
+β β (dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/60_5family_dynamic_calc_identifier.adoc b/tests/results/test/60_5family_dynamic_calc_identifier.adoc
index 8e86299bf..18d988016 100644
--- a/tests/results/test/60_5family_dynamic_calc_identifier.adoc
+++ b/tests/results/test/60_5family_dynamic_calc_identifier.adoc
@@ -23,7 +23,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var1).
====
[cols="1a,1a"]
|====
@@ -41,7 +41,7 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (dyn__val1__.var)
+* the value of the variable "A dynamic variable" (dyn__val2__.var)
|====
diff --git a/tests/results/test/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test/60_5family_dynamic_calc_identifier.gitlab.md
index 04d800d8f..4ac713314 100644
--- a/tests/results/test/60_5family_dynamic_calc_identifier.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_identifier.gitlab.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var1)" (var1).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
@@ -19,7 +19,7 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test/60_5family_dynamic_calc_identifier.html b/tests/results/test/60_5family_dynamic_calc_identifier.html
index f8471e7eb..fad442cc4 100644
--- a/tests/results/test/60_5family_dynamic_calc_identifier.html
+++ b/tests/results/test/60_5family_dynamic_calc_identifier.html
@@ -18,7 +18,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var1).
@@ -34,8 +34,8 @@ This family builds families dynamically.
| Variable | Description |
-var3 string standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+var3 string standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable" (dynval1.var)
+- the value of the variable "A dynamic variable" (dynval2.var)
|
diff --git a/tests/results/test/60_5family_dynamic_calc_identifier.json b/tests/results/test/60_5family_dynamic_calc_identifier.json
index a1480d825..5da98d1eb 100644
--- a/tests/results/test/60_5family_dynamic_calc_identifier.json
+++ b/tests/results/test/60_5family_dynamic_calc_identifier.json
@@ -69,7 +69,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
@@ -127,7 +127,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
@@ -137,7 +137,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test/60_5family_dynamic_calc_identifier.md b/tests/results/test/60_5family_dynamic_calc_identifier.md
index 74f43afcf..52f8db2bb 100644
--- a/tests/results/test/60_5family_dynamic_calc_identifier.md
+++ b/tests/results/test/60_5family_dynamic_calc_identifier.md
@@ -12,13 +12,13 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var1)" (var1).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
| **dyn*val1*.var**
**dyn*val2*.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 |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test/60_5family_dynamic_calc_identifier.sh b/tests/results/test/60_5family_dynamic_calc_identifier.sh
index 7f26c8ad4..38f2f19b1 100644
--- a/tests/results/test/60_5family_dynamic_calc_identifier.sh
+++ b/tests/results/test/60_5family_dynamic_calc_identifier.sh
@@ -11,14 +11,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mdyn[0m[1;3;4;96mval1[0m[1;4;96m or dyn[0m[1;3;4;96mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -34,7 +34,7 @@
β [1mvar3[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: β
β β β’ the value of the variable "A β
-β β dynamic variable" β
+β β dynamic variable" (dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
-β β dynamic variable" β
+β β dynamic variable" (dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/60_5family_dynamic_calc_identifier_multi.adoc b/tests/results/test/60_5family_dynamic_calc_identifier_multi.adoc
index f61c3f3af..b5734d282 100644
--- a/tests/results/test/60_5family_dynamic_calc_identifier_multi.adoc
+++ b/tests/results/test/60_5family_dynamic_calc_identifier_multi.adoc
@@ -23,7 +23,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var1).
====
[cols="1a,1a"]
|====
@@ -43,7 +43,7 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (dyn__val1__.var)
+* the value of the variable "A dynamic variable" (dyn__val2__.var)
|====
diff --git a/tests/results/test/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test/60_5family_dynamic_calc_identifier_multi.gitlab.md
index 1dcfd8302..6f30eacb8 100644
--- a/tests/results/test/60_5family_dynamic_calc_identifier_multi.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_identifier_multi.gitlab.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var1)" (var1).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
@@ -19,7 +19,7 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test/60_5family_dynamic_calc_identifier_multi.html b/tests/results/test/60_5family_dynamic_calc_identifier_multi.html
index 01d83e4f4..f68189449 100644
--- a/tests/results/test/60_5family_dynamic_calc_identifier_multi.html
+++ b/tests/results/test/60_5family_dynamic_calc_identifier_multi.html
@@ -18,7 +18,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var1).
@@ -34,8 +34,8 @@ This family builds families dynamically.
| Variable | Description |
-var3 string multiple standard mandatory unique | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+var3 string multiple standard mandatory unique | A variable calculated. Default: - the value of the variable "A dynamic variable" (dynval1.var)
+- the value of the variable "A dynamic variable" (dynval2.var)
|
diff --git a/tests/results/test/60_5family_dynamic_calc_identifier_multi.json b/tests/results/test/60_5family_dynamic_calc_identifier_multi.json
index 64605783a..49de51dfa 100644
--- a/tests/results/test/60_5family_dynamic_calc_identifier_multi.json
+++ b/tests/results/test/60_5family_dynamic_calc_identifier_multi.json
@@ -69,7 +69,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
@@ -142,7 +142,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
@@ -152,7 +152,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test/60_5family_dynamic_calc_identifier_multi.md
index f1b949cfa..7f5da42f9 100644
--- a/tests/results/test/60_5family_dynamic_calc_identifier_multi.md
+++ b/tests/results/test/60_5family_dynamic_calc_identifier_multi.md
@@ -12,13 +12,13 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var1)" (var1).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test/60_5family_dynamic_calc_identifier_multi.sh
index b4871e9a6..82643ad2e 100644
--- a/tests/results/test/60_5family_dynamic_calc_identifier_multi.sh
+++ b/tests/results/test/60_5family_dynamic_calc_identifier_multi.sh
@@ -11,14 +11,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mdyn[0m[1;3;4;96mval1[0m[1;4;96m or dyn[0m[1;3;4;96mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -35,7 +35,7 @@
β [1mvar3[0m β A variable calculated. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "A β
-β β dynamic variable" β
+β β dynamic variable" (dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
-β β dynamic variable" β
+β β dynamic variable" (dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.adoc b/tests/results/test/60_5family_dynamic_calc_suffix2.adoc
index 3e407a6a8..729f8f0ba 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2.adoc
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (var).
====
[cols="1a,1a"]
|====
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 91e365ae9..ad1caf783 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var)" (var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.html b/tests/results/test/60_5family_dynamic_calc_suffix2.html
index 89971c53f..e9136ee5a 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2.html
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (var).
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.json b/tests/results/test/60_5family_dynamic_calc_suffix2.json
index ca9831f11..30d6c3666 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2.json
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.md b/tests/results/test/60_5family_dynamic_calc_suffix2.md
index 65b340563..61573c8a4 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2.md
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var)" (var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.sh b/tests/results/test/60_5family_dynamic_calc_suffix2.sh
index 8880cba22..8e9864f16 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2.sh
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.adoc b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.adoc
index 55d349816..085acad62 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.adoc
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (var).
====
[cols="1a,1a"]
|====
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 e8c418401..ef149f2da 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
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var)" (var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.html b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.html
index 9b56ec583..e3afa342d 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.html
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (var).
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.json b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.json
index b9b18847a..cc65ad9d2 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.json
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.md
index 830774c71..a4158a69d 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.md
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var)" (var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.sh
index 3fd207b85..1e1b045f5 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.sh
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.sh
index c777da46f..fd23ace5e 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.sh
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.sh
@@ -1,15 +1,15 @@
[1;4;96mdyn[0m[1;3;4;96mval1[0m[1;4;96m or dyn[0m[1;3;4;96mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ val1
-[34mβ [0m β’ val2
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ val1
+[34mβ [0m β’ val2
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param.adoc b/tests/results/test/60_5family_dynamic_calc_suffix_param.adoc
index 6b3a07698..3dee88d47 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_param.adoc
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A identifier variable"
+**Identifiers**: the value of the variable "A identifier variable" (var).
====
[cols="1a,1a"]
|====
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 87651b19f..c2ecc82c0 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
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#var)" (var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param.html b/tests/results/test/60_5family_dynamic_calc_suffix_param.html
index 8c8cff282..6380c6ca1 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_param.html
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A identifier variable"
+Identifiers: the value of the variable "A identifier variable" (var).
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param.json b/tests/results/test/60_5family_dynamic_calc_suffix_param.json
index 3e6c1e5f2..e3fa3db5e 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_param.json
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param.md b/tests/results/test/60_5family_dynamic_calc_suffix_param.md
index 3f668fc5b..0a2473815 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_param.md
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#var)" (var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test/60_5family_dynamic_calc_suffix_param.sh
index c2331ab44..b8d21a1bc 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_param.sh
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.adoc b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.adoc
index f33677dfe..9c3708d20 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.adoc
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A identifier variable"
+**Identifiers**: the value of the variable "A identifier variable" (var).
====
[cols="1a,1a"]
|====
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 15e5a40d7..b991c89c6 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
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#var)" (var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.html b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.html
index 85ac6a587..14b545aba 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.html
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A identifier variable"
+Identifiers: the value of the variable "A identifier variable" (var).
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.json b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.json
index dd30cd476..c5c41cc7e 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.json
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.md
index 26c0c7954..c8d69f5dc 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.md
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#var)" (var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.sh
index 3587eecde..d90afa392 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.sh
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_5family_dynamic_calc_variable.adoc b/tests/results/test/60_5family_dynamic_calc_variable.adoc
index 1e09a903c..d66959421 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable.adoc
+++ b/tests/results/test/60_5family_dynamic_calc_variable.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var1).
====
[cols="1a,1a"]
|====
@@ -35,6 +35,6 @@ This family builds families dynamically. +
| Variable | Description
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable"
+**Default**: the value of the variable "A dynamic variable" (dyn__val1__.var)
|====
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 baadbce54..c23e8bb0e 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var1)" (var1).
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
@@ -18,7 +18,7 @@
-| 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 "[A dynamic variable](#dyn:::identifier:::.var)" |
+| 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 "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var) |
diff --git a/tests/results/test/60_5family_dynamic_calc_variable.html b/tests/results/test/60_5family_dynamic_calc_variable.html
index a201cbc0e..914a455f1 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable.html
+++ b/tests/results/test/60_5family_dynamic_calc_variable.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var1).
@@ -30,10 +30,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" |
+var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (dynval1.var) |
diff --git a/tests/results/test/60_5family_dynamic_calc_variable.json b/tests/results/test/60_5family_dynamic_calc_variable.json
index dacbee2a8..b5ab8a3cf 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable.json
+++ b/tests/results/test/60_5family_dynamic_calc_variable.json
@@ -49,7 +49,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
@@ -102,7 +102,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test/60_5family_dynamic_calc_variable.md b/tests/results/test/60_5family_dynamic_calc_variable.md
index ed276bc78..bbc4a1290 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable.md
+++ b/tests/results/test/60_5family_dynamic_calc_variable.md
@@ -11,13 +11,13 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var1)" (var1).
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| 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 "[A dynamic variable](#dyn:::identifier:::.var)" |
+| 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 "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var) |
diff --git a/tests/results/test/60_5family_dynamic_calc_variable.sh b/tests/results/test/60_5family_dynamic_calc_variable.sh
index 0389f2ffa..12a4f0c90 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable.sh
+++ b/tests/results/test/60_5family_dynamic_calc_variable.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mdyn[0m[1;3;4;96mval1[0m[1;4;96m or dyn[0m[1;3;4;96mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -30,5 +30,5 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mvar2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" β
+β β "A dynamic variable" (dyn[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled.adoc b/tests/results/test/60_5family_dynamic_calc_variable_disabled.adoc
index 74779b36b..a69c3fe4b 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.adoc
+++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.adoc
@@ -25,7 +25,7 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
**Disabled**:
-* when the variable "A dynamic variable" has the value "val1".
-* when the variable "A dynamic variable" has the value "val1".
+* when the variable "A dynamic variable" (dyn__val1__.var1) has the value "val1".
+* when the variable "A dynamic variable" (dyn__val2__.var1) has the value "val1".
|====
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 607e9dcc7..97a70565c 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -10,10 +10,10 @@
> - val1
> - val2
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **dyn*val1*.var2**
**dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1".
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **dyn*val1*.var2**
**dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val1*.var1) has the value "val1".
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val2*.var1) has the value "val1". |
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled.html b/tests/results/test/60_5family_dynamic_calc_variable_disabled.html
index 5135c28ca..747a089a2 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.html
+++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.html
@@ -16,8 +16,8 @@ This family builds families dynamically.
dynval1.var1 dynval2.var1 string basic mandatory | A dynamic variable. |
-dynval1.var2 dynval2.var2 string basic mandatory disabled | A new variable. Disabled: - when the variable "A dynamic variable" has the value "val1".
-- when the variable "A dynamic variable" has the value "val1".
|
+dynval1.var2 dynval2.var2 string basic mandatory disabled | A new variable. Disabled: - when the variable "A dynamic variable" (dynval1.var1) has the value "val1".
+- when the variable "A dynamic variable" (dynval2.var1) has the value "val1".
|
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled.json b/tests/results/test/60_5family_dynamic_calc_variable_disabled.json
index 085eeef1f..41c731450 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.json
+++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.json
@@ -66,7 +66,7 @@
"access_control": true,
"annotation": [
{
- "message": "when the variable \"{0}\" has the value \"val1\".",
+ "message": "when the variable {0} has the value \"val1\".",
"path": {
"path": "dyn{{ identifier }}.var1",
"identifiers": [
@@ -76,7 +76,7 @@
"description": "A dynamic variable"
},
{
- "message": "when the variable \"{0}\" has the value \"val1\".",
+ "message": "when the variable {0} has the value \"val1\".",
"path": {
"path": "dyn{{ identifier }}.var1",
"identifiers": [
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test/60_5family_dynamic_calc_variable_disabled.md
index 7f2f4e4b7..8cbcad637 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.md
+++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.md
@@ -11,8 +11,8 @@
> - val1
> - val2
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **dyn*val1*.var2**
**dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1".
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **dyn*val1*.var2**
**dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val1*.var1) has the value "val1".
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val2*.var1) has the value "val1". |
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test/60_5family_dynamic_calc_variable_disabled.sh
index 69f8f2fa0..06851f45a 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.sh
+++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.sh
@@ -1,15 +1,15 @@
[1;4;96mA dynamic famify for [0m[1;3;4;96mval1[0m[1;4;96m or [0m[1;3;4;96mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ val1
-[34mβ [0m β’ val2
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ val1
+[34mβ [0m β’ val2
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -21,8 +21,10 @@
β [1mdyn[0m[1;3mval1[0m[1m.var2[0m β A new variable. β
β [1mdyn[0m[1;3mval2[0m[1m.var2[0m β [1mDisabled[0m: β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β β’ when the variable "A dynamic β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "val1". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (dyn[3mval1[0m.var1) has the β
+β β value "val1". β
β β β’ when the variable "A dynamic β
-β β variable" has the value "val1". β
+β β variable" (dyn[3mval2[0m.var1) has the β
+β β value "val1". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.adoc b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.adoc
index d3a02c0d8..ad62a2e85 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.adoc
+++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.adoc
@@ -27,6 +27,6 @@ This family builds families dynamically. +
| Variable | Description
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
-**Disabled**: when the variable "A dynamic variable" has the value "val1".
+**Disabled**: when the variable "A dynamic variable" (dyn__val1__.var1) has the value "val1".
|====
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 6736ff2b5..0ab0b4a8f 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -16,7 +16,7 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------|
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val1*.var1) has the value "val1". |
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.html b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.html
index f56928fb8..c08d902b4 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.html
+++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.html
@@ -21,10 +21,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-var2 string basic mandatory disabled | A new variable. Disabled: when the variable "A dynamic variable" has the value "val1". |
+var2 string basic mandatory disabled | A new variable. Disabled: when the variable "A dynamic variable" (dynval1.var1) has the value "val1". |
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.json b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.json
index 8e8a0e855..bfb37a403 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.json
+++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.json
@@ -67,7 +67,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"val1\".",
+ "message": "when the variable {0} has the value \"val1\".",
"path": {
"path": "dyn{{ identifier }}.var1",
"identifiers": [
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.md
index 0a82a2f22..75f718a81 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.md
+++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.md
@@ -15,7 +15,7 @@
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------|
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val1*.var1) has the value "val1". |
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.sh
index 6f20cb798..381795ebf 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.sh
+++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.sh
@@ -1,15 +1,15 @@
[1;4;96mA dynamic famify for [0m[1;3;4;96mval1[0m[1;4;96m or [0m[1;3;4;96mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ val1
-[34mβ [0m β’ val2
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ val1
+[34mβ [0m β’ val2
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -24,6 +24,6 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mvar2[0m β A new variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "A β
-β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable" has the value β
-β β "val1". β
+β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable" (dyn[3mval1[0m.var1) has β
+β β the value "val1". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_empty.adoc b/tests/results/test/60_5family_dynamic_calc_variable_empty.adoc
index 66da06f9d..4e5f99aa9 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_empty.adoc
+++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (var1).
====
[cols="1a,1a"]
|====
@@ -35,6 +35,6 @@ This family builds families dynamically. +
| Variable | Description
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (dyn__val1__.var) if it is defined
|====
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 04a9c9dc2..02d1557f9 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
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var1)" (var1).
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
@@ -18,7 +18,7 @@
-| 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 "[A dynamic variable](#dyn:::identifier:::.var)" if it is defined |
+| 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 "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var) if it is defined |
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_empty.html b/tests/results/test/60_5family_dynamic_calc_variable_empty.html
index 641125704..7b5e49fff 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_empty.html
+++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (var1).
@@ -30,10 +30,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (dynval1.var) if it is defined |
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_empty.json b/tests/results/test/60_5family_dynamic_calc_variable_empty.json
index 6ec15cf84..a1649407b 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_empty.json
+++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.json
@@ -43,7 +43,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
@@ -96,7 +96,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_empty.md b/tests/results/test/60_5family_dynamic_calc_variable_empty.md
index 71a47f674..7adc7b230 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_empty.md
+++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.md
@@ -11,13 +11,13 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#var1)" (var1).
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| 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 "[A dynamic variable](#dyn:::identifier:::.var)" if it is defined |
+| 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 "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var) if it is defined |
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test/60_5family_dynamic_calc_variable_empty.sh
index 13d46baad..96d4e963f 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_empty.sh
+++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mdyn[0m[1;3;4;96mval1[0m[1;4;96m or dyn[0m[1;3;4;96mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mvar1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -30,6 +30,6 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mvar2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
-β β defined β
+β β "A dynamic variable" (dyn[3mval1[0m.var) β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/60_5family_dynamic_hidden_suffix.sh b/tests/results/test/60_5family_dynamic_hidden_suffix.sh
index cd8d690a6..ded2635f1 100644
--- a/tests/results/test/60_5family_dynamic_hidden_suffix.sh
+++ b/tests/results/test/60_5family_dynamic_hidden_suffix.sh
@@ -1,16 +1,16 @@
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: if suffix == [32m'val2'[0m.
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ val1
-[34mβ [0m β’ val2
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: if suffix == [32m'val2'[0m.
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ val1
+[34mβ [0m β’ val2
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -21,12 +21,12 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m.family
-[34mβ [0m β’ dyn[3mval2[0m.family
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m.family
+[34mβ [0m β’ dyn[3mval2[0m.family
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix.adoc b/tests/results/test/60_5family_dynamic_variable_outside_suffix.adoc
index 59fd25e44..d3eb1a57c 100644
--- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.adoc
+++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn___val1__
* dyn___val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (var).
====
[cols="1a,1a"]
|====
@@ -36,6 +36,6 @@ This family builds families dynamically. +
| Variable | Description
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable inside dynamic family"
+**Default**: the value of the variable "a variable inside dynamic family" (dyn___val1__.var)
|====
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 df8e67800..afed2cdce 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
@@ -10,7 +10,7 @@
> - dyn_*val1*
> - dyn_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var)" (var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
@@ -18,7 +18,7 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" (dyn_*val1*.var) |
diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix.html b/tests/results/test/60_5family_dynamic_variable_outside_suffix.html
index 95cc753a3..3e5692781 100644
--- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.html
+++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (var).
@@ -30,10 +30,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-var2 string standard mandatory | A variable. Default: the value of the variable "a variable inside dynamic family" |
+var2 string standard mandatory | A variable. Default: the value of the variable "a variable inside dynamic family" (dyn_val1.var) |
diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix.json b/tests/results/test/60_5family_dynamic_variable_outside_suffix.json
index 14e93c7ff..d2c0a5cc2 100644
--- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.json
+++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
@@ -107,7 +107,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test/60_5family_dynamic_variable_outside_suffix.md
index 33baf6391..b8683c853 100644
--- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.md
+++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.md
@@ -11,13 +11,13 @@
> - dyn_*val1*
> - dyn_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var)" (var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
| **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 |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" (dyn_*val1*.var) |
diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test/60_5family_dynamic_variable_outside_suffix.sh
index 90c735897..1868b8652 100644
--- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.sh
+++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn_[3mval1[0m
-[34mβ [0m β’ dyn_[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn_[3mval1[0m
+[34mβ [0m β’ dyn_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -31,4 +31,5 @@
β [1mvar2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "a variable inside dynamic family" β
+β β (dyn_[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.adoc b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.adoc
index 5f5653b41..1359de6aa 100644
--- a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.adoc
+++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn___val1__
* dyn___val2__ +
`standard` +
-**Identifiers**: the value of the variable "asuffix variable"
+**Identifiers**: the value of the variable "asuffix variable" (var).
====
[cols="1a,1a"]
|====
@@ -36,6 +36,6 @@ This family builds families dynamically. +
| Variable | Description
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. +
-**Default**: the value of the variable "a variable inside dynamic family" if it is defined
+**Default**: the value of the variable "a variable inside dynamic family" (dyn___val1__.var) if it is defined
|====
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 a7a519bf9..9af071a41 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
@@ -10,7 +10,7 @@
> - dyn_*val1*
> - dyn_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[asuffix variable](#var)"
+> **Identifiers**: the value of the variable "[asuffix variable](#var)" (var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
@@ -18,7 +18,7 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" (dyn_*val1*.var) if it is defined |
diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.html b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.html
index e57beff91..2f3acf528 100644
--- a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.html
+++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "asuffix variable"
+Identifiers: the value of the variable "asuffix variable" (var).
@@ -30,10 +30,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-var2 string standard | A variable. Default: the value of the variable "a variable inside dynamic family" if it is defined |
+var2 string standard | A variable. Default: the value of the variable "a variable inside dynamic family" (dyn_val1.var) if it is defined |
diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.json b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.json
index 5f06c69cf..5774fa84f 100644
--- a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.json
+++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
@@ -94,7 +94,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "dyn_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.md
index d55e4cbe0..d9f968111 100644
--- a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.md
+++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.md
@@ -11,13 +11,13 @@
> - dyn_*val1*
> - dyn_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[asuffix variable](#var)"
+> **Identifiers**: the value of the variable "[asuffix variable](#var)" (var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
| **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 |
-|-----------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" (dyn_*val1*.var) if it is defined |
diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.sh
index 65551e229..9ebd81ea3 100644
--- a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.sh
+++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.sh
@@ -8,14 +8,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn_[3mval1[0m
-[34mβ [0m β’ dyn_[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"asuffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn_[3mval1[0m
+[34mβ [0m β’ dyn_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"asuffix variable"[0m [1m([0mvar[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -31,5 +31,5 @@
β [1mvar2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m β [1mDefault[0m: the value of the variable β
β β "a variable inside dynamic family" β
-β β if it is defined β
+β β (dyn_[3mval1[0m.var) if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test/60_6family_dynamic_leadership.adoc b/tests/results/test/60_6family_dynamic_leadership.adoc
index 8833c3a26..4a8304fc3 100644
--- a/tests/results/test/60_6family_dynamic_leadership.adoc
+++ b/tests/results/test/60_6family_dynamic_leadership.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (var).
====
=== A leadership
diff --git a/tests/results/test/60_6family_dynamic_leadership.gitlab.md b/tests/results/test/60_6family_dynamic_leadership.gitlab.md
index b0b427e02..6d3fc9b75 100644
--- a/tests/results/test/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test/60_6family_dynamic_leadership.gitlab.md
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var)" (var).
A leadership
diff --git a/tests/results/test/60_6family_dynamic_leadership.html b/tests/results/test/60_6family_dynamic_leadership.html
index 5f8254ba3..dcb564083 100644
--- a/tests/results/test/60_6family_dynamic_leadership.html
+++ b/tests/results/test/60_6family_dynamic_leadership.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (var).
A leadership
diff --git a/tests/results/test/60_6family_dynamic_leadership.json b/tests/results/test/60_6family_dynamic_leadership.json
index 3b9725aad..fb19d7675 100644
--- a/tests/results/test/60_6family_dynamic_leadership.json
+++ b/tests/results/test/60_6family_dynamic_leadership.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_6family_dynamic_leadership.md b/tests/results/test/60_6family_dynamic_leadership.md
index aabeaaa61..91d293122 100644
--- a/tests/results/test/60_6family_dynamic_leadership.md
+++ b/tests/results/test/60_6family_dynamic_leadership.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var)" (var).
## A leadership
diff --git a/tests/results/test/60_6family_dynamic_leadership.sh b/tests/results/test/60_6family_dynamic_leadership.sh
index 45a6e0a86..119a65723 100644
--- a/tests/results/test/60_6family_dynamic_leadership.sh
+++ b/tests/results/test/60_6family_dynamic_leadership.sh
@@ -8,24 +8,24 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mvar[1m)[0m.
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m.leadership
-[34mβ [0m β’ dyn[3mval2[0m.leadership
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m.leadership
+[34mβ [0m β’ dyn[3mval2[0m.leadership
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.adoc b/tests/results/test/60_6family_dynamic_leadership_empty.adoc
index 217fa4c78..eb29cc91d 100644
--- a/tests/results/test/60_6family_dynamic_leadership_empty.adoc
+++ b/tests/results/test/60_6family_dynamic_leadership_empty.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
* dyn__val1__
* dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (var).
====
=== A leadership
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 bab68731b..af72dd858 100644
--- a/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md
@@ -10,7 +10,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var)" (var).
A leadership
diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.html b/tests/results/test/60_6family_dynamic_leadership_empty.html
index 8706cdff1..f82284fac 100644
--- a/tests/results/test/60_6family_dynamic_leadership_empty.html
+++ b/tests/results/test/60_6family_dynamic_leadership_empty.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (var).
A leadership
diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.json b/tests/results/test/60_6family_dynamic_leadership_empty.json
index add5dbeaf..9ee5dff49 100644
--- a/tests/results/test/60_6family_dynamic_leadership_empty.json
+++ b/tests/results/test/60_6family_dynamic_leadership_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.md b/tests/results/test/60_6family_dynamic_leadership_empty.md
index 85a8e14b9..85dd397c8 100644
--- a/tests/results/test/60_6family_dynamic_leadership_empty.md
+++ b/tests/results/test/60_6family_dynamic_leadership_empty.md
@@ -11,7 +11,7 @@
> - dyn*val1*
> - dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#var)" (var).
## A leadership
diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.sh b/tests/results/test/60_6family_dynamic_leadership_empty.sh
index 385b6a959..08e2043e7 100644
--- a/tests/results/test/60_6family_dynamic_leadership_empty.sh
+++ b/tests/results/test/60_6family_dynamic_leadership_empty.sh
@@ -8,24 +8,24 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mvar[1m)[0m.
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m.leadership
-[34mβ [0m β’ dyn[3mval2[0m.leadership
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m.leadership
+[34mβ [0m β’ dyn[3mval2[0m.leadership
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/60_9family_dynamic_calc_both.adoc b/tests/results/test/60_9family_dynamic_calc_both.adoc
index 1a6cd10c3..b062ca265 100644
--- a/tests/results/test/60_9family_dynamic_calc_both.adoc
+++ b/tests/results/test/60_9family_dynamic_calc_both.adoc
@@ -20,7 +20,7 @@ This family builds families dynamically. +
**Identifiers**:
* val1
-* the value of the variable "a suffix variable"
+* the value of the variable "a suffix variable" (var)
====
[cols="1a,1a"]
|====
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 b4b222047..f5d8aac92 100644
--- a/tests/results/test/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test/60_9family_dynamic_calc_both.gitlab.md
@@ -12,7 +12,7 @@
> `basic`\
> **Identifiers**:
> - val1
-> - the value of the variable "[a suffix variable](#var)"
+> - the value of the variable "[a suffix variable](#var)" (var)
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test/60_9family_dynamic_calc_both.html b/tests/results/test/60_9family_dynamic_calc_both.html
index 28d5032a8..386dd0478 100644
--- a/tests/results/test/60_9family_dynamic_calc_both.html
+++ b/tests/results/test/60_9family_dynamic_calc_both.html
@@ -17,7 +17,7 @@ This family builds families dynamically.
basic
Identifiers: - val1
-- the value of the variable "a suffix variable"
+the value of the variable "a suffix variable" (var)
diff --git a/tests/results/test/60_9family_dynamic_calc_both.json b/tests/results/test/60_9family_dynamic_calc_both.json
index 8f18c2b6b..b96078105 100644
--- a/tests/results/test/60_9family_dynamic_calc_both.json
+++ b/tests/results/test/60_9family_dynamic_calc_both.json
@@ -41,7 +41,7 @@
"identifier": [
"val1",
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test/60_9family_dynamic_calc_both.md b/tests/results/test/60_9family_dynamic_calc_both.md
index 199498a96..ef7db3608 100644
--- a/tests/results/test/60_9family_dynamic_calc_both.md
+++ b/tests/results/test/60_9family_dynamic_calc_both.md
@@ -13,7 +13,7 @@
> `basic`\
> **Identifiers**:
> - val1
-> - the value of the variable "[a suffix variable](#var)"
+> - the value of the variable "[a suffix variable](#var)" (var)
| Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test/60_9family_dynamic_calc_both.sh b/tests/results/test/60_9family_dynamic_calc_both.sh
index 458a72b9d..a176ddb67 100644
--- a/tests/results/test/60_9family_dynamic_calc_both.sh
+++ b/tests/results/test/60_9family_dynamic_calc_both.sh
@@ -6,16 +6,16 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ dyn[3mval1[0m
-[34mβ [0m β’ dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ val1
-[34mβ [0m β’ the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ dyn[3mval1[0m
+[34mβ [0m β’ dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ val1
+[34mβ [0m β’ the value of the variable [32m"a suffix variable"[0m [1m([0mvar[1m)[0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test/68_0family_leadership_mode.sh b/tests/results/test/68_0family_leadership_mode.sh
index 8029b1c46..575df8b08 100644
--- a/tests/results/test/68_0family_leadership_mode.sh
+++ b/tests/results/test/68_0family_leadership_mode.sh
@@ -1,10 +1,10 @@
[1;4;96mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_0version_underscore.sh b/tests/results/test_namespace/00_0version_underscore.sh
index 5cd728d7e..953cab4f5 100644
--- a/tests/results/test_namespace/00_0version_underscore.sh
+++ b/tests/results/test_namespace/00_0version_underscore.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_1empty_variable.sh b/tests/results/test_namespace/00_1empty_variable.sh
index 2e01b8570..efe99d0c5 100644
--- a/tests/results/test_namespace/00_1empty_variable.sh
+++ b/tests/results/test_namespace/00_1empty_variable.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_2default_calculated.sh b/tests/results/test_namespace/00_2default_calculated.sh
index 9be6d8c7e..c91bc12a3 100644
--- a/tests/results/test_namespace/00_2default_calculated.sh
+++ b/tests/results/test_namespace/00_2default_calculated.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_2default_calculated_multi.adoc b/tests/results/test_namespace/00_2default_calculated_multi.adoc
index 965515c8b..7e947731a 100644
--- a/tests/results/test_namespace/00_2default_calculated_multi.adoc
+++ b/tests/results/test_namespace/00_2default_calculated_multi.adoc
@@ -19,6 +19,6 @@ This family is a namespace. +
* maybe
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A second variable. +
-**Default**: the value of "a first variable".
+**Default**: the value of "a first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md
index ed1c5dd0f..b7ecac9cb 100644
--- a/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#rougail.var1)". |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_2default_calculated_multi.html b/tests/results/test_namespace/00_2default_calculated_multi.html
index 06b76f6e6..876bd772e 100644
--- a/tests/results/test_namespace/00_2default_calculated_multi.html
+++ b/tests/results/test_namespace/00_2default_calculated_multi.html
@@ -8,13 +8,13 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A first variable. Default: |
-rougail.var2 string multiple standard mandatory unique | A second variable. Default: the value of "a first variable". |
+maybe
+rougail.var2 string multiple standard mandatory unique | A second variable. Default: the value of "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_2default_calculated_multi.json b/tests/results/test_namespace/00_2default_calculated_multi.json
index 415cef3e2..200a0bf41 100644
--- a/tests/results/test_namespace/00_2default_calculated_multi.json
+++ b/tests/results/test_namespace/00_2default_calculated_multi.json
@@ -66,7 +66,7 @@
"default": {
"name": "Default",
"values": {
- "description": "the value of \"{0}\".",
+ "description": "the value of {0}.",
"variables": [
{
"path": "rougail.var1",
diff --git a/tests/results/test_namespace/00_2default_calculated_multi.md b/tests/results/test_namespace/00_2default_calculated_multi.md
index c47469a32..5896cbc94 100644
--- a/tests/results/test_namespace/00_2default_calculated_multi.md
+++ b/tests/results/test_namespace/00_2default_calculated_multi.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#rougail.var1)". |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_2default_calculated_multi.sh b/tests/results/test_namespace/00_2default_calculated_multi.sh
index 6527d53f0..0e5fe3eaa 100644
--- a/tests/results/test_namespace/00_2default_calculated_multi.sh
+++ b/tests/results/test_namespace/00_2default_calculated_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -17,6 +17,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of "a first β
-β [1;7mmandatory [0m [1;7m unique [0m β variable". β
+β [1;7mmandatory [0m [1;7m unique [0m β variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/00_2default_calculated_params_permissive.sh b/tests/results/test_namespace/00_2default_calculated_params_permissive.sh
index efe56c282..4bd816a98 100644
--- a/tests/results/test_namespace/00_2default_calculated_params_permissive.sh
+++ b/tests/results/test_namespace/00_2default_calculated_params_permissive.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_2default_calculated_variable.adoc b/tests/results/test_namespace/00_2default_calculated_variable.adoc
index 61e6212f1..e7d57a677 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable.adoc
+++ b/tests/results/test_namespace/00_2default_calculated_variable.adoc
@@ -19,6 +19,6 @@ This family is a namespace. +
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `multiple` `standard` `mandatory` `unique` | A second variable. +
**Validator**: type domainname +
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (rougail.var1).
|====
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 9dfd982cb..3529a7868 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_2default_calculated_variable.html b/tests/results/test_namespace/00_2default_calculated_variable.html
index 6e9efae33..24deac540 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable.html
+++ b/tests/results/test_namespace/00_2default_calculated_variable.html
@@ -8,12 +8,12 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
rougail.var1 domainname multiple basic mandatory unique | A first variable. Validators: - type domainname
-- the domain name can be an IP
|
-rougail.var2 domainname multiple standard mandatory unique | A second variable. Validator: type domainname Default: the value of the variable "a first variable" |
+the domain name can be an IP
+rougail.var2 domainname multiple standard mandatory unique | A second variable. Validator: type domainname Default: the value of the variable "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_2default_calculated_variable.json b/tests/results/test_namespace/00_2default_calculated_variable.json
index b6c9d3eef..65953f63e 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable.json
+++ b/tests/results/test_namespace/00_2default_calculated_variable.json
@@ -65,7 +65,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace/00_2default_calculated_variable.md b/tests/results/test_namespace/00_2default_calculated_variable.md
index 005527ca9..6007abb32 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable.md
+++ b/tests/results/test_namespace/00_2default_calculated_variable.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_2default_calculated_variable.sh b/tests/results/test_namespace/00_2default_calculated_variable.sh
index 1db25a994..b0fb832c4 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable.sh
+++ b/tests/results/test_namespace/00_2default_calculated_variable.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -17,6 +17,6 @@
β [1mrougail.var2[0m β A second variable. β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mValidator[0m: type domainname β
β [1;7mmandatory [0m [1;7m unique [0m β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description.sh b/tests/results/test_namespace/00_2default_calculated_variable_description.sh
index ef1a1c7ad..f2ce37c6e 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable_description.sh
+++ b/tests/results/test_namespace/00_2default_calculated_variable_description.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.sh
index aefabdc07..bc32f5841 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.sh
+++ b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_transitive.adoc b/tests/results/test_namespace/00_2default_calculated_variable_transitive.adoc
index e9a547a36..6bff90e48 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.adoc
+++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.adoc
@@ -23,6 +23,6 @@ This family is a namespace. +
* type domainname
* the domain name can be an IP
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (rougail.var1).
|====
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 81ae80586..39f9165dc 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
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_transitive.html b/tests/results/test_namespace/00_2default_calculated_variable_transitive.html
index 6fab2c893..f9280abcf 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.html
+++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.html
@@ -14,7 +14,7 @@ This family is a namespace.
rougail.var1 domainname multiple basic mandatory unique | A first variable. Validators: - type domainname
- the domain name can be an IP
|
rougail.var2 domainname multiple standard mandatory unique | A second variable. Validators: - type domainname
-- the domain name can be an IP
Default: the value of the variable "a first variable" |
+the domain name can be an IP
Default: the value of the variable "a first variable" (rougail.var1).
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_transitive.json b/tests/results/test_namespace/00_2default_calculated_variable_transitive.json
index 5e31ae7d4..b32a58ea8 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.json
+++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.json
@@ -65,7 +65,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_transitive.md b/tests/results/test_namespace/00_2default_calculated_variable_transitive.md
index 1f30670d7..7bc6c2a9c 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.md
+++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace/00_2default_calculated_variable_transitive.sh
index fee438f23..09b0dbe97 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.sh
+++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -19,6 +19,6 @@
β [1;7mmandatory [0m [1;7m unique [0m β β’ type domainname β
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/00_4load_subfolder.sh b/tests/results/test_namespace/00_4load_subfolder.sh
index e5917e9e0..2a9bb33ed 100644
--- a/tests/results/test_namespace/00_4load_subfolder.sh
+++ b/tests/results/test_namespace/00_4load_subfolder.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_5load_notype.sh b/tests/results/test_namespace/00_5load_notype.sh
index 23993fd4d..704a4bbce 100644
--- a/tests/results/test_namespace/00_5load_notype.sh
+++ b/tests/results/test_namespace/00_5load_notype.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6boolean.sh b/tests/results/test_namespace/00_6boolean.sh
index 0772238fe..c17d43196 100644
--- a/tests/results/test_namespace/00_6boolean.sh
+++ b/tests/results/test_namespace/00_6boolean.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6boolean_no_mandatory.sh b/tests/results/test_namespace/00_6boolean_no_mandatory.sh
index 1dbe2bd91..fd6d92f78 100644
--- a/tests/results/test_namespace/00_6boolean_no_mandatory.sh
+++ b/tests/results/test_namespace/00_6boolean_no_mandatory.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6choice.sh b/tests/results/test_namespace/00_6choice.sh
index bcec42ccd..448b7a0fc 100644
--- a/tests/results/test_namespace/00_6choice.sh
+++ b/tests/results/test_namespace/00_6choice.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6choice_calculation.sh b/tests/results/test_namespace/00_6choice_calculation.sh
index 37c51ac96..ba76761ab 100644
--- a/tests/results/test_namespace/00_6choice_calculation.sh
+++ b/tests/results/test_namespace/00_6choice_calculation.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6choice_link.adoc b/tests/results/test_namespace/00_6choice_link.adoc
index 6f7d79d44..ab0e5f152 100644
--- a/tests/results/test_namespace/00_6choice_link.adoc
+++ b/tests/results/test_namespace/00_6choice_link.adoc
@@ -25,6 +25,6 @@ This family is a namespace. +
* b
* c
-**Default**: the value of the variable "the first variable"
+**Default**: the value of the variable "the first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace/00_6choice_link.gitlab.md b/tests/results/test_namespace/00_6choice_link.gitlab.md
index 126094403..cfd468890 100644
--- a/tests/results/test_namespace/00_6choice_link.gitlab.md
+++ b/tests/results/test_namespace/00_6choice_link.gitlab.md
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 "[the first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[the first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_6choice_link.html b/tests/results/test_namespace/00_6choice_link.html
index 814d382a7..2a3acfa95 100644
--- a/tests/results/test_namespace/00_6choice_link.html
+++ b/tests/results/test_namespace/00_6choice_link.html
@@ -16,7 +16,7 @@ This family is a namespace.
c
rougail.var2 choice standard mandatory | The second variable. Choices: Default: the value of the variable "the first variable" |
+c
Default: the value of the variable "the first variable" (rougail.var1).
diff --git a/tests/results/test_namespace/00_6choice_link.json b/tests/results/test_namespace/00_6choice_link.json
index 4ce556f8e..440cfae56 100644
--- a/tests/results/test_namespace/00_6choice_link.json
+++ b/tests/results/test_namespace/00_6choice_link.json
@@ -53,7 +53,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace/00_6choice_link.md b/tests/results/test_namespace/00_6choice_link.md
index 0d65e7ec6..95792d8f0 100644
--- a/tests/results/test_namespace/00_6choice_link.md
+++ b/tests/results/test_namespace/00_6choice_link.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 "[the first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[the first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_6choice_link.sh b/tests/results/test_namespace/00_6choice_link.sh
index d76963197..acdf974c3 100644
--- a/tests/results/test_namespace/00_6choice_link.sh
+++ b/tests/results/test_namespace/00_6choice_link.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -21,6 +21,6 @@
β β β’ b β
β β β’ c β
β β [1mDefault[0m: the value of the variable β
-β β "the first variable" β
+β β "the first variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/00_6choice_variable.adoc b/tests/results/test_namespace/00_6choice_variable.adoc
index 84b218690..edeae4c84 100644
--- a/tests/results/test_namespace/00_6choice_variable.adoc
+++ b/tests/results/test_namespace/00_6choice_variable.adoc
@@ -19,7 +19,7 @@ This family is a namespace. +
* c
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
**Default**: a
|====
diff --git a/tests/results/test_namespace/00_6choice_variable.gitlab.md b/tests/results/test_namespace/00_6choice_variable.gitlab.md
index 18bed9999..f6e75e46e 100644
--- a/tests/results/test_namespace/00_6choice_variable.gitlab.md
+++ b/tests/results/test_namespace/00_6choice_variable.gitlab.md
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: a |
diff --git a/tests/results/test_namespace/00_6choice_variable.html b/tests/results/test_namespace/00_6choice_variable.html
index 1f3fcf8ea..a6ba24f45 100644
--- a/tests/results/test_namespace/00_6choice_variable.html
+++ b/tests/results/test_namespace/00_6choice_variable.html
@@ -8,13 +8,13 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A second variable. Default: |
-rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
+c
+rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: a |
diff --git a/tests/results/test_namespace/00_6choice_variable.json b/tests/results/test_namespace/00_6choice_variable.json
index f1ae76582..004741d5f 100644
--- a/tests/results/test_namespace/00_6choice_variable.json
+++ b/tests/results/test_namespace/00_6choice_variable.json
@@ -65,7 +65,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace/00_6choice_variable.md b/tests/results/test_namespace/00_6choice_variable.md
index b4480de86..033bd8198 100644
--- a/tests/results/test_namespace/00_6choice_variable.md
+++ b/tests/results/test_namespace/00_6choice_variable.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: a |
diff --git a/tests/results/test_namespace/00_6choice_variable.sh b/tests/results/test_namespace/00_6choice_variable.sh
index 5ce085b3c..a4746ef17 100644
--- a/tests/results/test_namespace/00_6choice_variable.sh
+++ b/tests/results/test_namespace/00_6choice_variable.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -17,7 +17,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/00_6choice_variable_link.adoc b/tests/results/test_namespace/00_6choice_variable_link.adoc
index e854e4fa7..869fa8dd1 100644
--- a/tests/results/test_namespace/00_6choice_variable_link.adoc
+++ b/tests/results/test_namespace/00_6choice_variable_link.adoc
@@ -19,11 +19,11 @@ This family is a namespace. +
* c
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
**Default**: a
| **rougail.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
-**Choices**: the value of the variable "a second variable" +
-**Default**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
+**Default**: the value of the variable "a first variable" (rougail.var2).
|====
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 a0af28066..bb8914632 100644
--- a/tests/results/test_namespace/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_namespace/00_6choice_variable_link.gitlab.md
@@ -5,11 +5,11 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second 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 "[a second variable](#rougail.var1)"
**Default**: the value of the variable "[a first variable](#rougail.var2)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: the value of the variable "[a first variable](#rougail.var2)" (rougail.var2). |
diff --git a/tests/results/test_namespace/00_6choice_variable_link.html b/tests/results/test_namespace/00_6choice_variable_link.html
index 99da98c11..1ea11c381 100644
--- a/tests/results/test_namespace/00_6choice_variable_link.html
+++ b/tests/results/test_namespace/00_6choice_variable_link.html
@@ -8,14 +8,14 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A second variable. Default: |
-rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
-rougail.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" Default: the value of the variable "a first variable" |
+c
+rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: a |
+rougail.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: the value of the variable "a first variable" (rougail.var2). |
diff --git a/tests/results/test_namespace/00_6choice_variable_link.json b/tests/results/test_namespace/00_6choice_variable_link.json
index 11549210f..a13fa3851 100644
--- a/tests/results/test_namespace/00_6choice_variable_link.json
+++ b/tests/results/test_namespace/00_6choice_variable_link.json
@@ -65,7 +65,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -91,7 +91,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var2",
"type": "variable"
@@ -103,7 +103,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace/00_6choice_variable_link.md b/tests/results/test_namespace/00_6choice_variable_link.md
index 32691374b..8be424f9b 100644
--- a/tests/results/test_namespace/00_6choice_variable_link.md
+++ b/tests/results/test_namespace/00_6choice_variable_link.md
@@ -6,9 +6,9 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second 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 "[a second variable](#rougail.var1)"
**Default**: the value of the variable "[a first variable](#rougail.var2)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: the value of the variable "[a first variable](#rougail.var2)" (rougail.var2). |
diff --git a/tests/results/test_namespace/00_6choice_variable_link.sh b/tests/results/test_namespace/00_6choice_variable_link.sh
index 765057564..4ec4452cb 100644
--- a/tests/results/test_namespace/00_6choice_variable_link.sh
+++ b/tests/results/test_namespace/00_6choice_variable_link.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -17,13 +17,13 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var3[0m β A third variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var2). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/00_6choice_variable_link2.adoc b/tests/results/test_namespace/00_6choice_variable_link2.adoc
index c8f86b3e7..5c2910e00 100644
--- a/tests/results/test_namespace/00_6choice_variable_link2.adoc
+++ b/tests/results/test_namespace/00_6choice_variable_link2.adoc
@@ -19,7 +19,7 @@ This family is a namespace. +
* c
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
**Default**: a
|====
@@ -36,7 +36,7 @@ This family is a namespace. +
| Variable | Description
| **rougail.family.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
-**Choices**: the value of the variable "a second variable" +
-**Default**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
+**Default**: the value of the variable "a first variable" (rougail.var2).
|====
diff --git a/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md
index a514cf5bb..9e3e60de6 100644
--- a/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: a |
family
@@ -16,9 +16,9 @@
> **Path**: rougail.family\
> `standard`
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 "[a second variable](#rougail.var1)"
**Default**: the value of the variable "[a first variable](#rougail.var2)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: the value of the variable "[a first variable](#rougail.var2)" (rougail.var2). |
diff --git a/tests/results/test_namespace/00_6choice_variable_link2.html b/tests/results/test_namespace/00_6choice_variable_link2.html
index ffc0a5ace..965bb42ac 100644
--- a/tests/results/test_namespace/00_6choice_variable_link2.html
+++ b/tests/results/test_namespace/00_6choice_variable_link2.html
@@ -8,13 +8,13 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A second variable. Default: |
-rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
+c
+rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: a |
@@ -26,10 +26,10 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.family.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" Default: the value of the variable "a first variable" |
+rougail.family.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: the value of the variable "a first variable" (rougail.var2). |
diff --git a/tests/results/test_namespace/00_6choice_variable_link2.json b/tests/results/test_namespace/00_6choice_variable_link2.json
index 0bd529529..b91726056 100644
--- a/tests/results/test_namespace/00_6choice_variable_link2.json
+++ b/tests/results/test_namespace/00_6choice_variable_link2.json
@@ -65,7 +65,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -100,7 +100,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var2",
"type": "variable"
@@ -112,7 +112,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace/00_6choice_variable_link2.md b/tests/results/test_namespace/00_6choice_variable_link2.md
index e56b2d884..bf4270f8c 100644
--- a/tests/results/test_namespace/00_6choice_variable_link2.md
+++ b/tests/results/test_namespace/00_6choice_variable_link2.md
@@ -6,10 +6,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: a |
## family
@@ -18,7 +18,7 @@
> **Path**: rougail.family\
> `standard`
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 "[a second variable](#rougail.var1)"
**Default**: the value of the variable "[a first variable](#rougail.var2)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: the value of the variable "[a first variable](#rougail.var2)" (rougail.var2). |
diff --git a/tests/results/test_namespace/00_6choice_variable_link2.sh b/tests/results/test_namespace/00_6choice_variable_link2.sh
index aa967523c..e62d46e27 100644
--- a/tests/results/test_namespace/00_6choice_variable_link2.sh
+++ b/tests/results/test_namespace/00_6choice_variable_link2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -17,24 +17,24 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mfamily[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.family.var3[0m β A third variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var2). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/00_6custom.sh b/tests/results/test_namespace/00_6custom.sh
index 6bc9681f4..4cd26bd86 100644
--- a/tests/results/test_namespace/00_6custom.sh
+++ b/tests/results/test_namespace/00_6custom.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6domainname.sh b/tests/results/test_namespace/00_6domainname.sh
index e868bc6a1..f84b0e398 100644
--- a/tests/results/test_namespace/00_6domainname.sh
+++ b/tests/results/test_namespace/00_6domainname.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6domainname_params.sh b/tests/results/test_namespace/00_6domainname_params.sh
index c7abd195c..90771b1b6 100644
--- a/tests/results/test_namespace/00_6domainname_params.sh
+++ b/tests/results/test_namespace/00_6domainname_params.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6float.sh b/tests/results/test_namespace/00_6float.sh
index c6b647f73..d1844bd30 100644
--- a/tests/results/test_namespace/00_6float.sh
+++ b/tests/results/test_namespace/00_6float.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6integer.sh b/tests/results/test_namespace/00_6integer.sh
index a79eda067..1fd4b515b 100644
--- a/tests/results/test_namespace/00_6integer.sh
+++ b/tests/results/test_namespace/00_6integer.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6ip.sh b/tests/results/test_namespace/00_6ip.sh
index 840f01e1e..4d94ac5fd 100644
--- a/tests/results/test_namespace/00_6ip.sh
+++ b/tests/results/test_namespace/00_6ip.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6network.sh b/tests/results/test_namespace/00_6network.sh
index 624cd4108..7b50db0f0 100644
--- a/tests/results/test_namespace/00_6network.sh
+++ b/tests/results/test_namespace/00_6network.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6number.sh b/tests/results/test_namespace/00_6number.sh
index a79eda067..1fd4b515b 100644
--- a/tests/results/test_namespace/00_6number.sh
+++ b/tests/results/test_namespace/00_6number.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6port.sh b/tests/results/test_namespace/00_6port.sh
index 620f6ff5b..4328f1f58 100644
--- a/tests/results/test_namespace/00_6port.sh
+++ b/tests/results/test_namespace/00_6port.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6regexp.sh b/tests/results/test_namespace/00_6regexp.sh
index 390f871d5..50ff0b01c 100644
--- a/tests/results/test_namespace/00_6regexp.sh
+++ b/tests/results/test_namespace/00_6regexp.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6regexp_link.adoc b/tests/results/test_namespace/00_6regexp_link.adoc
index 726c2ef02..d0303338b 100644
--- a/tests/results/test_namespace/00_6regexp_link.adoc
+++ b/tests/results/test_namespace/00_6regexp_link.adoc
@@ -21,7 +21,7 @@ This family is a namespace. +
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. +
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
-**Default**: the value of the variable "a first variable" +
+**Default**: the value of the variable "a first variable" (rougail.var1). +
**Examples**:
* '#b2b1b1'
diff --git a/tests/results/test_namespace/00_6regexp_link.gitlab.md b/tests/results/test_namespace/00_6regexp_link.gitlab.md
index 2edf0a20d..b95ce41c5 100644
--- a/tests/results/test_namespace/00_6regexp_link.gitlab.md
+++ b/tests/results/test_namespace/00_6regexp_link.gitlab.md
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 "[a first variable](#rougail.var1)"
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1).
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
diff --git a/tests/results/test_namespace/00_6regexp_link.html b/tests/results/test_namespace/00_6regexp_link.html
index 13b57e726..5aeb4507e 100644
--- a/tests/results/test_namespace/00_6regexp_link.html
+++ b/tests/results/test_namespace/00_6regexp_link.html
@@ -13,7 +13,7 @@ This family is a namespace.
rougail.var1 regexp standard mandatory | A first variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: #a1a1a1 Examples: |
-rougail.var2 regexp standard mandatory | A second variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: the value of the variable "a first variable" Examples: - '#b2b1b1'
+rougail.var2 regexp standard mandatory | A second variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: the value of the variable "a first variable" (rougail.var1). Examples: |
|
diff --git a/tests/results/test_namespace/00_6regexp_link.json b/tests/results/test_namespace/00_6regexp_link.json
index ef4783eae..327f4a832 100644
--- a/tests/results/test_namespace/00_6regexp_link.json
+++ b/tests/results/test_namespace/00_6regexp_link.json
@@ -60,7 +60,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace/00_6regexp_link.md b/tests/results/test_namespace/00_6regexp_link.md
index 1aae5add7..015b1abb8 100644
--- a/tests/results/test_namespace/00_6regexp_link.md
+++ b/tests/results/test_namespace/00_6regexp_link.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 "[a first variable](#rougail.var1)"
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1).
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
diff --git a/tests/results/test_namespace/00_6regexp_link.sh b/tests/results/test_namespace/00_6regexp_link.sh
index 9d6d9e509..ea30c3f88 100644
--- a/tests/results/test_namespace/00_6regexp_link.sh
+++ b/tests/results/test_namespace/00_6regexp_link.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -23,7 +23,7 @@
β β expressions β
β β "^#(?:[0-9a-f]{3}){1,2}$" β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var1). β
β β [1mExamples[0m: β
β β β’ #b2b1b1 β
β β β’ #b3b2b2 β
diff --git a/tests/results/test_namespace/00_6secret.sh b/tests/results/test_namespace/00_6secret.sh
index 9a32e8af2..04690702c 100644
--- a/tests/results/test_namespace/00_6secret.sh
+++ b/tests/results/test_namespace/00_6secret.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6secret_param.sh b/tests/results/test_namespace/00_6secret_param.sh
index f48d81337..d2d83540a 100644
--- a/tests/results/test_namespace/00_6secret_param.sh
+++ b/tests/results/test_namespace/00_6secret_param.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_6string.sh b/tests/results/test_namespace/00_6string.sh
index b07541852..1b950e9bc 100644
--- a/tests/results/test_namespace/00_6string.sh
+++ b/tests/results/test_namespace/00_6string.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_7choice_quote.sh b/tests/results/test_namespace/00_7choice_quote.sh
index f194ada12..0e686a45b 100644
--- a/tests/results/test_namespace/00_7choice_quote.sh
+++ b/tests/results/test_namespace/00_7choice_quote.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_7help.sh b/tests/results/test_namespace/00_7help.sh
index 6629836f5..4bceef9ba 100644
--- a/tests/results/test_namespace/00_7help.sh
+++ b/tests/results/test_namespace/00_7help.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_7help_quote.sh b/tests/results/test_namespace/00_7help_quote.sh
index 552f6608d..6205051b1 100644
--- a/tests/results/test_namespace/00_7help_quote.sh
+++ b/tests/results/test_namespace/00_7help_quote.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_7help_sup.sh b/tests/results/test_namespace/00_7help_sup.sh
index 23e5088ae..3e4dc07a6 100644
--- a/tests/results/test_namespace/00_7help_sup.sh
+++ b/tests/results/test_namespace/00_7help_sup.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_7value_doublequote.sh b/tests/results/test_namespace/00_7value_doublequote.sh
index a8ebe7439..cb6880b29 100644
--- a/tests/results/test_namespace/00_7value_doublequote.sh
+++ b/tests/results/test_namespace/00_7value_doublequote.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_7value_doublequote2.sh b/tests/results/test_namespace/00_7value_doublequote2.sh
index a1cc78e28..2674d9727 100644
--- a/tests/results/test_namespace/00_7value_doublequote2.sh
+++ b/tests/results/test_namespace/00_7value_doublequote2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_7value_doublequote3.sh b/tests/results/test_namespace/00_7value_doublequote3.sh
index 91a39b378..74a46a544 100644
--- a/tests/results/test_namespace/00_7value_doublequote3.sh
+++ b/tests/results/test_namespace/00_7value_doublequote3.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_7value_quote.sh b/tests/results/test_namespace/00_7value_quote.sh
index a408ba033..582f88d0e 100644
--- a/tests/results/test_namespace/00_7value_quote.sh
+++ b/tests/results/test_namespace/00_7value_quote.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_8calculation_information.sh b/tests/results/test_namespace/00_8calculation_information.sh
index c13af8103..e87539e1b 100644
--- a/tests/results/test_namespace/00_8calculation_information.sh
+++ b/tests/results/test_namespace/00_8calculation_information.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_8calculation_namespace.sh b/tests/results/test_namespace/00_8calculation_namespace.sh
index f67cb0f52..c0b2b5905 100644
--- a/tests/results/test_namespace/00_8calculation_namespace.sh
+++ b/tests/results/test_namespace/00_8calculation_namespace.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_8calculation_param_namespace.sh b/tests/results/test_namespace/00_8calculation_param_namespace.sh
index 5ffd43d53..078735468 100644
--- a/tests/results/test_namespace/00_8calculation_param_namespace.sh
+++ b/tests/results/test_namespace/00_8calculation_param_namespace.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_8test.sh b/tests/results/test_namespace/00_8test.sh
index 62cd4a1c8..0d560474e 100644
--- a/tests/results/test_namespace/00_8test.sh
+++ b/tests/results/test_namespace/00_8test.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_9choice_variable_multi.sh b/tests/results/test_namespace/00_9choice_variable_multi.sh
index 644d3c90e..be7592617 100644
--- a/tests/results/test_namespace/00_9choice_variable_multi.sh
+++ b/tests/results/test_namespace/00_9choice_variable_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_9choice_variables.adoc b/tests/results/test_namespace/00_9choice_variables.adoc
index 1362950a0..0152c9a1f 100644
--- a/tests/results/test_namespace/00_9choice_variables.adoc
+++ b/tests/results/test_namespace/00_9choice_variables.adoc
@@ -20,8 +20,8 @@ This family is a namespace. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
**Choices**:
-* the value of the variable "the first source variable"
-* the value of the variable "the second source variable"
+* the value of the variable "the first source variable" (rougail.source_variable_1)
+* the value of the variable "the second source variable" (rougail.source_variable_2)
**Default**: val1
|====
diff --git a/tests/results/test_namespace/00_9choice_variables.gitlab.md b/tests/results/test_namespace/00_9choice_variables.gitlab.md
index c8d19137d..7a31f6247 100644
--- a/tests/results/test_namespace/00_9choice_variables.gitlab.md
+++ b/tests/results/test_namespace/00_9choice_variables.gitlab.md
@@ -5,11 +5,11 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
-| **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 "[the first source variable](#rougail.source_variable_1)"
β’ the value of the variable "[the second source variable](#rougail.source_variable_2)"
**Default**: val1 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
+| **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 "[the first source variable](#rougail.source_variable_1)" (rougail.source_variable_1)
β’ the value of the variable "[the second source variable](#rougail.source_variable_2)" (rougail.source_variable_2)
**Default**: val1 |
diff --git a/tests/results/test_namespace/00_9choice_variables.html b/tests/results/test_namespace/00_9choice_variables.html
index 7b34ed416..7ed0986fa 100644
--- a/tests/results/test_namespace/00_9choice_variables.html
+++ b/tests/results/test_namespace/00_9choice_variables.html
@@ -13,8 +13,8 @@ This family is a namespace.
rougail.source_variable_1 string standard mandatory | The first source variable. Default: val1 |
rougail.source_variable_2 string standard mandatory | The second source variable. Default: val2 |
-rougail.my_variable choice standard mandatory | A variable. Choices: - the value of the variable "the first source variable"
-- the value of the variable "the second source variable"
Default: val1 |
+rougail.my_variable choice standard mandatory | A variable. Choices: - the value of the variable "the first source variable" (rougail.source_variable_1)
+- the value of the variable "the second source variable" (rougail.source_variable_2)
Default: val1 |
diff --git a/tests/results/test_namespace/00_9choice_variables.json b/tests/results/test_namespace/00_9choice_variables.json
index 73e39747b..1c5c4493c 100644
--- a/tests/results/test_namespace/00_9choice_variables.json
+++ b/tests/results/test_namespace/00_9choice_variables.json
@@ -75,7 +75,7 @@
"name": "Choices",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.source_variable_1",
"type": "variable"
@@ -83,7 +83,7 @@
"description": "the first source variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.source_variable_2",
"type": "variable"
diff --git a/tests/results/test_namespace/00_9choice_variables.md b/tests/results/test_namespace/00_9choice_variables.md
index 8b3fed555..6f7cdf714 100644
--- a/tests/results/test_namespace/00_9choice_variables.md
+++ b/tests/results/test_namespace/00_9choice_variables.md
@@ -6,9 +6,9 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
-| **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 "[the first source variable](#rougail.source_variable_1)"
β’ the value of the variable "[the second source variable](#rougail.source_variable_2)"
**Default**: val1 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
+| **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 "[the first source variable](#rougail.source_variable_1)" (rougail.source_variable_1)
β’ the value of the variable "[the second source variable](#rougail.source_variable_2)" (rougail.source_variable_2)
**Default**: val1 |
diff --git a/tests/results/test_namespace/00_9choice_variables.sh b/tests/results/test_namespace/00_9choice_variables.sh
index f3b023265..bcdf9337c 100644
--- a/tests/results/test_namespace/00_9choice_variables.sh
+++ b/tests/results/test_namespace/00_9choice_variables.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -19,8 +19,10 @@
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
β β β’ the value of the variable "the β
β β first source variable" β
+β β (rougail.source_variable_1) β
β β β’ the value of the variable "the β
β β second source variable" β
+β β (rougail.source_variable_2) β
β β [1mDefault[0m: val1 β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/00_9default_calculation.sh b/tests/results/test_namespace/00_9default_calculation.sh
index 318747ac7..e9d66da89 100644
--- a/tests/results/test_namespace/00_9default_calculation.sh
+++ b/tests/results/test_namespace/00_9default_calculation.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_9default_calculation_information.sh b/tests/results/test_namespace/00_9default_calculation_information.sh
index c66d7b0a7..707f941d8 100644
--- a/tests/results/test_namespace/00_9default_calculation_information.sh
+++ b/tests/results/test_namespace/00_9default_calculation_information.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace/00_9default_calculation_information_other_variable.sh
index 3f367ec42..9ecd19709 100644
--- a/tests/results/test_namespace/00_9default_calculation_information_other_variable.sh
+++ b/tests/results/test_namespace/00_9default_calculation_information_other_variable.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional.adoc b/tests/results/test_namespace/00_9default_calculation_multi_optional.adoc
index 37b2dfee5..a933d8751 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional.adoc
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.adoc
@@ -15,6 +15,6 @@ This family is a namespace. +
| **rougail.my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (rougail.my_variable) if it is defined
|====
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 fabac714c..5a2eafac6 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
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional.html b/tests/results/test_namespace/00_9default_calculation_multi_optional.html
index 7d403ca5f..c4a72c629 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional.html
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.html
@@ -8,11 +8,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.my_variable string standard mandatory | Default: val1 |
-rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+rougail.my_variable string standard mandatory | Default: val1 |
+rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (rougail.my_variable) if it is defined
|
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional.json b/tests/results/test_namespace/00_9default_calculation_multi_optional.json
index a07869da6..a7bb3b3c0 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional.json
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.json
@@ -54,7 +54,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.my_variable",
"type": "variable"
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional.md b/tests/results/test_namespace/00_9default_calculation_multi_optional.md
index 0c14e62bb..70b2aff56 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional.md
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace/00_9default_calculation_multi_optional.sh
index 1891f2b88..efcaf2d7b 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional.sh
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,6 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.my_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (rougail.my_variable) β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional2.adoc b/tests/results/test_namespace/00_9default_calculation_multi_optional2.adoc
index 37b2dfee5..a933d8751 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.adoc
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.adoc
@@ -15,6 +15,6 @@ This family is a namespace. +
| **rougail.my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (rougail.my_variable) if it is defined
|====
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace/00_9default_calculation_multi_optional2.gitlab.md
index fabac714c..5a2eafac6 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
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional2.html b/tests/results/test_namespace/00_9default_calculation_multi_optional2.html
index 7d403ca5f..c4a72c629 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.html
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.html
@@ -8,11 +8,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.my_variable string standard mandatory | Default: val1 |
-rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+rougail.my_variable string standard mandatory | Default: val1 |
+rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (rougail.my_variable) if it is defined
|
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional2.json b/tests/results/test_namespace/00_9default_calculation_multi_optional2.json
index a07869da6..a7bb3b3c0 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.json
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.json
@@ -54,7 +54,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.my_variable",
"type": "variable"
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional2.md b/tests/results/test_namespace/00_9default_calculation_multi_optional2.md
index 0c14e62bb..70b2aff56 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.md
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace/00_9default_calculation_multi_optional2.sh
index 1891f2b88..efcaf2d7b 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.sh
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,6 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.my_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (rougail.my_variable) β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.adoc b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.adoc
index 37b2dfee5..a933d8751 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.adoc
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.adoc
@@ -15,6 +15,6 @@ This family is a namespace. +
| **rougail.my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (rougail.my_variable) if it is defined
|====
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.gitlab.md
index fabac714c..5a2eafac6 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
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.html b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.html
index 7d403ca5f..c4a72c629 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.html
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.html
@@ -8,11 +8,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.my_variable string standard mandatory | Default: val1 |
-rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+rougail.my_variable string standard mandatory | Default: val1 |
+rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (rougail.my_variable) if it is defined
|
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.json b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.json
index a07869da6..a7bb3b3c0 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.json
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.json
@@ -54,7 +54,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.my_variable",
"type": "variable"
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.md b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.md
index 0c14e62bb..70b2aff56 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.md
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.sh b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.sh
index 1891f2b88..efcaf2d7b 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.sh
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,6 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.my_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (rougail.my_variable) β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/00_9default_calculation_optional.sh b/tests/results/test_namespace/00_9default_calculation_optional.sh
index 430395e66..75ae736ca 100644
--- a/tests/results/test_namespace/00_9default_calculation_optional.sh
+++ b/tests/results/test_namespace/00_9default_calculation_optional.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_9default_calculation_optional_exists.adoc b/tests/results/test_namespace/00_9default_calculation_optional_exists.adoc
index 1c27ba2e4..17e3bb0e5 100644
--- a/tests/results/test_namespace/00_9default_calculation_optional_exists.adoc
+++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.adoc
@@ -9,13 +9,13 @@ This family is a namespace. +
====
[cols="1a,1a"]
|====
-| Variable | Description
+| Variable | Description
| **rougail.my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
* val1
-* val2
+* val2
| **rougail.my_calculated_variable** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "my_variable" if it is defined
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "my_variable" (rougail.my_variable) if it is defined.
|====
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 2398e9cd5..6a237b6cd 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
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined. |
diff --git a/tests/results/test_namespace/00_9default_calculation_optional_exists.html b/tests/results/test_namespace/00_9default_calculation_optional_exists.html
index fdb88244c..cc5696a20 100644
--- a/tests/results/test_namespace/00_9default_calculation_optional_exists.html
+++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.html
@@ -8,12 +8,12 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
rougail.my_variable string multiple standard mandatory unique | Default: |
-rougail.my_calculated_variable string multiple standard mandatory unique | Default: the value of the variable "my_variable" if it is defined |
+val2
+rougail.my_calculated_variable string multiple standard mandatory unique | Default: the value of the variable "my_variable" (rougail.my_variable) if it is defined. |
diff --git a/tests/results/test_namespace/00_9default_calculation_optional_exists.json b/tests/results/test_namespace/00_9default_calculation_optional_exists.json
index f8a7ecbd1..badcaf726 100644
--- a/tests/results/test_namespace/00_9default_calculation_optional_exists.json
+++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.json
@@ -63,7 +63,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined.",
"path": {
"path": "rougail.my_variable",
"type": "variable"
diff --git a/tests/results/test_namespace/00_9default_calculation_optional_exists.md b/tests/results/test_namespace/00_9default_calculation_optional_exists.md
index 72b343884..fc8ff1713 100644
--- a/tests/results/test_namespace/00_9default_calculation_optional_exists.md
+++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined. |
diff --git a/tests/results/test_namespace/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace/00_9default_calculation_optional_exists.sh
index c747582cd..da135e8df 100644
--- a/tests/results/test_namespace/00_9default_calculation_optional_exists.sh
+++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,7 +14,7 @@
β [1;7mmandatory [0m [1;7m unique [0m β β’ val2 β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.my_calculated_variable[0m β [1mDefault[0m: the value of the variable β
-β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "my_variable" if it is defined β
-β [1;7mmandatory [0m [1;7m unique [0m β β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "my_variable" (rougail.my_variable) β
+β [1;7mmandatory [0m [1;7m unique [0m β if it is defined. β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/00_9default_calculation_param_optional.sh b/tests/results/test_namespace/00_9default_calculation_param_optional.sh
index 2a570d375..99ac953a4 100644
--- a/tests/results/test_namespace/00_9default_calculation_param_optional.sh
+++ b/tests/results/test_namespace/00_9default_calculation_param_optional.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_9default_information_other_variable.adoc b/tests/results/test_namespace/00_9default_information_other_variable.adoc
index cf5c50abd..8f2ff4674 100644
--- a/tests/results/test_namespace/00_9default_information_other_variable.adoc
+++ b/tests/results/test_namespace/00_9default_information_other_variable.adoc
@@ -14,6 +14,6 @@ This family is a namespace. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "rougail.var1".
+**Default**: the value of the information "test_information" of the variable "a first variable" (rougail.var1).
|====
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 10b22e7fb..05ea2bafc 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
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_9default_information_other_variable.html b/tests/results/test_namespace/00_9default_information_other_variable.html
index 78725c4b4..bc46192e4 100644
--- a/tests/results/test_namespace/00_9default_information_other_variable.html
+++ b/tests/results/test_namespace/00_9default_information_other_variable.html
@@ -8,11 +8,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string basic mandatory | A first variable. |
-rougail.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "rougail.var1". |
+rougail.var1 string basic mandatory | A first variable. |
+rougail.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_9default_information_other_variable.json b/tests/results/test_namespace/00_9default_information_other_variable.json
index 70650e66a..12432ffc2 100644
--- a/tests/results/test_namespace/00_9default_information_other_variable.json
+++ b/tests/results/test_namespace/00_9default_information_other_variable.json
@@ -44,7 +44,15 @@
"type": "variable",
"default": {
"name": "Default",
- "values": "the value of the information \"test_information\" of the variable \"rougail.var1\"."
+ "values": {
+ "message": "the value of the information \"test_information\" of the variable {0}.",
+ "path": {
+ "type": "information",
+ "information": "test_information",
+ "path": "rougail.var1"
+ },
+ "description": "a first variable"
+ }
},
"variable_type": "string"
}
diff --git a/tests/results/test_namespace/00_9default_information_other_variable.md b/tests/results/test_namespace/00_9default_information_other_variable.md
index fb35d23de..5ee912463 100644
--- a/tests/results/test_namespace/00_9default_information_other_variable.md
+++ b/tests/results/test_namespace/00_9default_information_other_variable.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_9default_information_other_variable.sh b/tests/results/test_namespace/00_9default_information_other_variable.sh
index f831504a0..d374667ec 100644
--- a/tests/results/test_namespace/00_9default_information_other_variable.sh
+++ b/tests/results/test_namespace/00_9default_information_other_variable.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -15,6 +15,7 @@
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "rougail.var1". β
+β β the variable "a first variable" β
+β β (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/00_9default_information_other_variable2.adoc b/tests/results/test_namespace/00_9default_information_other_variable2.adoc
index cf5c50abd..8f2ff4674 100644
--- a/tests/results/test_namespace/00_9default_information_other_variable2.adoc
+++ b/tests/results/test_namespace/00_9default_information_other_variable2.adoc
@@ -14,6 +14,6 @@ This family is a namespace. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "rougail.var1".
+**Default**: the value of the information "test_information" of the variable "a first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace/00_9default_information_other_variable2.gitlab.md
index 10b22e7fb..05ea2bafc 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
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_9default_information_other_variable2.html b/tests/results/test_namespace/00_9default_information_other_variable2.html
index 78725c4b4..bc46192e4 100644
--- a/tests/results/test_namespace/00_9default_information_other_variable2.html
+++ b/tests/results/test_namespace/00_9default_information_other_variable2.html
@@ -8,11 +8,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string basic mandatory | A first variable. |
-rougail.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "rougail.var1". |
+rougail.var1 string basic mandatory | A first variable. |
+rougail.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_9default_information_other_variable2.json b/tests/results/test_namespace/00_9default_information_other_variable2.json
index 70650e66a..12432ffc2 100644
--- a/tests/results/test_namespace/00_9default_information_other_variable2.json
+++ b/tests/results/test_namespace/00_9default_information_other_variable2.json
@@ -44,7 +44,15 @@
"type": "variable",
"default": {
"name": "Default",
- "values": "the value of the information \"test_information\" of the variable \"rougail.var1\"."
+ "values": {
+ "message": "the value of the information \"test_information\" of the variable {0}.",
+ "path": {
+ "type": "information",
+ "information": "test_information",
+ "path": "rougail.var1"
+ },
+ "description": "a first variable"
+ }
},
"variable_type": "string"
}
diff --git a/tests/results/test_namespace/00_9default_information_other_variable2.md b/tests/results/test_namespace/00_9default_information_other_variable2.md
index fb35d23de..5ee912463 100644
--- a/tests/results/test_namespace/00_9default_information_other_variable2.md
+++ b/tests/results/test_namespace/00_9default_information_other_variable2.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace/00_9default_information_other_variable2.sh b/tests/results/test_namespace/00_9default_information_other_variable2.sh
index f831504a0..d374667ec 100644
--- a/tests/results/test_namespace/00_9default_information_other_variable2.sh
+++ b/tests/results/test_namespace/00_9default_information_other_variable2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -15,6 +15,7 @@
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "rougail.var1". β
+β β the variable "a first variable" β
+β β (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/00_9default_integer.sh b/tests/results/test_namespace/00_9default_integer.sh
index 2fb3c1549..f21d599f0 100644
--- a/tests/results/test_namespace/00_9default_integer.sh
+++ b/tests/results/test_namespace/00_9default_integer.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_9default_number.sh b/tests/results/test_namespace/00_9default_number.sh
index 2fb3c1549..f21d599f0 100644
--- a/tests/results/test_namespace/00_9default_number.sh
+++ b/tests/results/test_namespace/00_9default_number.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_9extra.sh b/tests/results/test_namespace/00_9extra.sh
index c5b16e1a3..9992d108b 100644
--- a/tests/results/test_namespace/00_9extra.sh
+++ b/tests/results/test_namespace/00_9extra.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -15,11 +15,11 @@
[1;4;96mExtra[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: extra
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: extra
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/00_9extra_calculation.adoc b/tests/results/test_namespace/00_9extra_calculation.adoc
index af438e480..eae8d30e6 100644
--- a/tests/results/test_namespace/00_9extra_calculation.adoc
+++ b/tests/results/test_namespace/00_9extra_calculation.adoc
@@ -29,7 +29,7 @@ This family is a namespace. +
| Variable | Description
| **extra.variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (rougail.variable).
| **extra.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
**Default**: copy the value of rougail.variable.
diff --git a/tests/results/test_namespace/00_9extra_calculation.gitlab.md b/tests/results/test_namespace/00_9extra_calculation.gitlab.md
index 96902413e..982b2a568 100644
--- a/tests/results/test_namespace/00_9extra_calculation.gitlab.md
+++ b/tests/results/test_namespace/00_9extra_calculation.gitlab.md
@@ -18,11 +18,11 @@
> **Path**: extra\
> `standard`
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: the value of the variable "[a variable](#rougail.variable)" |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: copy the value of rougail.variable. |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: copy the value of rougail.variable. |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: the value of the variable "[a variable](#rougail.variable)" (rougail.variable). |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: copy the value of rougail.variable. |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: copy the value of rougail.variable. |
diff --git a/tests/results/test_namespace/00_9extra_calculation.html b/tests/results/test_namespace/00_9extra_calculation.html
index 597472f7e..74c4fcbd1 100644
--- a/tests/results/test_namespace/00_9extra_calculation.html
+++ b/tests/results/test_namespace/00_9extra_calculation.html
@@ -25,12 +25,12 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-extra.variable1 string standard mandatory | A first variable. Default: the value of the variable "a variable" |
-extra.variable2 string standard mandatory | A second variable. Default: copy the value of rougail.variable. |
-extra.variable3 string standard mandatory | A third variable. Default: copy the value of rougail.variable. |
+extra.variable1 string standard mandatory | A first variable. Default: the value of the variable "a variable" (rougail.variable). |
+extra.variable2 string standard mandatory | A second variable. Default: copy the value of rougail.variable. |
+extra.variable3 string standard mandatory | A third variable. Default: copy the value of rougail.variable. |
diff --git a/tests/results/test_namespace/00_9extra_calculation.json b/tests/results/test_namespace/00_9extra_calculation.json
index e83d98fd6..cc1067189 100644
--- a/tests/results/test_namespace/00_9extra_calculation.json
+++ b/tests/results/test_namespace/00_9extra_calculation.json
@@ -64,7 +64,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.variable",
"type": "variable"
diff --git a/tests/results/test_namespace/00_9extra_calculation.md b/tests/results/test_namespace/00_9extra_calculation.md
index 20bf50846..1e230acc0 100644
--- a/tests/results/test_namespace/00_9extra_calculation.md
+++ b/tests/results/test_namespace/00_9extra_calculation.md
@@ -18,9 +18,9 @@
> **Path**: extra\
> `standard`
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: the value of the variable "[a variable](#rougail.variable)" |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: copy the value of rougail.variable. |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: copy the value of rougail.variable. |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: the value of the variable "[a variable](#rougail.variable)" (rougail.variable). |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: copy the value of rougail.variable. |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: copy the value of rougail.variable. |
diff --git a/tests/results/test_namespace/00_9extra_calculation.sh b/tests/results/test_namespace/00_9extra_calculation.sh
index ad86a0d15..f0fb91759 100644
--- a/tests/results/test_namespace/00_9extra_calculation.sh
+++ b/tests/results/test_namespace/00_9extra_calculation.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -15,18 +15,18 @@
[1;4;96mExtra[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: extra
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: extra
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mextra.variable1[0m β A first variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (rougail.variable). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mextra.variable2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: copy the value of β
diff --git a/tests/results/test_namespace/00_9extra_ouside.adoc b/tests/results/test_namespace/00_9extra_ouside.adoc
index e32eab834..c5bc916d3 100644
--- a/tests/results/test_namespace/00_9extra_ouside.adoc
+++ b/tests/results/test_namespace/00_9extra_ouside.adoc
@@ -12,7 +12,7 @@ This family is a namespace. +
| Variable | Description
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (extra.variable).
|====
== Extra
diff --git a/tests/results/test_namespace/00_9extra_ouside.gitlab.md b/tests/results/test_namespace/00_9extra_ouside.gitlab.md
index 82a56bce8..6a51139ea 100644
--- a/tests/results/test_namespace/00_9extra_ouside.gitlab.md
+++ b/tests/results/test_namespace/00_9extra_ouside.gitlab.md
@@ -5,9 +5,9 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#extra.variable)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#extra.variable)" (extra.variable). |
diff --git a/tests/results/test_namespace/00_9extra_ouside.html b/tests/results/test_namespace/00_9extra_ouside.html
index f51643de2..acd9330e0 100644
--- a/tests/results/test_namespace/00_9extra_ouside.html
+++ b/tests/results/test_namespace/00_9extra_ouside.html
@@ -8,10 +8,10 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.variable string standard mandatory | A variable. Default: the value of the variable "a variable" |
+rougail.variable string standard mandatory | A variable. Default: the value of the variable "a variable" (extra.variable). |
diff --git a/tests/results/test_namespace/00_9extra_ouside.json b/tests/results/test_namespace/00_9extra_ouside.json
index 9f18a94d9..0bcecadf5 100644
--- a/tests/results/test_namespace/00_9extra_ouside.json
+++ b/tests/results/test_namespace/00_9extra_ouside.json
@@ -29,7 +29,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "extra.variable",
"type": "variable"
diff --git a/tests/results/test_namespace/00_9extra_ouside.md b/tests/results/test_namespace/00_9extra_ouside.md
index 934fb62a4..3d9f1e672 100644
--- a/tests/results/test_namespace/00_9extra_ouside.md
+++ b/tests/results/test_namespace/00_9extra_ouside.md
@@ -6,9 +6,9 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#extra.variable)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#extra.variable)" (extra.variable). |
# Extra
diff --git a/tests/results/test_namespace/00_9extra_ouside.sh b/tests/results/test_namespace/00_9extra_ouside.sh
index 271db166e..95699c9f5 100644
--- a/tests/results/test_namespace/00_9extra_ouside.sh
+++ b/tests/results/test_namespace/00_9extra_ouside.sh
@@ -1,26 +1,26 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (extra.variable). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;96mExtra[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: extra
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: extra
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/01_6boolean_multi.sh b/tests/results/test_namespace/01_6boolean_multi.sh
index 40ba62d5a..ea742837f 100644
--- a/tests/results/test_namespace/01_6boolean_multi.sh
+++ b/tests/results/test_namespace/01_6boolean_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/01_6custom_multi.sh b/tests/results/test_namespace/01_6custom_multi.sh
index eb84c04d8..93e4e66c3 100644
--- a/tests/results/test_namespace/01_6custom_multi.sh
+++ b/tests/results/test_namespace/01_6custom_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/01_6float_multi.sh b/tests/results/test_namespace/01_6float_multi.sh
index f19bd2416..fa8a49caf 100644
--- a/tests/results/test_namespace/01_6float_multi.sh
+++ b/tests/results/test_namespace/01_6float_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/01_6integer_multi.sh b/tests/results/test_namespace/01_6integer_multi.sh
index 5b154ce7d..3feefabac 100644
--- a/tests/results/test_namespace/01_6integer_multi.sh
+++ b/tests/results/test_namespace/01_6integer_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/01_6integer_multi_mandatory.sh b/tests/results/test_namespace/01_6integer_multi_mandatory.sh
index 4e314143c..0080e5cf5 100644
--- a/tests/results/test_namespace/01_6integer_multi_mandatory.sh
+++ b/tests/results/test_namespace/01_6integer_multi_mandatory.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/01_6string_empty.sh b/tests/results/test_namespace/01_6string_empty.sh
index 0b6809a29..24b94b7c0 100644
--- a/tests/results/test_namespace/01_6string_empty.sh
+++ b/tests/results/test_namespace/01_6string_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/01_6string_multi.sh b/tests/results/test_namespace/01_6string_multi.sh
index ff9d67d7b..85db4a509 100644
--- a/tests/results/test_namespace/01_6string_multi.sh
+++ b/tests/results/test_namespace/01_6string_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/01_6string_multi_length.sh b/tests/results/test_namespace/01_6string_multi_length.sh
index 869183d54..0ce31174e 100644
--- a/tests/results/test_namespace/01_6string_multi_length.sh
+++ b/tests/results/test_namespace/01_6string_multi_length.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/01_7value_multi_doublequote.sh b/tests/results/test_namespace/01_7value_multi_doublequote.sh
index c6137b862..697b675c6 100644
--- a/tests/results/test_namespace/01_7value_multi_doublequote.sh
+++ b/tests/results/test_namespace/01_7value_multi_doublequote.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/01_7value_multi_doublequote2.sh b/tests/results/test_namespace/01_7value_multi_doublequote2.sh
index 8564ddae2..e31fa7b7b 100644
--- a/tests/results/test_namespace/01_7value_multi_doublequote2.sh
+++ b/tests/results/test_namespace/01_7value_multi_doublequote2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/01_7value_multi_quote.sh b/tests/results/test_namespace/01_7value_multi_quote.sh
index 1cb5d99c5..fe3e025b8 100644
--- a/tests/results/test_namespace/01_7value_multi_quote.sh
+++ b/tests/results/test_namespace/01_7value_multi_quote.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/01_8calculation_information_multi.sh b/tests/results/test_namespace/01_8calculation_information_multi.sh
index 24828b10b..61b402a09 100644
--- a/tests/results/test_namespace/01_8calculation_information_multi.sh
+++ b/tests/results/test_namespace/01_8calculation_information_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/01_9choice_variable_multi.adoc b/tests/results/test_namespace/01_9choice_variable_multi.adoc
index 307865207..995822c72 100644
--- a/tests/results/test_namespace/01_9choice_variable_multi.adoc
+++ b/tests/results/test_namespace/01_9choice_variable_multi.adoc
@@ -19,6 +19,6 @@ This family is a namespace. +
* c
| **rougail.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A second variable. +
-**Choices**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a first variable" (rougail.variable1).
|====
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 e02e4b920..53ad615d3 100644
--- a/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a first variable](#rougail.variable1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a first variable](#rougail.variable1)" (rougail.variable1). |
diff --git a/tests/results/test_namespace/01_9choice_variable_multi.html b/tests/results/test_namespace/01_9choice_variable_multi.html
index d2967e186..3da77202c 100644
--- a/tests/results/test_namespace/01_9choice_variable_multi.html
+++ b/tests/results/test_namespace/01_9choice_variable_multi.html
@@ -8,13 +8,13 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
rougail.variable1 string multiple standard mandatory unique | A first variable. Default: |
-rougail.variable2 choice basic mandatory | A second variable. Choices: the value of the variable "a first variable" |
+c
+rougail.variable2 choice basic mandatory | A second variable. Choices: the value of the variable "a first variable" (rougail.variable1). |
diff --git a/tests/results/test_namespace/01_9choice_variable_multi.json b/tests/results/test_namespace/01_9choice_variable_multi.json
index fd0bb141e..f8161b8f5 100644
--- a/tests/results/test_namespace/01_9choice_variable_multi.json
+++ b/tests/results/test_namespace/01_9choice_variable_multi.json
@@ -61,7 +61,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.variable1",
"type": "variable"
diff --git a/tests/results/test_namespace/01_9choice_variable_multi.md b/tests/results/test_namespace/01_9choice_variable_multi.md
index 090918dd8..bf1b5e28a 100644
--- a/tests/results/test_namespace/01_9choice_variable_multi.md
+++ b/tests/results/test_namespace/01_9choice_variable_multi.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a first variable](#rougail.variable1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a first variable](#rougail.variable1)" (rougail.variable1). |
diff --git a/tests/results/test_namespace/01_9choice_variable_multi.sh b/tests/results/test_namespace/01_9choice_variable_multi.sh
index b22264048..30bf8eabb 100644
--- a/tests/results/test_namespace/01_9choice_variable_multi.sh
+++ b/tests/results/test_namespace/01_9choice_variable_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -18,5 +18,6 @@
β [1mrougail.variable2[0m β A second variable. β
β [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
β β "a first variable" β
+β β (rougail.variable1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/01_9choice_variable_optional.sh b/tests/results/test_namespace/01_9choice_variable_optional.sh
index 8231a35d2..1e12f6c29 100644
--- a/tests/results/test_namespace/01_9choice_variable_optional.sh
+++ b/tests/results/test_namespace/01_9choice_variable_optional.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/02_0tags.sh b/tests/results/test_namespace/02_0tags.sh
index 23cbf4c10..7cd495cd1 100644
--- a/tests/results/test_namespace/02_0tags.sh
+++ b/tests/results/test_namespace/02_0tags.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_0type_param.sh b/tests/results/test_namespace/04_0type_param.sh
index f0b6979cd..43511017c 100644
--- a/tests/results/test_namespace/04_0type_param.sh
+++ b/tests/results/test_namespace/04_0type_param.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_0type_param_integer.sh b/tests/results/test_namespace/04_0type_param_integer.sh
index 902265c56..9ea4d05fe 100644
--- a/tests/results/test_namespace/04_0type_param_integer.sh
+++ b/tests/results/test_namespace/04_0type_param_integer.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_1auto_save.sh b/tests/results/test_namespace/04_1auto_save.sh
index dd8c6c4e5..1c9625f58 100644
--- a/tests/results/test_namespace/04_1auto_save.sh
+++ b/tests/results/test_namespace/04_1auto_save.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated.adoc b/tests/results/test_namespace/04_1auto_save_and_calculated.adoc
index 60cce7382..47c307d6e 100644
--- a/tests/results/test_namespace/04_1auto_save_and_calculated.adoc
+++ b/tests/results/test_namespace/04_1auto_save_and_calculated.adoc
@@ -15,6 +15,6 @@ This family is a namespace. +
**Default**: no
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | A second variable. +
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (rougail.var1).
|====
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 7aac690bf..ee3501cb2 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
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **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 "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated.html b/tests/results/test_namespace/04_1auto_save_and_calculated.html
index 19a7815d7..893a6a9ce 100644
--- a/tests/results/test_namespace/04_1auto_save_and_calculated.html
+++ b/tests/results/test_namespace/04_1auto_save_and_calculated.html
@@ -8,11 +8,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string standard mandatory | A first variable. Default: no |
-rougail.var2 string basic mandatory auto modified | A second variable. Default: the value of the variable "a first variable" |
+rougail.var1 string standard mandatory | A first variable. Default: no |
+rougail.var2 string basic mandatory auto modified | A second variable. Default: the value of the variable "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated.json b/tests/results/test_namespace/04_1auto_save_and_calculated.json
index e81f04206..5d6b22edd 100644
--- a/tests/results/test_namespace/04_1auto_save_and_calculated.json
+++ b/tests/results/test_namespace/04_1auto_save_and_calculated.json
@@ -55,7 +55,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated.md b/tests/results/test_namespace/04_1auto_save_and_calculated.md
index 87b3b38c4..c916c0074 100644
--- a/tests/results/test_namespace/04_1auto_save_and_calculated.md
+++ b/tests/results/test_namespace/04_1auto_save_and_calculated.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **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 "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated.sh b/tests/results/test_namespace/04_1auto_save_and_calculated.sh
index 2d429e9d4..c50d4ab36 100644
--- a/tests/results/test_namespace/04_1auto_save_and_calculated.sh
+++ b/tests/results/test_namespace/04_1auto_save_and_calculated.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,6 +14,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m auto [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmodified [0m β "a first variable" β
+β [1;7mmodified [0m β "a first variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.sh
index 20faf6ac8..de0de584f 100644
--- a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.sh
+++ b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.adoc b/tests/results/test_namespace/04_1default_calculation_hidden.adoc
index 8388ad43d..689deff02 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden.adoc
+++ b/tests/results/test_namespace/04_1default_calculation_hidden.adoc
@@ -15,7 +15,7 @@ This family is a namespace. +
**Default**: value
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a first variable" has the value "value".
+**Disabled**: when the variable "a first variable" (rougail.var1) has the value "value".
| **rougail.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. +
**Default**: depends on a calculation.
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 420942b9b..a86cda73d 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md
@@ -5,11 +5,11 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first 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. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#rougail.var1)" (rougail.var1) has the value "value". |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.html b/tests/results/test_namespace/04_1default_calculation_hidden.html
index b5901d140..816775d9b 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden.html
+++ b/tests/results/test_namespace/04_1default_calculation_hidden.html
@@ -8,12 +8,12 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string standard mandatory | A first variable. Default: value |
-rougail.var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" has the value "value". |
-rougail.var3 string standard mandatory | A third variable. Default: depends on a calculation. |
+rougail.var1 string standard mandatory | A first variable. Default: value |
+rougail.var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" (rougail.var1) has the value "value". |
+rougail.var3 string standard mandatory | A third variable. Default: depends on a calculation. |
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.json b/tests/results/test_namespace/04_1default_calculation_hidden.json
index 589b2af37..60f0aac69 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden.json
+++ b/tests/results/test_namespace/04_1default_calculation_hidden.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"value\".",
+ "message": "when the variable {0} has the value \"value\".",
"path": {
"path": "rougail.var1"
},
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.md b/tests/results/test_namespace/04_1default_calculation_hidden.md
index 87ba5ba2b..f19a49ffc 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden.md
@@ -6,9 +6,9 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first 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. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#rougail.var1)" (rougail.var1) has the value "value". |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.sh b/tests/results/test_namespace/04_1default_calculation_hidden.sh
index f6a4c19b3..9f2948876 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden.sh
+++ b/tests/results/test_namespace/04_1default_calculation_hidden.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,7 +14,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a first β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "value". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.var1) has the β
+β β value "value". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var3[0m β A third variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: depends on a calculation. β
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_2.adoc b/tests/results/test_namespace/04_1default_calculation_hidden_2.adoc
index 8388ad43d..689deff02 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_2.adoc
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.adoc
@@ -15,7 +15,7 @@ This family is a namespace. +
**Default**: value
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a first variable" has the value "value".
+**Disabled**: when the variable "a first variable" (rougail.var1) has the value "value".
| **rougail.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. +
**Default**: depends on a calculation.
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_2.gitlab.md
index 420942b9b..a86cda73d 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
@@ -5,11 +5,11 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first 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. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#rougail.var1)" (rougail.var1) has the value "value". |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_2.html b/tests/results/test_namespace/04_1default_calculation_hidden_2.html
index b5901d140..816775d9b 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_2.html
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.html
@@ -8,12 +8,12 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string standard mandatory | A first variable. Default: value |
-rougail.var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" has the value "value". |
-rougail.var3 string standard mandatory | A third variable. Default: depends on a calculation. |
+rougail.var1 string standard mandatory | A first variable. Default: value |
+rougail.var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" (rougail.var1) has the value "value". |
+rougail.var3 string standard mandatory | A third variable. Default: depends on a calculation. |
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_2.json b/tests/results/test_namespace/04_1default_calculation_hidden_2.json
index 589b2af37..60f0aac69 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_2.json
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"value\".",
+ "message": "when the variable {0} has the value \"value\".",
"path": {
"path": "rougail.var1"
},
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_2.md b/tests/results/test_namespace/04_1default_calculation_hidden_2.md
index 87ba5ba2b..f19a49ffc 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_2.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.md
@@ -6,9 +6,9 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first 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. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#rougail.var1)" (rougail.var1) has the value "value". |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace/04_1default_calculation_hidden_2.sh
index f6a4c19b3..9f2948876 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_2.sh
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,7 +14,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a first β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "value". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.var1) has the β
+β β value "value". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var3[0m β A third variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: depends on a calculation. β
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_3.sh b/tests/results/test_namespace/04_1default_calculation_hidden_3.sh
index ac8a0c58c..0b5026bbc 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_3.sh
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_3.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace/04_1default_calculation_hidden_4.sh
index 52b219430..525abadde 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_4.sh
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_4.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_5.sh b/tests/results/test_namespace/04_1default_calculation_hidden_5.sh
index a688d9d03..44fb6fb94 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_5.sh
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_5.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace/04_1default_calculation_hidden_6.sh
index a688d9d03..44fb6fb94 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_6.sh
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_6.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5disabled_calculation.sh b/tests/results/test_namespace/04_5disabled_calculation.sh
index aef56ac9c..d0176e0f8 100644
--- a/tests/results/test_namespace/04_5disabled_calculation.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_boolean.sh b/tests/results/test_namespace/04_5disabled_calculation_boolean.sh
index c532d519b..59ab4501c 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_boolean.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_boolean.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_default.sh b/tests/results/test_namespace/04_5disabled_calculation_default.sh
index 6f999dbe5..e647c6728 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_default.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_default.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_multi.sh b/tests/results/test_namespace/04_5disabled_calculation_multi.sh
index 4ef704b68..8d6f316d5 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_multi.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional.sh b/tests/results/test_namespace/04_5disabled_calculation_optional.sh
index b2ed19616..f33c68c70 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_optional.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_optional.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional_default.adoc b/tests/results/test_namespace/04_5disabled_calculation_optional_default.adoc
index 7fdbbbd3e..7671201c1 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.adoc
+++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.adoc
@@ -17,9 +17,9 @@ This family is a namespace. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable.
| **rougail.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. +
-**Hidden**: when the variable "a condition" is defined and has the value "true".
+**Hidden**: when the variable "a condition" (rougail.condition) is defined and has the value "true".
| **rougail.var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A forth variable. +
-**Hidden**: when the variable "a condition" is defined and has the value "true".
+**Hidden**: when the variable "a condition" (rougail.condition) is defined and has the value "true".
|====
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 40e1bbb74..de01838eb 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
@@ -5,12 +5,12 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#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 "[a condition](#rougail.condition)" is defined and has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#rougail.condition)" (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 "[a condition](#rougail.condition)" (rougail.condition) is defined and has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional_default.html b/tests/results/test_namespace/04_5disabled_calculation_optional_default.html
index a5e9462e0..789deb5e4 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.html
+++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.html
@@ -8,13 +8,13 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.var1 string standard | A first variable. |
-rougail.var3 string standard hidden | A second variable. Hidden: when the variable "a condition" is defined and has the value "true". |
-rougail.var4 string standard hidden | A forth variable. Hidden: when the variable "a condition" is defined and has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.var1 string standard | A first variable. |
+rougail.var3 string standard hidden | A second variable. Hidden: when the variable "a condition" (rougail.condition) is defined and has the value "true". |
+rougail.var4 string standard hidden | A forth variable. Hidden: when the variable "a condition" (rougail.condition) is defined and has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional_default.json b/tests/results/test_namespace/04_5disabled_calculation_optional_default.json
index f7a158521..73fa5284d 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.json
+++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.json
@@ -52,7 +52,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is defined and has the value \"true\".",
+ "message": "when the variable {0} is defined and has the value \"true\".",
"path": {
"path": "rougail.condition"
},
@@ -75,7 +75,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is defined and has the value \"true\".",
+ "message": "when the variable {0} is defined and has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional_default.md b/tests/results/test_namespace/04_5disabled_calculation_optional_default.md
index b4858ff31..60bc20844 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.md
@@ -6,10 +6,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#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 "[a condition](#rougail.condition)" is defined and has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#rougail.condition)" (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 "[a condition](#rougail.condition)" (rougail.condition) is defined and has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace/04_5disabled_calculation_optional_default.sh
index fc94e873b..285bba05a 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -17,12 +17,12 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var3[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m β [1mHidden[0m: when the variable "a β
-β β condition" is defined and has the β
-β β value "true". β
+β β condition" (rougail.condition) is β
+β β defined and has the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var4[0m β A forth variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m β [1mHidden[0m: when the variable "a β
-β β condition" is defined and has the β
-β β value "true". β
+β β condition" (rougail.condition) is β
+β β defined and has the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable.adoc
index a90431c37..214eb0293 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable.adoc
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable.adoc
@@ -15,6 +15,6 @@ This family is a namespace. +
**Default**: false
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md
index 62fd3a5c4..da2abfec1 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.html b/tests/results/test_namespace/04_5disabled_calculation_variable.html
index 43a02fcd0..3c39720ee 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable.html
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable.html
@@ -8,11 +8,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.json b/tests/results/test_namespace/04_5disabled_calculation_variable.json
index 252341050..fd39bfc73 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable.json
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.md b/tests/results/test_namespace/04_5disabled_calculation_variable.md
index 235bdfd82..f01b3d5fa 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.sh b/tests/results/test_namespace/04_5disabled_calculation_variable.sh
index d05418544..9335685f7 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,6 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable10.adoc
index 86b314373..df441876a 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable10.adoc
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.adoc
@@ -15,6 +15,6 @@ This family is a namespace. +
**Default**: true
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md
index 6edcb3939..efd1813fc 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.html b/tests/results/test_namespace/04_5disabled_calculation_variable10.html
index 06d740983..e68fa5942 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable10.html
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.html
@@ -8,11 +8,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.json b/tests/results/test_namespace/04_5disabled_calculation_variable10.json
index 83072dad1..f22dc69e1 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable10.json
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.md b/tests/results/test_namespace/04_5disabled_calculation_variable10.md
index 92f910f24..84aecf25f 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable10.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.sh b/tests/results/test_namespace/04_5disabled_calculation_variable10.sh
index 61f9ca72b..5a58a90a4 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable10.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,6 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable2.adoc
index 86b314373..df441876a 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable2.adoc
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.adoc
@@ -15,6 +15,6 @@ This family is a namespace. +
**Default**: true
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md
index 6edcb3939..efd1813fc 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.html b/tests/results/test_namespace/04_5disabled_calculation_variable2.html
index 06d740983..e68fa5942 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable2.html
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.html
@@ -8,11 +8,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.json b/tests/results/test_namespace/04_5disabled_calculation_variable2.json
index 83072dad1..f22dc69e1 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable2.json
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.md b/tests/results/test_namespace/04_5disabled_calculation_variable2.md
index 92f910f24..84aecf25f 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable2.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace/04_5disabled_calculation_variable2.sh
index 61f9ca72b..5a58a90a4 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable2.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,6 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable3.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable3.adoc
index 70b058999..78851fcb7 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable3.adoc
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.adoc
@@ -15,6 +15,6 @@ This family is a namespace. +
**Default**: yes
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "yes".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "yes".
|====
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 cf1536282..151cc9be5 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" has the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) has the value "yes". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable3.html b/tests/results/test_namespace/04_5disabled_calculation_variable3.html
index d260d17f8..c4c5e7dda 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable3.html
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.html
@@ -8,11 +8,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.condition string standard mandatory | A condition. Default: yes |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "yes". |
+rougail.condition string standard mandatory | A condition. Default: yes |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "yes". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable3.json b/tests/results/test_namespace/04_5disabled_calculation_variable3.json
index 4d2f31d73..0185bc1cf 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable3.json
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"yes\".",
+ "message": "when the variable {0} has the value \"yes\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable3.md b/tests/results/test_namespace/04_5disabled_calculation_variable3.md
index 12f026722..45f391998 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable3.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" has the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) has the value "yes". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace/04_5disabled_calculation_variable3.sh
index 026b99bc5..1fb1b6334 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable3.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,6 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "yes". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "yes". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable4.adoc
index 76d1113d3..84be38ff3 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable4.adoc
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.adoc
@@ -15,6 +15,6 @@ This family is a namespace. +
**Default**: yes
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" hasn't the value "yes".
+**Disabled**: when the variable "a condition" (rougail.condition) hasn't the value "yes".
|====
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md
index 4ac5283fa..7045a5b23 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" hasn't the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) hasn't the value "yes". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.html b/tests/results/test_namespace/04_5disabled_calculation_variable4.html
index 5e1691c00..0f3120f40 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable4.html
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.html
@@ -8,11 +8,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.condition string standard mandatory | A condition. Default: yes |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" hasn't the value "yes". |
+rougail.condition string standard mandatory | A condition. Default: yes |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) hasn't the value "yes". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.json b/tests/results/test_namespace/04_5disabled_calculation_variable4.json
index e8393c47b..bbed8d6eb 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable4.json
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"yes\".",
+ "message": "when the variable {0} hasn't the value \"yes\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.md b/tests/results/test_namespace/04_5disabled_calculation_variable4.md
index 6979fca32..a3c7c581e 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable4.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" hasn't the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) hasn't the value "yes". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace/04_5disabled_calculation_variable4.sh
index cd2e2cb10..2a1769f85 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable4.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,6 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" hasn't the value "yes". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) β
+β β hasn't the value "yes". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace/04_5disabled_calculation_variable5.sh
index b0eeceace..45467d6ad 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable5.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.sh b/tests/results/test_namespace/04_5disabled_calculation_variable6.sh
index b0eeceace..45467d6ad 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable6.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable7.adoc
index a90431c37..214eb0293 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable7.adoc
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.adoc
@@ -15,6 +15,6 @@ This family is a namespace. +
**Default**: false
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md
index 62fd3a5c4..da2abfec1 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.html b/tests/results/test_namespace/04_5disabled_calculation_variable7.html
index 43a02fcd0..3c39720ee 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable7.html
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.html
@@ -8,11 +8,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.json b/tests/results/test_namespace/04_5disabled_calculation_variable7.json
index 252341050..fd39bfc73 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable7.json
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.md b/tests/results/test_namespace/04_5disabled_calculation_variable7.md
index 235bdfd82..f01b3d5fa 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable7.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace/04_5disabled_calculation_variable7.sh
index d05418544..9335685f7 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable7.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,6 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.sh b/tests/results/test_namespace/04_5disabled_calculation_variable9.sh
index b0eeceace..45467d6ad 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable9.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.adoc
index 5043eb5c7..95ae35a78 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.adoc
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.adoc
@@ -15,6 +15,6 @@ This family is a namespace. +
**Default**: false
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `basic` `mandatory` `__disabled__` `unique` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
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 916d15075..0621614b7 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
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.html b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.html
index 43968fb36..b88a5a350 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.html
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.html
@@ -8,11 +8,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.variable string multiple basic mandatory disabled unique | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.variable string multiple basic mandatory disabled unique | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.json b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.json
index 5786d8b4f..0978d0198 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.json
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.md b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.md
index 9419e6f8e..dd6bdb04f 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.sh b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.sh
index 6f58e88f3..3a3816067 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,6 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m basic [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;7mmandatory [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m [1;7m unique [0m β condition" has the value "true". β
+β [1;7mmandatory [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m [1;7m unique [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.adoc
index 67ac7509d..543cf63f1 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.adoc
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.adoc
@@ -15,9 +15,9 @@ This family is a namespace. +
**Default**: true
| **rougail.variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
| **rougail.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is "disabled".
+**Disabled**: when the variable "a variable" (rougail.variable1) is "disabled".
|====
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.gitlab.md
index 1886256eb..b213e9c5f 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.gitlab.md
@@ -5,11 +5,11 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is "disabled". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is "disabled". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.html b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.html
index 6655c3844..3dd800e75 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.html
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.html
@@ -8,12 +8,12 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.variable1 string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
-rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is "disabled". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.variable1 string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
+rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (rougail.variable1) is "disabled". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.json b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.json
index 4aeef218e..3de7dc1cf 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.json
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
@@ -78,7 +78,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is \"disabled\".",
+ "message": "when the variable {0} is \"disabled\".",
"path": {
"path": "rougail.variable1"
},
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.md b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.md
index a07a22806..528fe5af9 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.md
@@ -6,9 +6,9 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is "disabled". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is "disabled". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.sh b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.sh
index 318624d60..c4434dc33 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,10 +14,12 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable1[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.variable1) is β
+β β "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.adoc
index 4b0e9791f..df762a5ad 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.adoc
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.adoc
@@ -16,9 +16,9 @@ This family is a namespace. +
| **rougail.variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable. +
**Default**: disabled +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
| **rougail.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is disabled or has the value "disabled".
+**Disabled**: when the variable "a variable" (rougail.variable1) is disabled or has the value "disabled".
|====
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.gitlab.md
index 7f2a59baf..b18909aa2 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.gitlab.md
@@ -5,11 +5,11 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.html b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.html
index 49c4060c4..384b29e13 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.html
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.html
@@ -8,12 +8,12 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.variable1 string standard mandatory disabled | A variable. Default: disabled Disabled: when the variable "a condition" has the value "true". |
-rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is disabled or has the value "disabled". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.variable1 string standard mandatory disabled | A variable. Default: disabled Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
+rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.json b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.json
index a16e335c1..d796adef2 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.json
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
@@ -82,7 +82,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is disabled or has the value \"disabled\".",
+ "message": "when the variable {0} is disabled or has the value \"disabled\".",
"path": {
"path": "rougail.variable1"
},
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.md b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.md
index 6b1231c52..37d037bb1 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.md
@@ -6,9 +6,9 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.sh b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.sh
index cc6cdfcc3..8ce72d866 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -15,11 +15,13 @@
β [1mrougail.variable1[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: disabled β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is disabled or has the β
-β β value "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.variable1) is β
+β β disabled or has the value β
+β β "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.adoc
index 2bfa07308..efe5540fc 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.adoc
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.adoc
@@ -16,9 +16,9 @@ This family is a namespace. +
| **rougail.variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable. +
**Default**: not_disabled +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
| **rougail.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is disabled or has the value "disabled".
+**Disabled**: when the variable "a variable" (rougail.variable1) is disabled or has the value "disabled".
|====
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.gitlab.md
index 8ffa3553c..4b8f79241 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.gitlab.md
@@ -5,11 +5,11 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.html b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.html
index 5b1dbdd67..2038d06c3 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.html
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.html
@@ -8,12 +8,12 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.variable1 string standard mandatory disabled | A variable. Default: not_disabled Disabled: when the variable "a condition" has the value "true". |
-rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is disabled or has the value "disabled". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.variable1 string standard mandatory disabled | A variable. Default: not_disabled Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
+rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.json b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.json
index 1066322be..dd9d69f90 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.json
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
@@ -82,7 +82,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is disabled or has the value \"disabled\".",
+ "message": "when the variable {0} is disabled or has the value \"disabled\".",
"path": {
"path": "rougail.variable1"
},
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.md b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.md
index 504261625..402ca65de 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.md
@@ -6,9 +6,9 @@
> **Path**: rougail\
> `basic`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.sh b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.sh
index 2a61e823a..c7ceaa2bc 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.sh
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -15,11 +15,13 @@
β [1mrougail.variable1[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: not_disabled β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is disabled or has the β
-β β value "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.variable1) is β
+β β disabled or has the value β
+β β "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/04_5hidden_calculation.sh b/tests/results/test_namespace/04_5hidden_calculation.sh
index ad4c94b71..bed756cd3 100644
--- a/tests/results/test_namespace/04_5hidden_calculation.sh
+++ b/tests/results/test_namespace/04_5hidden_calculation.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5hidden_calculation2.sh b/tests/results/test_namespace/04_5hidden_calculation2.sh
index 6fce58bba..fd8844fb2 100644
--- a/tests/results/test_namespace/04_5hidden_calculation2.sh
+++ b/tests/results/test_namespace/04_5hidden_calculation2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.sh b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.sh
index b6203455e..5c2dec997 100644
--- a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.sh
+++ b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5validators.sh b/tests/results/test_namespace/04_5validators.sh
index f8957d1fb..d647e4710 100644
--- a/tests/results/test_namespace/04_5validators.sh
+++ b/tests/results/test_namespace/04_5validators.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5validators_differ.sh b/tests/results/test_namespace/04_5validators_differ.sh
index 75983146c..f3560bcb2 100644
--- a/tests/results/test_namespace/04_5validators_differ.sh
+++ b/tests/results/test_namespace/04_5validators_differ.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5validators_multi.sh b/tests/results/test_namespace/04_5validators_multi.sh
index 1f6c7efe2..e908bfa21 100644
--- a/tests/results/test_namespace/04_5validators_multi.sh
+++ b/tests/results/test_namespace/04_5validators_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5validators_multi2.sh b/tests/results/test_namespace/04_5validators_multi2.sh
index 398d06243..7c0ad1a46 100644
--- a/tests/results/test_namespace/04_5validators_multi2.sh
+++ b/tests/results/test_namespace/04_5validators_multi2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5validators_multi3.sh b/tests/results/test_namespace/04_5validators_multi3.sh
index a284217ce..67cbcf7fd 100644
--- a/tests/results/test_namespace/04_5validators_multi3.sh
+++ b/tests/results/test_namespace/04_5validators_multi3.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5validators_warnings.sh b/tests/results/test_namespace/04_5validators_warnings.sh
index f5b99faf2..7509da75e 100644
--- a/tests/results/test_namespace/04_5validators_warnings.sh
+++ b/tests/results/test_namespace/04_5validators_warnings.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/04_5validators_warnings_all.sh b/tests/results/test_namespace/04_5validators_warnings_all.sh
index 87d4da667..5dffaba8c 100644
--- a/tests/results/test_namespace/04_5validators_warnings_all.sh
+++ b/tests/results/test_namespace/04_5validators_warnings_all.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/05_0multi_not_uniq.sh b/tests/results/test_namespace/05_0multi_not_uniq.sh
index b99349a85..98c7e7d17 100644
--- a/tests/results/test_namespace/05_0multi_not_uniq.sh
+++ b/tests/results/test_namespace/05_0multi_not_uniq.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/05_0multi_uniq.sh b/tests/results/test_namespace/05_0multi_uniq.sh
index 4bb07a6b8..c51869e07 100644
--- a/tests/results/test_namespace/05_0multi_uniq.sh
+++ b/tests/results/test_namespace/05_0multi_uniq.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/12_1auto_save_expert.sh b/tests/results/test_namespace/12_1auto_save_expert.sh
index 60debe63f..1e06cff34 100644
--- a/tests/results/test_namespace/12_1auto_save_expert.sh
+++ b/tests/results/test_namespace/12_1auto_save_expert.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m advanced [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m advanced [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_0redefine_description.sh b/tests/results/test_namespace/16_0redefine_description.sh
index bd42f960b..f1d14ce6d 100644
--- a/tests/results/test_namespace/16_0redefine_description.sh
+++ b/tests/results/test_namespace/16_0redefine_description.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_2family_redefine_calculation.sh b/tests/results/test_namespace/16_2family_redefine_calculation.sh
index 2ddcdfcca..bfc024925 100644
--- a/tests/results/test_namespace/16_2family_redefine_calculation.sh
+++ b/tests/results/test_namespace/16_2family_redefine_calculation.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mfamily[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
-[34mβ [0m[1mDisabled[0m: depends on a calculation.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
+[34mβ [0m[1mDisabled[0m: depends on a calculation.
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_3family_empty_at_ends.sh b/tests/results/test_namespace/16_3family_empty_at_ends.sh
index 4e6bfd61e..0aca6cd8f 100644
--- a/tests/results/test_namespace/16_3family_empty_at_ends.sh
+++ b/tests/results/test_namespace/16_3family_empty_at_ends.sh
@@ -1,17 +1,17 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mfamily[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m basic [0m
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_5exists_nonexists.sh b/tests/results/test_namespace/16_5exists_nonexists.sh
index a45a32a79..0d2b28670 100644
--- a/tests/results/test_namespace/16_5exists_nonexists.sh
+++ b/tests/results/test_namespace/16_5exists_nonexists.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_5redefine_calculation.sh b/tests/results/test_namespace/16_5redefine_calculation.sh
index 1271d7f39..d3a7f35ec 100644
--- a/tests/results/test_namespace/16_5redefine_calculation.sh
+++ b/tests/results/test_namespace/16_5redefine_calculation.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_5redefine_choice.sh b/tests/results/test_namespace/16_5redefine_choice.sh
index 110873f3d..68ded2072 100644
--- a/tests/results/test_namespace/16_5redefine_choice.sh
+++ b/tests/results/test_namespace/16_5redefine_choice.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_5redefine_default.sh b/tests/results/test_namespace/16_5redefine_default.sh
index bda742a10..040cbb712 100644
--- a/tests/results/test_namespace/16_5redefine_default.sh
+++ b/tests/results/test_namespace/16_5redefine_default.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_5redefine_default_calculation.sh b/tests/results/test_namespace/16_5redefine_default_calculation.sh
index b0eeceace..45467d6ad 100644
--- a/tests/results/test_namespace/16_5redefine_default_calculation.sh
+++ b/tests/results/test_namespace/16_5redefine_default_calculation.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_5redefine_family.sh b/tests/results/test_namespace/16_5redefine_family.sh
index d3f01d5b1..6cd3d029b 100644
--- a/tests/results/test_namespace/16_5redefine_family.sh
+++ b/tests/results/test_namespace/16_5redefine_family.sh
@@ -1,17 +1,17 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mNew description[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_5redefine_help.sh b/tests/results/test_namespace/16_5redefine_help.sh
index 9e3648c86..bcd91f8b8 100644
--- a/tests/results/test_namespace/16_5redefine_help.sh
+++ b/tests/results/test_namespace/16_5redefine_help.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mRedefine help family ok.
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mRedefine help family ok.
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_5redefine_multi.sh b/tests/results/test_namespace/16_5redefine_multi.sh
index 4bb07a6b8..c51869e07 100644
--- a/tests/results/test_namespace/16_5redefine_multi.sh
+++ b/tests/results/test_namespace/16_5redefine_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.sh
index 1832e91ad..6a86b55e7 100644
--- a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.sh
+++ b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_5test_redefine.sh b/tests/results/test_namespace/16_5test_redefine.sh
index e5785e0db..1ef054d05 100644
--- a/tests/results/test_namespace/16_5test_redefine.sh
+++ b/tests/results/test_namespace/16_5test_redefine.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_6choice_redefine.sh b/tests/results/test_namespace/16_6choice_redefine.sh
index 347882273..a137e8315 100644
--- a/tests/results/test_namespace/16_6choice_redefine.sh
+++ b/tests/results/test_namespace/16_6choice_redefine.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16_6exists_redefine_family.sh b/tests/results/test_namespace/16_6exists_redefine_family.sh
index 75c721691..04cf01924 100644
--- a/tests/results/test_namespace/16_6exists_redefine_family.sh
+++ b/tests/results/test_namespace/16_6exists_redefine_family.sh
@@ -1,17 +1,17 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mNew description[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family1
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family1
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -22,10 +22,10 @@
[1;4;92mA second family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family2
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family2
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/16exists_exists.sh b/tests/results/test_namespace/16exists_exists.sh
index 7dce55df1..2e8ccedf2 100644
--- a/tests/results/test_namespace/16exists_exists.sh
+++ b/tests/results/test_namespace/16exists_exists.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/20_0family_append.sh b/tests/results/test_namespace/20_0family_append.sh
index d9b188db0..c6ea1f1b9 100644
--- a/tests/results/test_namespace/20_0family_append.sh
+++ b/tests/results/test_namespace/20_0family_append.sh
@@ -1,17 +1,17 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/20_0multi_family.sh b/tests/results/test_namespace/20_0multi_family.sh
index ef0dc2c0b..d00ac5d48 100644
--- a/tests/results/test_namespace/20_0multi_family.sh
+++ b/tests/results/test_namespace/20_0multi_family.sh
@@ -1,24 +1,24 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m standard [0m
[1;4;38;5;46mA sub family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family.subfamily
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family.subfamily
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/20_0multi_family_basic.sh b/tests/results/test_namespace/20_0multi_family_basic.sh
index 03d98660b..6dc417d6c 100644
--- a/tests/results/test_namespace/20_0multi_family_basic.sh
+++ b/tests/results/test_namespace/20_0multi_family_basic.sh
@@ -1,24 +1,24 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m basic [0m
[1;4;38;5;46mA sub family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family.subfamily
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family.subfamily
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/20_0multi_family_expert.sh b/tests/results/test_namespace/20_0multi_family_expert.sh
index 5762570f1..0cf45d113 100644
--- a/tests/results/test_namespace/20_0multi_family_expert.sh
+++ b/tests/results/test_namespace/20_0multi_family_expert.sh
@@ -1,24 +1,24 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m advanced [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m advanced [0m
[1;4;92mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m advanced [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m advanced [0m
[1;4;38;5;46mA sub family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family.subfamily
-[34mβ [0m[1;7m advanced [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family.subfamily
+[34mβ [0m[1;7m advanced [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/20_0multi_family_order.sh b/tests/results/test_namespace/20_0multi_family_order.sh
index b51b371fd..ed03e3b51 100644
--- a/tests/results/test_namespace/20_0multi_family_order.sh
+++ b/tests/results/test_namespace/20_0multi_family_order.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,10 +14,10 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -27,10 +27,10 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mA sub family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family.subfamily
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family.subfamily
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/20_0validators_differ_redefine.sh b/tests/results/test_namespace/20_0validators_differ_redefine.sh
index bb0d88b3b..9dfc9fb7e 100644
--- a/tests/results/test_namespace/20_0validators_differ_redefine.sh
+++ b/tests/results/test_namespace/20_0validators_differ_redefine.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/20_2family_looks_like_dynamic.sh b/tests/results/test_namespace/20_2family_looks_like_dynamic.sh
index 925ccb798..40e54bb5b 100644
--- a/tests/results/test_namespace/20_2family_looks_like_dynamic.sh
+++ b/tests/results/test_namespace/20_2family_looks_like_dynamic.sh
@@ -1,17 +1,17 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mmy_family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.my_family
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.my_family
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/20_2family_looks_like_variable.sh b/tests/results/test_namespace/20_2family_looks_like_variable.sh
index 08290c3a0..27d61122d 100644
--- a/tests/results/test_namespace/20_2family_looks_like_variable.sh
+++ b/tests/results/test_namespace/20_2family_looks_like_variable.sh
@@ -1,17 +1,17 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mmy_family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.my_family
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.my_family
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/20_7help_family.sh b/tests/results/test_namespace/20_7help_family.sh
index 437b5ca78..2b1e66185 100644
--- a/tests/results/test_namespace/20_7help_family.sh
+++ b/tests/results/test_namespace/20_7help_family.sh
@@ -1,22 +1,22 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mThe first family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mMulti line.
-[34mβ [0m
-[34mβ [0mHelp.
-[34mβ [0m
-[34mβ [0mWith useful information.
-[34mβ [0m[1mPath[0m: rougail.family1
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mMulti line.
+[34mβ [0m
+[34mβ [0mHelp.
+[34mβ [0m
+[34mβ [0mWith useful information.
+[34mβ [0m[1mPath[0m: rougail.family1
+[34mβ [0m[1;7m basic [0m
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
@@ -27,13 +27,13 @@
[1;4;92mThe second family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mMulti line.
-[34mβ [0mHelp.
-[34mβ [0mWith useful information.
-[34mβ [0m[1mPath[0m: rougail.family2
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mMulti line.
+[34mβ [0mHelp.
+[34mβ [0mWith useful information.
+[34mβ [0m[1mPath[0m: rougail.family2
+[34mβ [0m[1;7m basic [0m
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
diff --git a/tests/results/test_namespace/20_9default_information_parent.adoc b/tests/results/test_namespace/20_9default_information_parent.adoc
index 355aab441..97e7e0461 100644
--- a/tests/results/test_namespace/20_9default_information_parent.adoc
+++ b/tests/results/test_namespace/20_9default_information_parent.adoc
@@ -22,6 +22,6 @@ This family is a namespace. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **rougail.family.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "rougail.family".
+**Default**: the value of the information "test_information" of the variable "family" (rougail.family).
|====
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 7fb11c21e..961bb4823 100644
--- a/tests/results/test_namespace/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_namespace/20_9default_information_parent.gitlab.md
@@ -11,10 +11,10 @@
> **Path**: rougail.family\
> `basic`
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[family](#rougail.family)" (rougail.family). |
diff --git a/tests/results/test_namespace/20_9default_information_parent.html b/tests/results/test_namespace/20_9default_information_parent.html
index c80813ec2..9dfe206bd 100644
--- a/tests/results/test_namespace/20_9default_information_parent.html
+++ b/tests/results/test_namespace/20_9default_information_parent.html
@@ -14,11 +14,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.family.var1 string basic mandatory | A first variable. |
-rougail.family.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "rougail.family". |
+rougail.family.var1 string basic mandatory | A first variable. |
+rougail.family.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "family" (rougail.family). |
diff --git a/tests/results/test_namespace/20_9default_information_parent.json b/tests/results/test_namespace/20_9default_information_parent.json
index ace9c7200..1a95563cb 100644
--- a/tests/results/test_namespace/20_9default_information_parent.json
+++ b/tests/results/test_namespace/20_9default_information_parent.json
@@ -53,7 +53,15 @@
"type": "variable",
"default": {
"name": "Default",
- "values": "the value of the information \"test_information\" of the variable \"rougail.family\"."
+ "values": {
+ "message": "the value of the information \"test_information\" of the variable {0}.",
+ "path": {
+ "type": "information",
+ "information": "test_information",
+ "path": "rougail.family"
+ },
+ "description": "family"
+ }
},
"variable_type": "string"
}
diff --git a/tests/results/test_namespace/20_9default_information_parent.md b/tests/results/test_namespace/20_9default_information_parent.md
index 74f1ee8ad..ddd7e222f 100644
--- a/tests/results/test_namespace/20_9default_information_parent.md
+++ b/tests/results/test_namespace/20_9default_information_parent.md
@@ -13,8 +13,8 @@
> **Path**: rougail.family\
> `basic`
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[family](#rougail.family)" (rougail.family). |
diff --git a/tests/results/test_namespace/20_9default_information_parent.sh b/tests/results/test_namespace/20_9default_information_parent.sh
index 275393699..3b99c81d4 100644
--- a/tests/results/test_namespace/20_9default_information_parent.sh
+++ b/tests/results/test_namespace/20_9default_information_parent.sh
@@ -1,17 +1,17 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mfamily[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -22,7 +22,8 @@
β [1mrougail.family.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "rougail.family". β
+β β the variable "family" β
+β β (rougail.family). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/24_0family_hidden_condition.sh b/tests/results/test_namespace/24_0family_hidden_condition.sh
index dd454c257..5eac99684 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition.sh
+++ b/tests/results/test_namespace/24_0family_hidden_condition.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,11 +14,11 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mPossibly hidden family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: if condition is yes.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: if condition is yes.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace/24_0family_hidden_condition_boolean.sh
index e27afb9b1..420fbb64e 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.sh
+++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,11 +14,11 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: if not condition.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: if not condition.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.sh
index 6dfa8dfba..f9111c2fb 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.sh
+++ b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,18 +14,18 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mPossibly hidden family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: if condition is yes.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: if condition is yes.
[1;4;38;5;46msubfamily[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family.subfamily
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family.subfamily
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.adoc b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.adoc
index c3a8d6b7c..5a02bb067 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.adoc
+++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.adoc
@@ -22,7 +22,7 @@ This family is a namespace. +
**Path**: rougail.family +
`standard` `__hidden__` +
-**Hidden**: when the variable "the variable use has condition" has the value "true".
+**Hidden**: when the variable "the variable use has condition" (rougail.condition) has the value "true".
====
==== A subfamily
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 98ae45e15..976bfadae 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
@@ -14,7 +14,7 @@
> [!note] π Informations
> **Path**: rougail.family\
> `standard` *`hidden`*\
-> **Hidden**: when the variable "[the variable use has condition](#rougail.condition)" has the value "true".
+> **Hidden**: when the variable "[the variable use has condition](#rougail.condition)" (rougail.condition) has the value "true".
A subfamily
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.html b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.html
index 0c9239e75..c8d31b8c8 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.html
+++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.html
@@ -21,7 +21,7 @@ This family is a namespace.
standard hidden
-Hidden: when the variable "the variable use has condition" has the value "true".
+Hidden: when the variable "the variable use has condition" (rougail.condition) has the value "true".
A subfamily
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.json b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.json
index 2b2daa091..46956db5e 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.json
+++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.json
@@ -45,7 +45,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.md
index e3a7261ff..8b1f61c73 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.md
+++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.md
@@ -16,7 +16,7 @@
>
> **Path**: rougail.family\
> `standard` *`hidden`*\
-> **Hidden**: when the variable "[the variable use has condition](#rougail.condition)" has the value "true".
+> **Hidden**: when the variable "[the variable use has condition](#rougail.condition)" (rougail.condition) has the value "true".
### A subfamily
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.sh
index facd2d115..bcac8e009 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.sh
+++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,19 +14,19 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mPossibly hidden family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"the variable use has condition"[0m has the value
-[32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"the variable use has condition"[0m
+[34mβ [0m[1m([0mrougail.condition[1m)[0m has the value [32m"true"[0m.
[1;4;38;5;46mA subfamily[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family.subfamily
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family.subfamily
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.sh
index 0cc4432df..e4c211a79 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.sh
+++ b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -17,11 +17,11 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: if condition1 is false.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: if condition1 is false.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.sh
index 3452f4e1e..e0a790e63 100644
--- a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.sh
+++ b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,18 +14,18 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mPossibly hidden family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: if condition is yes.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: if condition is yes.
[1;4;38;5;46mA subfamily[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family.sub_family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family.sub_family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/24_0family_mandatory_condition.sh b/tests/results/test_namespace/24_0family_mandatory_condition.sh
index 99337d317..1e23c31d7 100644
--- a/tests/results/test_namespace/24_0family_mandatory_condition.sh
+++ b/tests/results/test_namespace/24_0family_mandatory_condition.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/24_0family_mandatory_condition_variable.adoc b/tests/results/test_namespace/24_0family_mandatory_condition_variable.adoc
index 10c2a4fd3..ff6a13543 100644
--- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.adoc
+++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.adoc
@@ -15,6 +15,6 @@ This family is a namespace. +
**Default**: true
| **rougail.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. +
-**Mandatory**: when the variable "a condition" has the value "true".
+**Mandatory**: when the variable "a condition" (rougail.condition) has the value "true".
|====
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 bf3b6231c..62fc163b3 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
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/24_0family_mandatory_condition_variable.html b/tests/results/test_namespace/24_0family_mandatory_condition_variable.html
index 711e3abbd..291075c41 100644
--- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.html
+++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.html
@@ -8,11 +8,11 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.var string standard mandatory | A variable. Mandatory: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.var string standard mandatory | A variable. Mandatory: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/24_0family_mandatory_condition_variable.json b/tests/results/test_namespace/24_0family_mandatory_condition_variable.json
index 67a488ec6..ab2098725 100644
--- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.json
+++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.json
@@ -43,7 +43,7 @@
"ori_name": "mandatory",
"access_control": false,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace/24_0family_mandatory_condition_variable.md b/tests/results/test_namespace/24_0family_mandatory_condition_variable.md
index 2c93c4af4..edead91b4 100644
--- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.md
+++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.md
@@ -6,8 +6,8 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace/24_0family_mandatory_condition_variable.sh
index 245558b30..d82100726 100644
--- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.sh
+++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,6 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mmandatory[0m[1;7m [0m β [1mMandatory[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/24_7validators_variable_optional.sh b/tests/results/test_namespace/24_7validators_variable_optional.sh
index 33e78e998..e833a270b 100644
--- a/tests/results/test_namespace/24_7validators_variable_optional.sh
+++ b/tests/results/test_namespace/24_7validators_variable_optional.sh
@@ -1,17 +1,17 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.general
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.general
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_0leadership.sh b/tests/results/test_namespace/40_0leadership.sh
index 8b023733a..0e43c71be 100644
--- a/tests/results/test_namespace/40_0leadership.sh
+++ b/tests/results/test_namespace/40_0leadership.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_0leadership_diff_name.sh b/tests/results/test_namespace/40_0leadership_diff_name.sh
index 8fe8afc4f..01afa8135 100644
--- a/tests/results/test_namespace/40_0leadership_diff_name.sh
+++ b/tests/results/test_namespace/40_0leadership_diff_name.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leadership
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leadership
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace/40_0leadership_follower_default_calculation.sh
index 60cbed4ed..890a30bb2 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.sh
+++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace/40_0leadership_follower_default_submulti.sh
index 4617d5a87..f57a570d0 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.sh
+++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.adoc b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.adoc
index c326db749..018d5aada 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.adoc
+++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.adoc
@@ -31,6 +31,6 @@ This family contains lists of variable blocks. +
* value
| **rougail.leader.follower2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | The follower2. +
-**Default**: the value of the variable "the follower1"
+**Default**: the value of the variable "the follower1" (rougail.leader.follower1).
|====
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 3ee443623..e7999b648 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
@@ -12,11 +12,11 @@
> **Path**: rougail.leader\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The leader.
**Default**:
β’ leader |
-| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower1.
**Default**:
β’ value |
-| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower2.
**Default**: the value of the variable "[the follower1](#rougail.leader.follower1)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The leader.
**Default**:
β’ leader |
+| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower1.
**Default**:
β’ value |
+| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower2.
**Default**: the value of the variable "[the follower1](#rougail.leader.follower1)" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.html b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.html
index 7ed117a71..f67b1f40b 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.html
+++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.html
@@ -16,12 +16,12 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
-rougail.leader.leader string multiple standard mandatory unique | The leader. Default: |
-rougail.leader.follower1 string multiple standard mandatory unique | The follower1. Default: |
-rougail.leader.follower2 string multiple standard mandatory unique | The follower2. Default: the value of the variable "the follower1" |
+rougail.leader.leader string multiple standard mandatory unique | The leader. Default: |
+rougail.leader.follower1 string multiple standard mandatory unique | The follower1. Default: |
+rougail.leader.follower2 string multiple standard mandatory unique | The follower2. Default: the value of the variable "the follower1" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.json b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.json
index a509e675c..5d6f1d9b4 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.json
+++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.json
@@ -106,7 +106,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leader.follower1",
"type": "variable"
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.md
index cf6bded19..61a6fadd4 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.md
+++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.md
@@ -14,9 +14,9 @@
> **Path**: rougail.leader\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The leader.
**Default**:
β’ leader |
-| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower1.
**Default**:
β’ value |
-| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower2.
**Default**: the value of the variable "[the follower1](#rougail.leader.follower1)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The leader.
**Default**:
β’ leader |
+| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower1.
**Default**:
β’ value |
+| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower2.
**Default**: the value of the variable "[the follower1](#rougail.leader.follower1)" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.sh
index b3afe6c4a..760d258ae 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.sh
+++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -28,6 +28,7 @@
β [1mrougail.leader.follower2[0m β The follower2. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "the follower1" β
+β β (rougail.leader.follower1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_value.sh b/tests/results/test_namespace/40_0leadership_follower_default_value.sh
index 72ef0b9d4..4b6ea50c7 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_value.sh
+++ b/tests/results/test_namespace/40_0leadership_follower_default_value.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.adoc b/tests/results/test_namespace/40_0leadership_leader_follower.adoc
index 3ca7a1dc6..c6e073bcc 100644
--- a/tests/results/test_namespace/40_0leadership_leader_follower.adoc
+++ b/tests/results/test_namespace/40_0leadership_leader_follower.adoc
@@ -27,6 +27,6 @@ This family contains lists of variable blocks. +
* value2
| **rougail.leadership.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (rougail.leadership.leader).
|====
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 067305b57..51b405064 100644
--- a/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md
@@ -12,10 +12,10 @@
> **Path**: rougail.leadership\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------|
-| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leadership.leader)" (rougail.leadership.leader). |
diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.html b/tests/results/test_namespace/40_0leadership_leader_follower.html
index ee07b9663..47df033f3 100644
--- a/tests/results/test_namespace/40_0leadership_leader_follower.html
+++ b/tests/results/test_namespace/40_0leadership_leader_follower.html
@@ -16,12 +16,12 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
rougail.leadership.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leadership.follower string standard mandatory | A follower. Default: the value of the variable "a leader" |
+value2
+rougail.leadership.follower string standard mandatory | A follower. Default: the value of the variable "a leader" (rougail.leadership.leader). |
diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.json b/tests/results/test_namespace/40_0leadership_leader_follower.json
index 77ed1b681..1d68134e0 100644
--- a/tests/results/test_namespace/40_0leadership_leader_follower.json
+++ b/tests/results/test_namespace/40_0leadership_leader_follower.json
@@ -72,7 +72,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leadership.leader",
"type": "variable"
diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.md b/tests/results/test_namespace/40_0leadership_leader_follower.md
index 8661eb238..c7696e96d 100644
--- a/tests/results/test_namespace/40_0leadership_leader_follower.md
+++ b/tests/results/test_namespace/40_0leadership_leader_follower.md
@@ -14,8 +14,8 @@
> **Path**: rougail.leadership\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------|
-| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leadership.leader)" (rougail.leadership.leader). |
diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.sh b/tests/results/test_namespace/40_0leadership_leader_follower.sh
index 951244cd6..5a223831d 100644
--- a/tests/results/test_namespace/40_0leadership_leader_follower.sh
+++ b/tests/results/test_namespace/40_0leadership_leader_follower.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leadership
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leadership
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -25,6 +25,7 @@
β [1mrougail.leadership.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "a leader" β
+β β (rougail.leadership.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace/40_0leadership_leader_not_multi.sh
index 0641bfa08..a7f173d83 100644
--- a/tests/results/test_namespace/40_0leadership_leader_not_multi.sh
+++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.sh
@@ -1,17 +1,17 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mgeneral[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.general
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.general
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -22,18 +22,18 @@
[1;4;92mgeneral1[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.general1
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.general1
+[34mβ [0m[1;7m basic [0m
[1;4;38;5;46mLeader[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.general1.leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.general1.leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_0leadership_reduce.sh b/tests/results/test_namespace/40_0leadership_reduce.sh
index fb7b2a695..abf089bbe 100644
--- a/tests/results/test_namespace/40_0leadership_reduce.sh
+++ b/tests/results/test_namespace/40_0leadership_reduce.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leadership
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leadership
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_1leadership_append_follower.sh b/tests/results/test_namespace/40_1leadership_append_follower.sh
index b285b0ae9..f2ada5deb 100644
--- a/tests/results/test_namespace/40_1leadership_append_follower.sh
+++ b/tests/results/test_namespace/40_1leadership_append_follower.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.sh b/tests/results/test_namespace/40_2leadership_calculation_index.sh
index 60968570a..cc62ea615 100644
--- a/tests/results/test_namespace/40_2leadership_calculation_index.sh
+++ b/tests/results/test_namespace/40_2leadership_calculation_index.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_2leadership_calculation_index_2.sh b/tests/results/test_namespace/40_2leadership_calculation_index_2.sh
index 60968570a..cc62ea615 100644
--- a/tests/results/test_namespace/40_2leadership_calculation_index_2.sh
+++ b/tests/results/test_namespace/40_2leadership_calculation_index_2.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace/40_2leadership_calculation_param_index.sh
index ca2f3dc51..103d76351 100644
--- a/tests/results/test_namespace/40_2leadership_calculation_param_index.sh
+++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mLeadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.sh b/tests/results/test_namespace/40_2leadership_leader_calculation.sh
index 62678c9c6..b41c8ab2b 100644
--- a/tests/results/test_namespace/40_2leadership_leader_calculation.sh
+++ b/tests/results/test_namespace/40_2leadership_leader_calculation.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.sh b/tests/results/test_namespace/40_6leadership_follower_multi.sh
index 9dafd1d6c..9948ce32f 100644
--- a/tests/results/test_namespace/40_6leadership_follower_multi.sh
+++ b/tests/results/test_namespace/40_6leadership_follower_multi.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leadership
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leadership
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.sh
index 31cd76f61..576942d16 100644
--- a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.sh
+++ b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leadership
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leadership
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_8calculation_boolean.sh b/tests/results/test_namespace/40_8calculation_boolean.sh
index c3c625e88..8f41db855 100644
--- a/tests/results/test_namespace/40_8calculation_boolean.sh
+++ b/tests/results/test_namespace/40_8calculation_boolean.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace/40_8calculation_boolean_return_none.sh
index 6a8686bc3..5551fd126 100644
--- a/tests/results/test_namespace/40_8calculation_boolean_return_none.sh
+++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_8calculation_integer.sh b/tests/results/test_namespace/40_8calculation_integer.sh
index 2bfb3f0ba..a4ad45491 100644
--- a/tests/results/test_namespace/40_8calculation_integer.sh
+++ b/tests/results/test_namespace/40_8calculation_integer.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.adoc b/tests/results/test_namespace/40_8calculation_multi_variable.adoc
index 076f8ce08..12a414a35 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable.adoc
+++ b/tests/results/test_namespace/40_8calculation_multi_variable.adoc
@@ -14,8 +14,8 @@ This family is a namespace. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A first variable. +
**Default**:
-* the value of the variable "a second variable"
-* the value of the variable "a third variable"
+* the value of the variable "a second variable" (rougail.var2)
+* the value of the variable "a third variable" (rougail.var3)
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
**Default**: no
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 b3c6e99e4..148e1478b 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md
@@ -5,11 +5,11 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#rougail.var2)"
β’ the value of the variable "[a third variable](#rougail.var3)" |
-| **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 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#rougail.var2)" (rougail.var2)
β’ the value of the variable "[a third variable](#rougail.var3)" (rougail.var3) |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.html b/tests/results/test_namespace/40_8calculation_multi_variable.html
index cde0c18d1..bcde31699 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable.html
+++ b/tests/results/test_namespace/40_8calculation_multi_variable.html
@@ -11,8 +11,8 @@ This family is a namespace.
| Variable | Description |
-rougail.var string multiple standard mandatory unique | A first variable. Default: - the value of the variable "a second variable"
-- the value of the variable "a third variable"
|
+rougail.var string multiple standard mandatory unique | A first variable. Default: - the value of the variable "a second variable" (rougail.var2)
+- the value of the variable "a third variable" (rougail.var3)
|
rougail.var2 string standard mandatory | A second variable. Default: no |
rougail.var3 string standard mandatory | A third variable. Default: yes |
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.json b/tests/results/test_namespace/40_8calculation_multi_variable.json
index a7367cb57..4925c1bf2 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable.json
+++ b/tests/results/test_namespace/40_8calculation_multi_variable.json
@@ -36,7 +36,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.var2",
"type": "variable"
@@ -44,7 +44,7 @@
"description": "a second variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.var3",
"type": "variable"
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.md b/tests/results/test_namespace/40_8calculation_multi_variable.md
index c7a174e7e..576a8cb35 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable.md
+++ b/tests/results/test_namespace/40_8calculation_multi_variable.md
@@ -6,9 +6,9 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#rougail.var2)"
β’ the value of the variable "[a third variable](#rougail.var3)" |
-| **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 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#rougail.var2)" (rougail.var2)
β’ the value of the variable "[a third variable](#rougail.var3)" (rougail.var3) |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.sh b/tests/results/test_namespace/40_8calculation_multi_variable.sh
index b99225f37..b81502ba3 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable.sh
+++ b/tests/results/test_namespace/40_8calculation_multi_variable.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -12,9 +12,9 @@
β [1mrougail.var[0m β A first variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
-β β second variable" β
+β β second variable" (rougail.var2) β
β β β’ the value of the variable "a third β
-β β variable" β
+β β variable" (rougail.var3) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: no β
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent.adoc b/tests/results/test_namespace/40_8calculation_multi_variable_parent.adoc
index e46bb61e5..ad0870615 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.adoc
+++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.adoc
@@ -28,6 +28,6 @@ This family is a namespace. +
| Variable | Description
| **rougail.fam1.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (rougail.var).
|====
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 ee18d327f..b42fec0dc 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
@@ -15,9 +15,9 @@
> **Path**: rougail.fam1\
> `standard`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **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 "[a variable](#rougail.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **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 "[a variable](#rougail.var)" (rougail.var). |
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent.html b/tests/results/test_namespace/40_8calculation_multi_variable_parent.html
index 23004bda1..4cfd698dd 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.html
+++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.html
@@ -23,10 +23,10 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.fam1.var string standard mandatory | A calculated variable. Default: the value of the variable "a variable" |
+rougail.fam1.var string standard mandatory | A calculated variable. Default: the value of the variable "a variable" (rougail.var). |
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent.json b/tests/results/test_namespace/40_8calculation_multi_variable_parent.json
index 507ca815f..16de265c7 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.json
+++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.json
@@ -59,7 +59,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent.md
index 6bb262908..347834b86 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.md
+++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.md
@@ -17,7 +17,7 @@
> **Path**: rougail.fam1\
> `standard`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **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 "[a variable](#rougail.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **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 "[a variable](#rougail.var)" (rougail.var). |
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace/40_8calculation_multi_variable_parent.sh
index f4b6d8f0b..a8b3f4b1f 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.sh
+++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,17 +14,17 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.fam1
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.fam1
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.fam1.var[0m β A calculated variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (rougail.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.adoc b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.adoc
index 39f7726af..c7a7ccd8a 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.adoc
+++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.adoc
@@ -36,6 +36,6 @@ This family is a namespace. +
| Variable | Description
| **rougail.fam2.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (rougail.fam1.var).
|====
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md
index 1e0aeb013..6bd78d94d 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
@@ -23,9 +23,9 @@
> **Path**: rougail.fam2\
> `standard`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
-| **rougail.fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#rougail.fam1.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **rougail.fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#rougail.fam1.var)" (rougail.fam1.var). |
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.html b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.html
index 6122539a1..b698a7bf7 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.html
+++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.html
@@ -29,10 +29,10 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.fam2.var string standard mandatory | A variable. Default: the value of the variable "a variable" |
+rougail.fam2.var string standard mandatory | A variable. Default: the value of the variable "a variable" (rougail.fam1.var). |
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.json b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.json
index d7f706ed7..0a254eb44 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.json
+++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.json
@@ -71,7 +71,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.fam1.var",
"type": "variable"
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md
index 924ff2741..2b21e1744 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md
+++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md
@@ -24,7 +24,7 @@
> **Path**: rougail.fam2\
> `standard`
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
-| **rougail.fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#rougail.fam1.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **rougail.fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#rougail.fam1.var)" (rougail.fam1.var). |
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.sh
index 4f089db26..81df00e51 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.sh
+++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.sh
@@ -1,17 +1,17 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mFirst family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.fam1
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.fam1
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -22,17 +22,17 @@
[1;4;92mSecond family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.fam2
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.fam2
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.fam2.var[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (rougail.fam1.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.adoc b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.adoc
index 31601e9a1..7402722af 100644
--- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.adoc
+++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.adoc
@@ -29,6 +29,6 @@ This family contains lists of variable blocks. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A follower. +
**Default**:
-* the value of the variable "a leader"
+* the value of the variable "a leader" (rougail.leadership.leader)
|====
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 0d52ccfa2..fdea12a52 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
@@ -12,10 +12,10 @@
> **Path**: rougail.leadership\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#rougail.leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#rougail.leadership.leader)" (rougail.leadership.leader) |
diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.html b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.html
index 38e026fc0..27d06249d 100644
--- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.html
+++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.html
@@ -16,12 +16,12 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
rougail.leadership.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leadership.follower string multiple standard mandatory unique | A follower. Default: - the value of the variable "a leader"
|
+value2
+rougail.leadership.follower string multiple standard mandatory unique | A follower. Default: - the value of the variable "a leader" (rougail.leadership.leader)
|
diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.json b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.json
index 9bffd1004..27a47f55d 100644
--- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.json
+++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.json
@@ -79,7 +79,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.leadership.leader",
"type": "variable"
diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.md
index ba1b19d53..a2ddfbc98 100644
--- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.md
+++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.md
@@ -14,8 +14,8 @@
> **Path**: rougail.leadership\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#rougail.leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#rougail.leadership.leader)" (rougail.leadership.leader) |
diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.sh
index 282458cb7..fa4ee1ca6 100644
--- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.sh
+++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leadership
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leadership
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -25,7 +25,7 @@
β [1mrougail.leadership.follower[0m β A follower. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
-β β leader" β
+β β leader" (rougail.leadership.leader) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.sh
index 8933a4873..6783c7671 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.sh
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.sh
index 8933a4873..6783c7671 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.sh
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.adoc b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.adoc
index 48b392be1..ccede38a7 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.adoc
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.adoc
@@ -30,8 +30,8 @@ This family contains lists of variable blocks. +
[cols="1a,1a"]
|====
-| Variable | Description
+| Variable | Description
| **rougail.variable** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | **Default**: the value of the variable "follower"
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | **Default**: the value of the variable "follower" (rougail.leader.follower).
|====
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 35694739b..1e4bd68c5 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
@@ -19,9 +19,9 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#rougail.leader.follower)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#rougail.leader.follower)" (rougail.leader.follower). |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.html b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.html
index e9277da38..cd7913b7b 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.html
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.html
@@ -27,10 +27,10 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
-rougail.variable string multiple standard unique | Default: the value of the variable "follower" |
+rougail.variable string multiple standard unique | Default: the value of the variable "follower" (rougail.leader.follower). |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.json b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.json
index 24bc2654d..631eb9442 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.json
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.json
@@ -79,7 +79,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leader.follower",
"type": "variable"
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.md
index 311d7717e..7d0170f64 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.md
@@ -19,7 +19,7 @@
| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#rougail.leader.follower)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#rougail.leader.follower)" (rougail.leader.follower). |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.sh
index 2c699004c..2c1b79ee4 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.sh
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mleader[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -30,6 +30,6 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.variable[0m β [1mDefault[0m: the value of the variable β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "follower" β
-β [1;7munique [0m β β
+β [1;7munique [0m β (rougail.leader.follower). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.adoc b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.adoc
index c8ba51fc2..81a6b80e5 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.adoc
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.adoc
@@ -38,6 +38,6 @@ This family contains lists of variable blocks. +
| Variable | Description
| **rougail.calculate** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A calculated variable. +
-**Default**: the value of the variable "a follower"
+**Default**: the value of the variable "a follower" (rougail.leader.follower1).
|====
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 326d8e497..bc527aa9d 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
@@ -20,9 +20,9 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#rougail.leader.follower1)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#rougail.leader.follower1)" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.html b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.html
index aefa98316..d3a3d7c89 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.html
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.html
@@ -28,10 +28,10 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
-rougail.calculate string multiple standard mandatory | A calculated variable. Default: the value of the variable "a follower" |
+rougail.calculate string multiple standard mandatory | A calculated variable. Default: the value of the variable "a follower" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.json b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.json
index f1509c0c1..0f7a65536 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.json
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.json
@@ -114,7 +114,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leader.follower1",
"type": "variable"
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md
index 3d9f41384..6481c79b4 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md
@@ -20,7 +20,7 @@
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#rougail.leader.follower1)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#rougail.leader.follower1)" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.sh
index 081046804..439750450 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.sh
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -35,5 +35,6 @@
β [1mrougail.calculate[0m β A calculated variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m β "a follower" β
+β β (rougail.leader.follower1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.sh
index 82f9d3983..3593e59e1 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.sh
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.sh
index 82f9d3983..3593e59e1 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.sh
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.adoc b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.adoc
index 96c401090..7e67bde3f 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.adoc
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.adoc
@@ -38,6 +38,6 @@ This family contains lists of variable blocks. +
| Variable | Description
| **rougail.calculate** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A calculated variable. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (rougail.leader.leader).
|====
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 9f0a87ac1..02c86a461 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
@@ -20,9 +20,9 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#rougail.leader.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#rougail.leader.leader)" (rougail.leader.leader). |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.html b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.html
index a687d3d00..02bed1031 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.html
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.html
@@ -28,10 +28,10 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
-rougail.calculate string multiple standard mandatory unique | A calculated variable. Default: the value of the variable "a leader" |
+rougail.calculate string multiple standard mandatory unique | A calculated variable. Default: the value of the variable "a leader" (rougail.leader.leader). |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.json b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.json
index 21dbc3917..c795696c4 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.json
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.json
@@ -120,7 +120,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leader.leader",
"type": "variable"
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md
index ede50a371..2cb3a78c6 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md
@@ -20,7 +20,7 @@
| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#rougail.leader.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#rougail.leader.leader)" (rougail.leader.leader). |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.sh
index 9ef2c7bf5..b8567572f 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.sh
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -34,6 +34,6 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.calculate[0m β A calculated variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "a leader" β
+β [1;7mmandatory [0m [1;7m unique [0m β "a leader" (rougail.leader.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.adoc b/tests/results/test_namespace/40_9leadership-calculation-variable.adoc
index f5898110b..63114d315 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable.adoc
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable.adoc
@@ -32,7 +32,7 @@ This family contains lists of variable blocks. +
| Variable | Description
| **rougail.leader.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A leader. +
-**Default**: the value of the variable "a calculated variable"
+**Default**: the value of the variable "a calculated variable" (rougail.calculate).
| **rougail.leader.follower1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
**Default**: val11
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 f003e2def..6bfc61ca4 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md
@@ -16,11 +16,11 @@
> **Path**: rougail.leader\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#rougail.calculate)" |
-| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
-| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#rougail.calculate)" (rougail.calculate). |
+| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
+| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.html b/tests/results/test_namespace/40_9leadership-calculation-variable.html
index dcfa5ef9b..23381d862 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable.html
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable.html
@@ -26,12 +26,12 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
-rougail.leader.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a calculated variable" |
-rougail.leader.follower1 string standard mandatory | A follower. Default: val11 |
-rougail.leader.follower2 string standard mandatory | An other follower. Default: val21 |
+rougail.leader.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a calculated variable" (rougail.calculate). |
+rougail.leader.follower1 string standard mandatory | A follower. Default: val11 |
+rougail.leader.follower2 string standard mandatory | An other follower. Default: val21 |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.json b/tests/results/test_namespace/40_9leadership-calculation-variable.json
index ab4c4ceec..6051cb44f 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable.json
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable.json
@@ -78,7 +78,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.calculate",
"type": "variable"
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.md b/tests/results/test_namespace/40_9leadership-calculation-variable.md
index b723b6e1e..ef426e449 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable.md
@@ -18,9 +18,9 @@
> **Path**: rougail.leader\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#rougail.calculate)" |
-| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
-| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#rougail.calculate)" (rougail.calculate). |
+| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
+| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.sh b/tests/results/test_namespace/40_9leadership-calculation-variable.sh
index 6d45c88cd..55ec16ec9 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable.sh
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,11 +16,11 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -28,6 +28,7 @@
β [1mrougail.leader.leader[0m β A leader. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "a calculated variable" β
+β β (rougail.calculate). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.leader.follower1[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: val11 β
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.adoc b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.adoc
index ddd16c2d5..518957977 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.adoc
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.adoc
@@ -43,7 +43,7 @@ This family contains lists of variable blocks. +
| Variable | Description
| **rougail.leadership_2.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A leader. +
-**Default**: the value of the variable "a follower"
+**Default**: the value of the variable "a follower" (rougail.leadership_1.follower).
| **rougail.leadership_2.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
**Default**: val
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 9f727947a..5844de708 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
@@ -26,10 +26,10 @@
> **Path**: rougail.leadership_2\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#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 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#rougail.leadership_1.follower)" (rougail.leadership_1.follower). |
+| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.html b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.html
index e2fe0b37c..ba3b898c5 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.html
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.html
@@ -35,11 +35,11 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
-rougail.leadership_2.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a follower" |
-rougail.leadership_2.follower string standard mandatory | A follower. Default: val |
+rougail.leadership_2.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a follower" (rougail.leadership_1.follower). |
+rougail.leadership_2.follower string standard mandatory | A follower. Default: val |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.json b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.json
index a3ca9b3b5..3f8a9ca2f 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.json
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.json
@@ -109,7 +109,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leadership_1.follower",
"type": "variable"
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.md
index 6015deda3..c69116e30 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.md
@@ -27,8 +27,8 @@
> **Path**: rougail.leadership_2\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#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 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#rougail.leadership_1.follower)" (rougail.leadership_1.follower). |
+| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.sh
index 7e76c137d..0ad00c9ac 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.sh
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leadership_1
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leadership_1
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -28,11 +28,11 @@
[1;4;92mA second leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leadership_2
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leadership_2
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -40,6 +40,7 @@
β [1mrougail.leadership_2.leader[0m β A leader. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "a follower" β
+β β (rougail.leadership_1.follower). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.leadership_2.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: val β
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.adoc b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.adoc
index 15898a8ed..f934fad32 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.adoc
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.adoc
@@ -49,6 +49,6 @@ This family contains lists of variable blocks. +
* value2
| **rougail.leadership_2.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A follower. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (rougail.leadership_1.leader).
|====
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 5094cc019..b58c57c10 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
@@ -26,10 +26,10 @@
> **Path**: rougail.leadership_2\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#rougail.leadership_1.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#rougail.leadership_1.leader)" (rougail.leadership_1.leader). |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.html b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.html
index fbf92855f..0df209744 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.html
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.html
@@ -35,12 +35,12 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
rougail.leadership_2.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leadership_2.follower string multiple standard mandatory unique | A follower. Default: the value of the variable "a leader" |
+value2
+rougail.leadership_2.follower string multiple standard mandatory unique | A follower. Default: the value of the variable "a leader" (rougail.leadership_1.leader). |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.json b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.json
index d71e06aee..890a1fa3d 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.json
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.json
@@ -139,7 +139,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leadership_1.leader",
"type": "variable"
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.md
index 3e4654901..7b79663f5 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.md
@@ -27,8 +27,8 @@
> **Path**: rougail.leadership_2\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#rougail.leadership_1.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#rougail.leadership_1.leader)" (rougail.leadership_1.leader). |
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.sh
index 528309e9b..6123f8d42 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.sh
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leadership_1
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leadership_1
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -28,11 +28,11 @@
[1;4;92mA second leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leadership_2
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leadership_2
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -45,6 +45,7 @@
β [1mrougail.leadership_2.follower[0m β A follower. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "a leader" β
+β β (rougail.leadership_1.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/41_0choice_leader.sh b/tests/results/test_namespace/41_0choice_leader.sh
index f8b458d78..92db77f23 100644
--- a/tests/results/test_namespace/41_0choice_leader.sh
+++ b/tests/results/test_namespace/41_0choice_leader.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mThe leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace/44_4disabled_calcultion_follower.sh
index df4140750..74fa44be7 100644
--- a/tests/results/test_namespace/44_4disabled_calcultion_follower.sh
+++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,11 +14,11 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.sh b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.sh
index 6df6946ff..14960467d 100644
--- a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.sh
+++ b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leadership
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leadership
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/44_4leadership_mandatory.sh b/tests/results/test_namespace/44_4leadership_mandatory.sh
index 25b4c344d..b0036b2ab 100644
--- a/tests/results/test_namespace/44_4leadership_mandatory.sh
+++ b/tests/results/test_namespace/44_4leadership_mandatory.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace/44_4leadership_mandatory_follower.sh
index 0417a4d7c..6632eeece 100644
--- a/tests/results/test_namespace/44_4leadership_mandatory_follower.sh
+++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.sh
index 736d9e1dc..fda276450 100644
--- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.sh
+++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,12 +14,12 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: if condition is no.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: if condition is no.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.sh
index d45cce38a..21a7521ca 100644
--- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.sh
+++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,11 +14,11 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.adoc b/tests/results/test_namespace/44_9calculated_default_leadership_leader.adoc
index 836833061..ed38e3b75 100644
--- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.adoc
+++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.adoc
@@ -27,7 +27,7 @@ This family contains lists of variable blocks. +
* b
| **rougail.leader.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A follower. +
-**Default**: the value of the variable "a leader" +
-**Disabled**: if the value of "a leader" is "a".
+**Default**: the value of the variable "a leader" (rougail.leader.leader). +
+**Disabled**: if the value of "a leader" (rougail.leader.leader) is "a".
|====
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 1082981e5..23dc1c889 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
@@ -12,10 +12,10 @@
> **Path**: rougail.leader\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leader.leader)"
**Disabled**: if the value of "[a leader](#rougail.leader.leader)" is "a". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leader.leader)" (rougail.leader.leader).
**Disabled**: if the value of "[a leader](#rougail.leader.leader)" (rougail.leader.leader) is "a". |
diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.html b/tests/results/test_namespace/44_9calculated_default_leadership_leader.html
index e4c73c5d4..fe650aa03 100644
--- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.html
+++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.html
@@ -16,12 +16,12 @@ This family contains lists of variable blocks.
-| Variable | Description |
+| Variable | Description |
rougail.leader.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leader.follower string standard mandatory disabled | A follower. Default: the value of the variable "a leader" Disabled: if the value of "a leader" is "a". |
+b
+rougail.leader.follower string standard mandatory disabled | A follower. Default: the value of the variable "a leader" (rougail.leader.leader). Disabled: if the value of "a leader" (rougail.leader.leader) is "a". |
diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.json b/tests/results/test_namespace/44_9calculated_default_leadership_leader.json
index 36c48392f..2aa684f6b 100644
--- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.json
+++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.json
@@ -72,7 +72,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if the value of \"{0}\" is \"a\".",
+ "description": "if the value of {0} is \"a\".",
"variables": [
{
"path": "rougail.leader.leader",
@@ -87,7 +87,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leader.leader",
"type": "variable"
diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.md b/tests/results/test_namespace/44_9calculated_default_leadership_leader.md
index 7aedc9e30..44363af84 100644
--- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.md
+++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.md
@@ -14,8 +14,8 @@
> **Path**: rougail.leader\
> `standard`
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leader.leader)"
**Disabled**: if the value of "[a leader](#rougail.leader.leader)" is "a". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leader.leader)" (rougail.leader.leader).
**Disabled**: if the value of "[a leader](#rougail.leader.leader)" (rougail.leader.leader) is "a". |
diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace/44_9calculated_default_leadership_leader.sh
index f02d39003..5bf792549 100644
--- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.sh
+++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mLeader[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -24,9 +24,9 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.leader.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;3;7mdisabled[0m[1;7m [0m β "a leader" β
+β [1;3;7mdisabled[0m[1;7m [0m β "a leader" (rougail.leader.leader). β
β β [1mDisabled[0m: if the value of "a leader" β
-β β is "a". β
+β β (rougail.leader.leader) is "a". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_0family_dynamic.adoc b/tests/results/test_namespace/60_0family_dynamic.adoc
index 24f7b8e7d..e3234e53b 100644
--- a/tests/results/test_namespace/60_0family_dynamic.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
diff --git a/tests/results/test_namespace/60_0family_dynamic.gitlab.md b/tests/results/test_namespace/60_0family_dynamic.gitlab.md
index c7d77281b..08c4252c3 100644
--- a/tests/results/test_namespace/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic.gitlab.md
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic.html b/tests/results/test_namespace/60_0family_dynamic.html
index e1ced199f..17bf05aba 100644
--- a/tests/results/test_namespace/60_0family_dynamic.html
+++ b/tests/results/test_namespace/60_0family_dynamic.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic.json b/tests/results/test_namespace/60_0family_dynamic.json
index 4bd6ec1a2..7828de91f 100644
--- a/tests/results/test_namespace/60_0family_dynamic.json
+++ b/tests/results/test_namespace/60_0family_dynamic.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic.md b/tests/results/test_namespace/60_0family_dynamic.md
index 3e0a55b19..38b32a863 100644
--- a/tests/results/test_namespace/60_0family_dynamic.md
+++ b/tests/results/test_namespace/60_0family_dynamic.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic.sh b/tests/results/test_namespace/60_0family_dynamic.sh
index 39d641897..f87a9b512 100644
--- a/tests/results/test_namespace/60_0family_dynamic.sh
+++ b/tests/results/test_namespace/60_0family_dynamic.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.adoc b/tests/results/test_namespace/60_0family_dynamic_1_0.adoc
index d55566360..a3a2926ff 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 9836f3d54..be0a66ff0 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.html b/tests/results/test_namespace/60_0family_dynamic_1_0.html
index 4d9c7b932..ea4e3b7f1 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0.html
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.json b/tests/results/test_namespace/60_0family_dynamic_1_0.json
index 19fdb3d2d..3843eedc6 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0.json
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0.json
@@ -62,7 +62,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.md b/tests/results/test_namespace/60_0family_dynamic_1_0.md
index 778775032..290f9f618 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.sh b/tests/results/test_namespace/60_0family_dynamic_1_0.sh
index 0eb51a85a..26ff34536 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn[0m[1;3;4;92mval1[0m[1;4;92m or dyn[0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.adoc
index f86471e18..0942b19ce 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 438f7ef88..70a3c7c0b 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.html b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.html
index c701b94ec..0a1d92a10 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.html
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.json b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.json
index 3c0887ee6..d16d8d274 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.json
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.json
@@ -56,7 +56,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.md b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.md
index 1fe1be457..258846d56 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.sh
index 78eb8175a..e5de6dbec 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn[0m[1;3;4;92mval1[0m[1;4;92m or dyn[0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.adoc b/tests/results/test_namespace/60_0family_dynamic_1_0_type.adoc
index 4b9e49a6a..3c3550d8d 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 060234799..c7929ed9f 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.html b/tests/results/test_namespace/60_0family_dynamic_1_0_type.html
index 586a0e6bd..1e864711e 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.html
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.json b/tests/results/test_namespace/60_0family_dynamic_1_0_type.json
index a874c2e5f..b5fae7240 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.json
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.json
@@ -62,7 +62,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type.md
index 4b0a7cb97..5ecb4d6cc 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace/60_0family_dynamic_1_0_type.sh
index d105ac02d..997836f80 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn[0m[1;3;4;92mval1[0m[1;4;92m or dyn[0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.adoc
index a000373ed..ecc66c550 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 e26dee869..8518a2565 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.html b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.html
index 55f0b263b..71347cc5e 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.html
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.json b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.json
index a7e918e23..84ea564ee 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.json
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.json
@@ -56,7 +56,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.md
index b54c2c968..4b0e94ea3 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.sh
index 537fdaac9..dd6005756 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn[0m[1;3;4;92mval1[0m[1;4;92m or dyn[0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.adoc b/tests/results/test_namespace/60_0family_dynamic_1_1.adoc
index c7ab3452d..fad81f1aa 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_1.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_1_1.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 59c82e87a..8aab36314 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.html b/tests/results/test_namespace/60_0family_dynamic_1_1.html
index bb0a9ccf3..19b573544 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_1.html
+++ b/tests/results/test_namespace/60_0family_dynamic_1_1.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.json b/tests/results/test_namespace/60_0family_dynamic_1_1.json
index e84d5ac08..a3f689ddd 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_1.json
+++ b/tests/results/test_namespace/60_0family_dynamic_1_1.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.md b/tests/results/test_namespace/60_0family_dynamic_1_1.md
index d76600a0c..6f589a3e3 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_1.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_1.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.sh b/tests/results/test_namespace/60_0family_dynamic_1_1.sh
index b7ed23a2f..262d16212 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_1.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_1_1.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.adoc
index 894571bf0..79abbfacf 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 ad26edb55..d3aa4824f 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.html b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.html
index 87f4064e6..c04693f7b 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.html
+++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.json b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.json
index fdb76f23d..ee3436994 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.json
+++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.md b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.md
index cd37440db..2f75b2f97 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.sh
index 346f9790b..24db6886c 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_empty.adoc
index 918d1369f..c6d959388 100644
--- a/tests/results/test_namespace/60_0family_dynamic_empty.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_empty.adoc
@@ -22,7 +22,7 @@ This family is a namespace. +
This family builds families dynamically. +
**Path**: rougail.dyn__example__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 353ec07d8..a15a0e78e 100644
--- a/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md
@@ -15,7 +15,7 @@
> This family builds families dynamically.\
> **Path**: rougail.dyn*example*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.html b/tests/results/test_namespace/60_0family_dynamic_empty.html
index bfc16d132..1c715ea66 100644
--- a/tests/results/test_namespace/60_0family_dynamic_empty.html
+++ b/tests/results/test_namespace/60_0family_dynamic_empty.html
@@ -23,7 +23,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.json b/tests/results/test_namespace/60_0family_dynamic_empty.json
index ca0a82b86..180258ef3 100644
--- a/tests/results/test_namespace/60_0family_dynamic_empty.json
+++ b/tests/results/test_namespace/60_0family_dynamic_empty.json
@@ -47,7 +47,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.md b/tests/results/test_namespace/60_0family_dynamic_empty.md
index c9172b4bb..5b795e02c 100644
--- a/tests/results/test_namespace/60_0family_dynamic_empty.md
+++ b/tests/results/test_namespace/60_0family_dynamic_empty.md
@@ -17,7 +17,7 @@
> This family builds families dynamically.\
> **Path**: rougail.dyn*example*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.sh b/tests/results/test_namespace/60_0family_dynamic_empty.sh
index 36c9755be..57c5c2174 100644
--- a/tests/results/test_namespace/60_0family_dynamic_empty.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -15,12 +15,12 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: rougail.dyn[3mexample[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: rougail.dyn[3mexample[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.adoc b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.adoc
index 8b9095405..a03968d52 100644
--- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val_1__
* rougail.dyn__val_2__ +
`standard` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 4d67030e1..2a55f10f0 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val_1*
> - rougail.dyn*val_2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.html b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.html
index a88e790f5..b51ed9e6b 100644
--- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.html
+++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.json b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.json
index eca8c34fc..762c4139e 100644
--- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.json
+++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md
index 01d8f1d4e..98b885c6e 100644
--- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md
+++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val_1*
> - rougail.dyn*val_2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh
index 6ff962c6c..0a80196eb 100644
--- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval_1[0m
-[34mβ [0m β’ rougail.dyn[3mval_2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval_1[0m
+[34mβ [0m β’ rougail.dyn[3mval_2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.adoc
index 3ee1827af..9bd519e59 100644
--- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__1__
* rougail.dyn__2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -45,6 +45,6 @@ This family builds families dynamically. +
| Variable | Description
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: get the value of "a variable inside dynamic family".
+**Default**: get the value of "a variable inside dynamic family" (rougail.dyn__1__.var).
|====
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 6f641ac20..d66762e99 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
@@ -17,7 +17,7 @@
> - rougail.dyn*1*
> - rougail.dyn*2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
@@ -25,9 +25,9 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)" (rougail.dyn*1*.var). |
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.html b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.html
index d3a0db723..13a4464fe 100644
--- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.html
+++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
@@ -38,10 +38,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-rougail.var2 string standard mandatory | A variable. Default: get the value of "a variable inside dynamic family". |
+rougail.var2 string standard mandatory | A variable. Default: get the value of "a variable inside dynamic family" (rougail.dyn1.var). |
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.json b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.json
index 86d03c5c5..ef4953514 100644
--- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.json
+++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -114,7 +114,7 @@
"default": {
"name": "Default",
"values": {
- "description": "get the value of \"{0}\".",
+ "description": "get the value of {0}.",
"variables": [
{
"path": "rougail.dyn{{ identifier }}.var",
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.md b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.md
index 8942b5b1e..314b2ff24 100644
--- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.md
+++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.md
@@ -19,13 +19,13 @@
> - rougail.dyn*1*
> - rougail.dyn*2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
| **rougail.dyn*1*.var**
**rougail.dyn*2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: val |
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)" (rougail.dyn*1*.var). |
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.sh
index c3ab9fac6..e7aba49b4 100644
--- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3m1[0m
-[34mβ [0m β’ rougail.dyn[3m2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3m1[0m
+[34mβ [0m β’ rougail.dyn[3m2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -38,6 +38,7 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.var2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: get the value of "a β
-β β variable inside dynamic family". β
+β β variable inside dynamic family" β
+β β (rougail.dyn[3m1[0m.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.adoc b/tests/results/test_namespace/60_0family_dynamic_jinja_number.adoc
index 535b33b93..a2d6e2b5b 100644
--- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__1__
* rougail.dyn__2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -45,6 +45,6 @@ This family builds families dynamically. +
| Variable | Description
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: get the value of "a variable inside dynamic family".
+**Default**: get the value of "a variable inside dynamic family" (rougail.dyn__1__.var).
|====
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md
index 72db9fb01..fcb88f798 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
@@ -17,7 +17,7 @@
> - rougail.dyn*1*
> - rougail.dyn*2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
@@ -25,9 +25,9 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)" (rougail.dyn*1*.var). |
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.html b/tests/results/test_namespace/60_0family_dynamic_jinja_number.html
index 62ec5fc85..2a081882b 100644
--- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.html
+++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
@@ -38,10 +38,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-rougail.var2 string standard mandatory | A variable. Default: get the value of "a variable inside dynamic family". |
+rougail.var2 string standard mandatory | A variable. Default: get the value of "a variable inside dynamic family" (rougail.dyn1.var). |
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.json b/tests/results/test_namespace/60_0family_dynamic_jinja_number.json
index e7252d254..06c5ff0e9 100644
--- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.json
+++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -120,7 +120,7 @@
"default": {
"name": "Default",
"values": {
- "description": "get the value of \"{0}\".",
+ "description": "get the value of {0}.",
"variables": [
{
"path": "rougail.dyn{{ identifier }}.var",
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.md b/tests/results/test_namespace/60_0family_dynamic_jinja_number.md
index b0e1e45f2..18b2b2a97 100644
--- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.md
+++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.md
@@ -19,13 +19,13 @@
> - rougail.dyn*1*
> - rougail.dyn*2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
| **rougail.dyn*1*.var**
**rougail.dyn*2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: val |
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)" (rougail.dyn*1*.var). |
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace/60_0family_dynamic_jinja_number.sh
index 5142ac17a..8ab402e6d 100644
--- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3m1[0m
-[34mβ [0m β’ rougail.dyn[3m2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3m1[0m
+[34mβ [0m β’ rougail.dyn[3m2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -38,6 +38,7 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.var2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: get the value of "a β
-β β variable inside dynamic family". β
+β β variable inside dynamic family" β
+β β (rougail.dyn[3m1[0m.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.adoc b/tests/results/test_namespace/60_0family_dynamic_no_description.adoc
index 7a349caeb..24dc09eed 100644
--- a/tests/results/test_namespace/60_0family_dynamic_no_description.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_no_description.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 e1c705b52..a025bdcc5 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.html b/tests/results/test_namespace/60_0family_dynamic_no_description.html
index 05bc9eb0b..d20b0eca1 100644
--- a/tests/results/test_namespace/60_0family_dynamic_no_description.html
+++ b/tests/results/test_namespace/60_0family_dynamic_no_description.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.json b/tests/results/test_namespace/60_0family_dynamic_no_description.json
index 90f307aa7..48c337199 100644
--- a/tests/results/test_namespace/60_0family_dynamic_no_description.json
+++ b/tests/results/test_namespace/60_0family_dynamic_no_description.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.md b/tests/results/test_namespace/60_0family_dynamic_no_description.md
index 5a94f1995..fd30608c2 100644
--- a/tests/results/test_namespace/60_0family_dynamic_no_description.md
+++ b/tests/results/test_namespace/60_0family_dynamic_no_description.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.sh b/tests/results/test_namespace/60_0family_dynamic_no_description.sh
index 8eb341c7e..e9187e66a 100644
--- a/tests/results/test_namespace/60_0family_dynamic_no_description.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_no_description.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.adoc
index 3fd5c7c11..97ebf2eef 100644
--- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 6cd11d25d..e811a947a 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.html b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.html
index 2865b41ee..735641a97 100644
--- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.html
+++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.json b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.json
index 4b97ec9f8..f5b6a371a 100644
--- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.json
+++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.md b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.md
index e4beb5167..79adbcd0c 100644
--- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.md
+++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.sh
index 2efc45577..0ee54f508 100644
--- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace/60_0family_dynamic_source_hidden.sh
index 8765196b0..01464b430 100644
--- a/tests/results/test_namespace/60_0family_dynamic_source_hidden.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_source_hidden.sh
@@ -1,23 +1,23 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: [1m([0mfrom an undocumented variable[1m)[0m
-[34mβ [0m β’ val1
-[34mβ [0m β’ val2
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: [1m([0mfrom an undocumented variable[1m)[0m
+[34mβ [0m β’ val1
+[34mβ [0m β’ val2
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_static.sh b/tests/results/test_namespace/60_0family_dynamic_static.sh
index 474b860ad..7e70ce49b 100644
--- a/tests/results/test_namespace/60_0family_dynamic_static.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_static.sh
@@ -1,23 +1,23 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ val1
-[34mβ [0m β’ val2
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ val1
+[34mβ [0m β’ val2
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_test.adoc b/tests/results/test_namespace/60_0family_dynamic_test.adoc
index 3d4969b1c..99de1fcd3 100644
--- a/tests/results/test_namespace/60_0family_dynamic_test.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_test.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 7707ee2cb..0e4944a87 100644
--- a/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_test.html b/tests/results/test_namespace/60_0family_dynamic_test.html
index 400d1143f..e569c52ac 100644
--- a/tests/results/test_namespace/60_0family_dynamic_test.html
+++ b/tests/results/test_namespace/60_0family_dynamic_test.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_test.json b/tests/results/test_namespace/60_0family_dynamic_test.json
index 18ff20bf4..3b3ed9771 100644
--- a/tests/results/test_namespace/60_0family_dynamic_test.json
+++ b/tests/results/test_namespace/60_0family_dynamic_test.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_test.md b/tests/results/test_namespace/60_0family_dynamic_test.md
index 8e84a8270..9b4ee5003 100644
--- a/tests/results/test_namespace/60_0family_dynamic_test.md
+++ b/tests/results/test_namespace/60_0family_dynamic_test.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_test.sh b/tests/results/test_namespace/60_0family_dynamic_test.sh
index bcb3324df..cfe5d20e0 100644
--- a/tests/results/test_namespace/60_0family_dynamic_test.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_test.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.adoc b/tests/results/test_namespace/60_0family_dynamic_upper_char.adoc
index ec133888b..c97d41995 100644
--- a/tests/results/test_namespace/60_0family_dynamic_upper_char.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 b4929dbaf..077d468a6 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.html b/tests/results/test_namespace/60_0family_dynamic_upper_char.html
index 3a17f43f8..898e7085d 100644
--- a/tests/results/test_namespace/60_0family_dynamic_upper_char.html
+++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.json b/tests/results/test_namespace/60_0family_dynamic_upper_char.json
index a4431ec91..8c4232369 100644
--- a/tests/results/test_namespace/60_0family_dynamic_upper_char.json
+++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.md b/tests/results/test_namespace/60_0family_dynamic_upper_char.md
index 2e888fbbb..2a310c05d 100644
--- a/tests/results/test_namespace/60_0family_dynamic_upper_char.md
+++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace/60_0family_dynamic_upper_char.sh
index 3accc4796..9ffab1137 100644
--- a/tests/results/test_namespace/60_0family_dynamic_upper_char.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_variable_empty.adoc
index 7898cfd91..c8427105a 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.adoc
@@ -22,7 +22,7 @@ This family is a namespace. +
This family builds families dynamically. +
**Path**: rougail.dyn__example__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 dcff97e38..d4ebdcdcc 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
@@ -15,7 +15,7 @@
> This family builds families dynamically.\
> **Path**: rougail.dyn*example*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.html b/tests/results/test_namespace/60_0family_dynamic_variable_empty.html
index d2efd5746..b50b71502 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.html
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.html
@@ -23,7 +23,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.json b/tests/results/test_namespace/60_0family_dynamic_variable_empty.json
index f125f9c8e..6033509c8 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.json
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.json
@@ -53,7 +53,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.md b/tests/results/test_namespace/60_0family_dynamic_variable_empty.md
index 5f2c5ca53..1d6509cb9 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.md
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.md
@@ -17,7 +17,7 @@
> This family builds families dynamically.\
> **Path**: rougail.dyn*example*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace/60_0family_dynamic_variable_empty.sh
index a9be14e74..4eedda60b 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -15,12 +15,12 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: rougail.dyn[3mexample[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: rougail.dyn[3mexample[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_optional.sh b/tests/results/test_namespace/60_0family_dynamic_variable_optional.sh
index 16ab62bc7..ad7a68716 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_optional.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_optional.sh
@@ -1,23 +1,23 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3ma[0m
-[34mβ [0m β’ rougail.dyn[3mb[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ a
-[34mβ [0m β’ b
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3ma[0m
+[34mβ [0m β’ rougail.dyn[3mb[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ a
+[34mβ [0m β’ b
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.adoc b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.adoc
index 278f22a0a..773343b8e 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 2a064b289..d36df9b46 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.html b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.html
index e3b1614d6..46fbded3b 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.html
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.json b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.json
index f47bbc05b..bc566195e 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.json
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md
index ebb3df2f5..68b0f8872 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.sh
index 692fa04c0..7cb79d8ff 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.adoc b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.adoc
index c97bff8da..b30a4d555 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.adoc
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 437049a03..353263245 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.html b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.html
index 1349e7f02..4ee703bf6 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.html
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.json b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.json
index bb3530a2f..a17433ce5 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.json
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.md
index 96cdd2df9..88433eb0d 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.md
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.sh
index 5b25cb722..747556fa6 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.sh
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_0family_mode.sh b/tests/results/test_namespace/60_0family_mode.sh
index e9edf9e27..36b45e04f 100644
--- a/tests/results/test_namespace/60_0family_mode.sh
+++ b/tests/results/test_namespace/60_0family_mode.sh
@@ -1,17 +1,17 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.sh b/tests/results/test_namespace/60_1family_dynamic_jinja.sh
index 8b636bf6c..8fa5ef3e4 100644
--- a/tests/results/test_namespace/60_1family_dynamic_jinja.sh
+++ b/tests/results/test_namespace/60_1family_dynamic_jinja.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3m1[0m
-[34mβ [0m β’ rougail.dyn[3m2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: index of suffix value.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3m1[0m
+[34mβ [0m β’ rougail.dyn[3m2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: index of suffix value.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.adoc b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.adoc
index 50b29d721..22e502538 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.adoc
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var1).
====
==== A family
@@ -55,6 +55,6 @@ This family builds families dynamically. +
| Variable | Description
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of "with a variable".
+**Default**: the value of "with a variable" (rougail.dyn__val1__.family.var).
|====
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 c1af7916f..e471d7f48 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var1)" (rougail.var1).
A family
@@ -35,9 +35,9 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#rougail.dyn:::identifier:::.family.var)". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#rougail.dyn:::identifier:::.family.var)" (rougail.dyn*val1*.family.var). |
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.html b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.html
index 2a9ff6f17..ac0827cfb 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.html
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var1).
A family
@@ -45,10 +45,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-rougail.var2 string standard mandatory | A second variable. Default: the value of "with a variable". |
+rougail.var2 string standard mandatory | A second variable. Default: the value of "with a variable" (rougail.dynval1.family.var). |
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.json b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.json
index 52d5d13b8..a38732212 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.json
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -136,7 +136,7 @@
"default": {
"name": "Default",
"values": {
- "description": "the value of \"{0}\".",
+ "description": "the value of {0}.",
"variables": [
{
"path": "rougail.dyn{{ identifier }}.family.var",
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.md
index 04aa6718c..c23b84e0e 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.md
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var1)" (rougail.var1).
### A family
@@ -34,7 +34,7 @@
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------|
| **rougail.dyn*val1*.family.var**
**rougail.dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. |
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#rougail.dyn:::identifier:::.family.var)". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#rougail.dyn:::identifier:::.family.var)" (rougail.dyn*val1*.family.var). |
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.sh
index 574dcafa4..18d281e93 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.sh
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,23 +16,23 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var1[1m)[0m.
[1;4;38;5;46mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m.family
-[34mβ [0m β’ rougail.dyn[3mval2[0m.family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m.family
+[34mβ [0m β’ rougail.dyn[3mval2[0m.family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -48,6 +48,7 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of "with a β
-β β variable". β
+β β variable" β
+β β (rougail.dyn[3mval1[0m.family.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.adoc b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.adoc
index 047a2c9b6..1471ab874 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.adoc
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "a identifier variable"
+**Identifiers**: the value of the variable "a identifier variable" (rougail.var).
====
==== A family inside dynamic family
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 b9200f5f2..2d7072ee4 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a identifier variable](#rougail.var)" (rougail.var).
A family inside dynamic family
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.html b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.html
index 2389f5ad7..6423df6fe 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.html
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a identifier variable"
+Identifiers: the value of the variable "a identifier variable" (rougail.var).
A family inside dynamic family
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.json b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.json
index 19c6aed9f..8199bf69a 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.json
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.md
index 22604cd40..a9f5372d8 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.md
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a identifier variable](#rougail.var)" (rougail.var).
### A family inside dynamic family
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.sh
index c88c88fc6..c14162605 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.sh
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,23 +16,24 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a identifier variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a identifier variable"[0m
+[34mβ [0m[1m([0mrougail.var[1m)[0m.
[1;4;38;5;46mA family inside dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m.family
-[34mβ [0m β’ rougail.dyn[3mval2[0m.family
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m.family
+[34mβ [0m β’ rougail.dyn[3mval2[0m.family
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc
index 5e8ae5b99..7d9ed5a43 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "a identifier variable"
+**Identifiers**: the value of the variable "a identifier variable" (rougail.var).
====
==== A family inside dynamic family
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 1ac78cf9b..96fe5ec70 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a identifier variable](#rougail.var)" (rougail.var).
A family inside dynamic family
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.html b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.html
index 190a27dfb..522318545 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.html
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a identifier variable"
+Identifiers: the value of the variable "a identifier variable" (rougail.var).
A family inside dynamic family
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.json b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.json
index c9bb2f15c..88681e7a7 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.json
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.md
index ad080fee7..499b2bb77 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.md
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a identifier variable](#rougail.var)" (rougail.var).
### A family inside dynamic family
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh
index 74387a9e3..f97cd5efd 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,23 +16,24 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a identifier variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a identifier variable"[0m
+[34mβ [0m[1m([0mrougail.var[1m)[0m.
[1;4;38;5;46mA family inside dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m.family
-[34mβ [0m β’ rougail.dyn[3mval2[0m.family
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m.family
+[34mβ [0m β’ rougail.dyn[3mval2[0m.family
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.adoc b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.adoc
index f861e2d39..c12bc5ad8 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.adoc
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var1).
====
==== A family
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 385be7156..8e75d83b3 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var1)" (rougail.var1).
A family
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.html b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.html
index 91d5029de..7fe14062c 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.html
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var1).
A family
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.json b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.json
index 959d5725b..93559ea12 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.json
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.md
index 9157dd929..ffd34a627 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.md
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var1)" (rougail.var1).
### A family
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.sh
index 1eecc4ca0..99506b5f1 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.sh
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,23 +16,23 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var1[1m)[0m.
[1;4;38;5;46mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m.family
-[34mβ [0m β’ rougail.dyn[3mval2[0m.family
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m.family
+[34mβ [0m β’ rougail.dyn[3mval2[0m.family
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.adoc b/tests/results/test_namespace/60_2family_dynamic_outside_calc.adoc
index b00224861..ff4a931d9 100644
--- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.adoc
+++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffx variable"
+**Identifiers**: the value of the variable "a suffx variable" (rougail.var1).
====
[cols="1a,1a"]
|====
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 aa6adebe2..c21dc3433 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffx variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[a suffx variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.html b/tests/results/test_namespace/60_2family_dynamic_outside_calc.html
index 2c4abc6ea..88c00bc59 100644
--- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.html
+++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffx variable"
+Identifiers: the value of the variable "a suffx variable" (rougail.var1).
diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.json b/tests/results/test_namespace/60_2family_dynamic_outside_calc.json
index 439d5cd9c..bee9b372e 100644
--- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.json
+++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc.md
index e42e069e2..d73eef456 100644
--- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.md
+++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffx variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[a suffx variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace/60_2family_dynamic_outside_calc.sh
index f39a35f40..2532aa55c 100644
--- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.sh
+++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffx variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffx variable"[0m [1m([0mrougail.var1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.adoc b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.adoc
index 7bf9c74ae..95cf5244b 100644
--- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.adoc
+++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffx variable"
+**Identifiers**: the value of the variable "a suffx variable" (rougail.var1).
====
[cols="1a,1a"]
|====
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 45fe88bb2..ae494e6ee 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffx variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[a suffx variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.html b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.html
index f186a8e91..6695d663c 100644
--- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.html
+++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffx variable"
+Identifiers: the value of the variable "a suffx variable" (rougail.var1).
diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.json b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.json
index 6ff94275d..826cddc64 100644
--- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.json
+++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.md
index 23743137e..5164423c0 100644
--- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.md
+++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffx variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[a suffx variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.sh
index e65683e13..ea20e537d 100644
--- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.sh
+++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffx variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffx variable"[0m [1m([0mrougail.var1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.adoc b/tests/results/test_namespace/60_5family_dynamic_calc2.adoc
index 3cb2eb124..46f97f8d7 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2.adoc
@@ -32,7 +32,7 @@ This family builds families dynamically. +
* rougail.dyn__val2__ +
`standard` `__hidden__` +
**Hidden**: if var2 is no. +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 731429bdc..3b3f5cab2 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val2*\
> `standard` *`hidden`*\
> **Hidden**: if var2 is no.\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.html b/tests/results/test_namespace/60_5family_dynamic_calc2.html
index 6727b3bc2..4b3f42a15 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2.html
@@ -28,7 +28,7 @@ This family builds families dynamically.
Hidden: if var2 is no.
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.json b/tests/results/test_namespace/60_5family_dynamic_calc2.json
index e17656294..e600fc3b6 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2.json
@@ -89,7 +89,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.md b/tests/results/test_namespace/60_5family_dynamic_calc2.md
index 06349cc83..589f57d53 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2.md
@@ -21,7 +21,7 @@
> - rougail.dyn*val2*\
> `standard` *`hidden`*\
> **Hidden**: if var2 is no.\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.sh b/tests/results/test_namespace/60_5family_dynamic_calc2.sh
index 8bc9a24de..e75665761 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -19,15 +19,15 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: if var2 is no.
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: if var2 is no.
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.adoc
index 405dbaa83..21df83da5 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.adoc
@@ -32,7 +32,7 @@ This family builds families dynamically. +
* rougail.dyn__val2__ +
`standard` `__hidden__` +
**Hidden**: if var2 is no. +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 832cc3b29..ece89e2b3 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
@@ -19,7 +19,7 @@
> - rougail.dyn*val2*\
> `standard` *`hidden`*\
> **Hidden**: if var2 is no.\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.html b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.html
index 7c08060f1..2ee950760 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.html
@@ -28,7 +28,7 @@ This family builds families dynamically.
Hidden: if var2 is no.
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.json b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.json
index 72b9ed82d..8ea3c38f7 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.json
@@ -83,7 +83,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md
index 995a41150..f9eddbfd9 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md
@@ -21,7 +21,7 @@
> - rougail.dyn*val2*\
> `standard` *`hidden`*\
> **Hidden**: if var2 is no.\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.sh
index 2115ca79f..5f65e1bab 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -19,15 +19,15 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: if var2 is no.
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: if var2 is no.
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_description.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_description.adoc
index 79af71709..106b8fc8c 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_description.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_description.adoc
@@ -36,12 +36,12 @@ This family builds families dynamically. +
| Variable | Description
| **rougail.var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
-**Disabled**: when the variable "a dynamic variable for __val1__" has the value "val".
+**Disabled**: when the variable "a dynamic variable for __val1__" (rougail.dyn__val1__.var) has the value "val".
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A new variable. +
**Default**:
-* the value of the variable "a dynamic variable for __val1__"
-* the value of the variable "a dynamic variable for __val2__"
+* the value of the variable "a dynamic variable for __val1__" (rougail.dyn__val1__.var)
+* the value of the variable "a dynamic variable for __val2__" (rougail.dyn__val2__.var)
|====
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_description.gitlab.md
index e3d4ac208..04f099494 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_description.gitlab.md
@@ -23,10 +23,10 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" has the value "val". |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[a dynamic variable for *val2*](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) has the value "val". |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[a dynamic variable for *val2*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_description.html b/tests/results/test_namespace/60_5family_dynamic_calc_description.html
index f4888162f..b895569f5 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_description.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_description.html
@@ -29,12 +29,12 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string basic mandatory disabled | A new variable. Disabled: when the variable "a dynamic variable for val1" has the value "val". |
-rougail.var2 string multiple standard mandatory | A new variable. Default: - the value of the variable "a dynamic variable for val1"
-- the value of the variable "a dynamic variable for val2"
|
+rougail.var1 string basic mandatory disabled | A new variable. Disabled: when the variable "a dynamic variable for val1" (rougail.dynval1.var) has the value "val". |
+rougail.var2 string multiple standard mandatory | A new variable. Default: - the value of the variable "a dynamic variable for val1" (rougail.dynval1.var)
+- the value of the variable "a dynamic variable for val2" (rougail.dynval2.var)
|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_description.json b/tests/results/test_namespace/60_5family_dynamic_calc_description.json
index dde562019..56eda37bb 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_description.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_description.json
@@ -80,7 +80,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"val\".",
+ "message": "when the variable {0} has the value \"val\".",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -113,7 +113,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -123,7 +123,7 @@
"description": "a dynamic variable for {{ identifier }}"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_description.md b/tests/results/test_namespace/60_5family_dynamic_calc_description.md
index 511d5feb2..b74f72c21 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_description.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_description.md
@@ -23,8 +23,8 @@
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" has the value "val". |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[a dynamic variable for *val2*](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) has the value "val". |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[a dynamic variable for *val2*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_description.sh b/tests/results/test_namespace/60_5family_dynamic_calc_description.sh
index c5aea325d..c4a0dad53 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_description.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_description.sh
@@ -1,23 +1,23 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA dynamic famify for [0m[1;3;4;92mval1[0m[1;4;92m or [0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ val1
-[34mβ [0m β’ val2
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ val1
+[34mβ [0m β’ val2
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -32,14 +32,17 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.var1[0m β A new variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable for [3mval1[0m" has the β
-β β value "val". β
+β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable for [3mval1[0m" β
+β β (rougail.dyn[3mval1[0m.var) has the value β
+β β "val". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A new variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m β β’ the value of the variable "a β
β β dynamic variable for [3mval1[0m" β
+β β (rougail.dyn[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β dynamic variable for [3mval2[0m" β
+β β (rougail.dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.adoc
index 434276448..e8228e36c 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.adoc
@@ -32,7 +32,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var1).
====
[cols="1a,1a"]
|====
@@ -50,7 +50,7 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val2__.var)
|====
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.gitlab.md
index 80df201f1..8fe2ea045 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.gitlab.md
@@ -18,7 +18,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
@@ -26,9 +26,9 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.html b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.html
index 8bbdbf3e4..3e1c116b0 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.html
@@ -26,7 +26,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var1).
@@ -42,8 +42,8 @@ This family builds families dynamically.
| Variable | Description |
-rougail.var3 string standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+rougail.var3 string standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable" (rougail.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval2.var)
|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.json b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.json
index bd18d1651..9f4e2f62e 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.json
@@ -82,7 +82,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -140,7 +140,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -150,7 +150,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.md b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.md
index a65fc0599..1ce418c6b 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.md
@@ -20,13 +20,13 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
| **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**: the value of the identifier. |
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.sh b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.sh
index 462ce000f..1470be407 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -19,14 +19,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn[0m[1;3;4;92mval1[0m[1;4;92m or dyn[0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -43,7 +43,9 @@
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.adoc
index 9112d2e1d..da065c5e9 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.adoc
@@ -32,7 +32,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var1).
====
[cols="1a,1a"]
|====
@@ -52,7 +52,7 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val2__.var)
|====
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.gitlab.md
index 011ae4dab..49e95a314 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.gitlab.md
@@ -18,7 +18,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
@@ -26,9 +26,9 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.html b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.html
index 67160be5f..38d5adefe 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.html
@@ -26,7 +26,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var1).
@@ -42,8 +42,8 @@ This family builds families dynamically.
| Variable | Description |
-rougail.var3 string multiple standard mandatory unique | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+rougail.var3 string multiple standard mandatory unique | A variable calculated. Default: - the value of the variable "A dynamic variable" (rougail.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval2.var)
|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.json b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.json
index 7804716be..4cd09f7fd 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.json
@@ -82,7 +82,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -155,7 +155,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -165,7 +165,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.md
index 7f4479512..bf5fd036c 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.md
@@ -20,13 +20,13 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.sh
index 45ef15952..24378e17e 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -19,14 +19,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn[0m[1;3;4;92mval1[0m[1;4;92m or dyn[0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -44,7 +44,9 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.adoc
index 9bfcee747..8dc2afbf6 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var1).
====
[cols="1a,1a"]
|====
@@ -44,6 +44,6 @@ This family builds families dynamically. +
| Variable | Description
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable"
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
|====
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 3431d7b66..9e69c7e87 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
@@ -25,9 +25,9 @@
-| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.html
index 6585891cc..fba5b1e86 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var1).
@@ -38,10 +38,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.json b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.json
index 81db67f41..86cf0b434 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.json
@@ -62,7 +62,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -115,7 +115,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md
index 2b88abd5d..bfebb9dc0 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md
@@ -19,13 +19,13 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.sh
index 41336ce34..b2efd2f25 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn[0m[1;3;4;92mval1[0m[1;4;92m or dyn[0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -39,5 +39,6 @@
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.adoc
index c8707509f..53d8c0963 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 ad121a113..945961a18 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.html
index 1ad4b21c2..25370669f 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.json b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.json
index 64672b39c..f894e28b9 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md
index 7df1eb2b3..1219260ac 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.sh
index c946a3d65..988e8af96 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.adoc
index 0bd653a83..cf0f0ab6d 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 368343650..ddf1b4071 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.html
index 9291aff35..cb9f9f7ad 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.json b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.json
index d21325712..13eda9cf7 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.md
index 807b81ed9..ad7027896 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.sh
index 46e379208..693dbedef 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.sh
index 00f4be5c0..88d9f1f0c 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.sh
@@ -1,23 +1,23 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mdyn[0m[1;3;4;92mval1[0m[1;4;92m or dyn[0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ val1
-[34mβ [0m β’ val2
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ val1
+[34mβ [0m β’ val2
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.sh
index aada6297e..45d5521b9 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.adoc
index 30f2d34e2..3aa03b4bf 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var1).
====
[cols="1a,1a"]
|====
@@ -44,6 +44,6 @@ This family builds families dynamically. +
| Variable | Description
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var) if it is defined
|====
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 eb4b5d14b..0e061f586 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
@@ -25,9 +25,9 @@
-| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.html
index a06ff581d..ea50534d4 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var1).
@@ -38,10 +38,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) if it is defined |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.json b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.json
index b504926e3..6b27a8a3c 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.json
@@ -56,7 +56,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -109,7 +109,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.md
index 25ab09299..f8f8d75e3 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.md
@@ -19,13 +19,13 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.sh
index 17cdeac73..65caee459 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn[0m[1;3;4;92mval1[0m[1;4;92m or dyn[0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -38,7 +38,8 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
+β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) if it is β
β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.adoc
index 56abb5f94..f8d94b562 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.adoc
@@ -23,7 +23,7 @@ This family is a namespace. +
This family builds families dynamically. +
**Path**: rougail.dyn__val1__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var1).
====
[cols="1a,1a"]
|====
@@ -37,6 +37,6 @@ This family builds families dynamically. +
| Variable | Description
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var) if it is defined
|====
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
index a37c70b2b..46f2ec316 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
@@ -15,7 +15,7 @@
> This family builds families dynamically.\
> **Path**: rougail.dyn*val1*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
@@ -23,9 +23,9 @@
-| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.html
index 64d9ca1a0..5616417a2 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.html
@@ -23,7 +23,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var1).
@@ -36,10 +36,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) if it is defined |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.json b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.json
index 25cd93c63..21235db53 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -100,7 +100,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.md
index 7af0c9f0e..9366c091d 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.md
@@ -17,13 +17,13 @@
> This family builds families dynamically.\
> **Path**: rougail.dyn*val1*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.sh
index 2c91ccb79..3a0041e81 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -15,12 +15,12 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn[0m[1;3;4;92mval1[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: rougail.dyn[3mval1[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: rougail.dyn[3mval1[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -34,7 +34,8 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
+β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) if it is β
β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.adoc
index a40aa765f..c5c5d1a76 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.adoc
@@ -12,7 +12,7 @@ This family is a namespace. +
| Variable | Description
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var) if it is defined
| **rougail.var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | A suffix variable. +
**Examples**:
@@ -32,7 +32,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var1).
====
[cols="1a,1a"]
|====
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 a2aace576..40f5da392 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
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `basic`
-| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
dyn*val1* or dyn*val2*
@@ -18,7 +18,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.html
index dccf47e4a..91429eb6b 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.html
@@ -8,12 +8,12 @@ This family is a namespace.
-| Variable | Description |
+| Variable | Description |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) if it is defined |
rougail.var1 string multiple standard unique | A suffix variable. Examples: |
+val2
@@ -26,7 +26,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var1).
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.json b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.json
index 8b1dc03a9..f049f684a 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.json
@@ -29,7 +29,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -85,7 +85,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.md
index 98a9f6613..9e8f6b182 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.md
@@ -6,10 +6,10 @@
> **Path**: rougail\
> `basic`
-| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
## dyn*val1* or dyn*val2*
@@ -20,7 +20,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.sh
index a7ea4458f..903f839a8 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.sh
@@ -1,17 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
+β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) if it is β
β β defined β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var1[0m β A suffix variable. β
@@ -21,14 +22,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn[0m[1;3;4;92mval1[0m[1;4;92m or dyn[0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.sh
index af85b7f5e..6c0404943 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.sh
index 3fd95ac3f..712f1b045 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.sh
index d6b797307..4152c7aee 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.adoc
index ef7a25fb0..16bc99d07 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A identifier variable"
+**Identifiers**: the value of the variable "A identifier variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 9dd519148..a10721ce3 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.html
index 6f929ee38..d80180084 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A identifier variable"
+Identifiers: the value of the variable "A identifier variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.json b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.json
index 793a1db71..9ecd303b9 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.md
index e1ecafc39..4e5793323 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.sh
index 7590a3b36..3500ebee9 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,15 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.adoc
index bfec39674..a4ba224e5 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A identifier variable"
+**Identifiers**: the value of the variable "A identifier variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 546219c82..f57dab585 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.html
index 8d7b9e4dd..fad6fa639 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A identifier variable"
+Identifiers: the value of the variable "A identifier variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.json b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.json
index ac7fc8641..abf190c49 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.md
index fe0a2548e..3fc5f6a9d 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.sh
index faa72dde3..5120b528b 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,15 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_variable.adoc
index 9bfcee747..8dc2afbf6 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var1).
====
[cols="1a,1a"]
|====
@@ -44,6 +44,6 @@ This family builds families dynamically. +
| Variable | Description
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable"
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
|====
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 3431d7b66..9e69c7e87 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
@@ -25,9 +25,9 @@
-| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.html b/tests/results/test_namespace/60_5family_dynamic_calc_variable.html
index 6585891cc..fba5b1e86 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var1).
@@ -38,10 +38,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.json b/tests/results/test_namespace/60_5family_dynamic_calc_variable.json
index 81db67f41..86cf0b434 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.json
@@ -62,7 +62,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -115,7 +115,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable.md
index 2b88abd5d..bfebb9dc0 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.md
@@ -19,13 +19,13 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace/60_5family_dynamic_calc_variable.sh
index 41336ce34..b2efd2f25 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn[0m[1;3;4;92mval1[0m[1;4;92m or dyn[0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -39,5 +39,6 @@
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.adoc
index f3af72ed8..fa8ca2bbd 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.adoc
@@ -34,7 +34,7 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
**Disabled**:
-* when the variable "A dynamic variable" has the value "val1".
-* when the variable "A dynamic variable" has the value "val1".
+* when the variable "A dynamic variable" (rougail.dyn__val1__.var1) has the value "val1".
+* when the variable "A dynamic variable" (rougail.dyn__val2__.var1) has the value "val1".
|====
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.gitlab.md
index ef96b4f30..9885dfcd4 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -17,10 +17,10 @@
> - val1
> - val2
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.dyn*val1*.var2**
**rougail.dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1".
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.dyn*val1*.var2**
**rougail.dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val1*.var1) has the value "val1".
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val2*.var1) has the value "val1". |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.html b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.html
index 375ba363e..eb4d7a61d 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.html
@@ -24,8 +24,10 @@ This family builds families dynamically.
rougail.dynval1.var1 rougail.dynval2.var1 string basic mandatory | A dynamic variable. |
-rougail.dynval1.var2 rougail.dynval2.var2 string basic mandatory disabled | A new variable. Disabled: - when the variable "A dynamic variable" has the value "val1".
-- when the variable "A dynamic variable" has the value "val1".
|
+rougail.dynval1.var2 rougail.dynval2.var2 string basic mandatory disabled | A new variable. Disabled: - when the variable "A dynamic variable" (rougail.dynval1.var1) has the value
+"val1".
+- when the variable "A dynamic variable" (rougail.dynval2.var1) has the value
+"val1".
|
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.json b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.json
index 3833b72b2..3fe52cda4 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.json
@@ -79,7 +79,7 @@
"access_control": true,
"annotation": [
{
- "message": "when the variable \"{0}\" has the value \"val1\".",
+ "message": "when the variable {0} has the value \"val1\".",
"path": {
"path": "rougail.dyn{{ identifier }}.var1",
"identifiers": [
@@ -89,7 +89,7 @@
"description": "A dynamic variable"
},
{
- "message": "when the variable \"{0}\" has the value \"val1\".",
+ "message": "when the variable {0} has the value \"val1\".",
"path": {
"path": "rougail.dyn{{ identifier }}.var1",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.md
index 95ffa7e13..108689b2a 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.md
@@ -19,8 +19,8 @@
> - val1
> - val2
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.dyn*val1*.var2**
**rougail.dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1".
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.dyn*val1*.var2**
**rougail.dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val1*.var1) has the value "val1".
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val2*.var1) has the value "val1". |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.sh
index 89823679d..8cb626f82 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.sh
@@ -1,23 +1,23 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA dynamic famify for [0m[1;3;4;92mval1[0m[1;4;92m or [0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ val1
-[34mβ [0m β’ val2
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ val1
+[34mβ [0m β’ val2
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -29,9 +29,11 @@
β [1mrougail.dyn[0m[1;3mval1[0m[1m.var2[0m β A new variable. β
β [1mrougail.dyn[0m[1;3mval2[0m[1m.var2[0m β [1mDisabled[0m: β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β β’ when the variable "A dynamic β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "val1". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.dyn[3mval1[0m.var1) has β
+β β the value "val1". β
β β β’ when the variable "A dynamic β
-β β variable" has the value "val1". β
+β β variable" (rougail.dyn[3mval2[0m.var1) has β
+β β the value "val1". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.adoc
index 22e7cbde4..fe55a12fd 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.adoc
@@ -36,6 +36,6 @@ This family builds families dynamically. +
| Variable | Description
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
-**Disabled**: when the variable "A dynamic variable" has the value "val1".
+**Disabled**: when the variable "A dynamic variable" (rougail.dyn__val1__.var1) has the value "val1".
|====
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 939b820b1..55b00619e 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -23,9 +23,9 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val1*.var1) has the value "val1". |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.html b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.html
index f5a31e684..c1b42b573 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.html
@@ -29,10 +29,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-rougail.var2 string basic mandatory disabled | A new variable. Disabled: when the variable "A dynamic variable" has the value "val1". |
+rougail.var2 string basic mandatory disabled | A new variable. Disabled: when the variable "A dynamic variable" (rougail.dynval1.var1) has the value "val1". |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.json b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.json
index 562774f55..eb86a4563 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.json
@@ -80,7 +80,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"val1\".",
+ "message": "when the variable {0} has the value \"val1\".",
"path": {
"path": "rougail.dyn{{ identifier }}.var1",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.md
index b798dff25..3a43bf229 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.md
@@ -23,7 +23,7 @@
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val1*.var1) has the value "val1". |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.sh
index 88c1716ca..5b463dc55 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.sh
@@ -1,23 +1,23 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA dynamic famify for [0m[1;3;4;92mval1[0m[1;4;92m or [0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ val1
-[34mβ [0m β’ val2
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ val1
+[34mβ [0m β’ val2
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -32,7 +32,8 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.var2[0m β A new variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "A β
-β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable" has the value β
+β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var1) has the value β
β β "val1". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.adoc
index 30f2d34e2..3aa03b4bf 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var1).
====
[cols="1a,1a"]
|====
@@ -44,6 +44,6 @@ This family builds families dynamically. +
| Variable | Description
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var) if it is defined
|====
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 eb4b5d14b..0e061f586 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
@@ -25,9 +25,9 @@
-| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.html b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.html
index a06ff581d..ea50534d4 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.html
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var1).
@@ -38,10 +38,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) if it is defined |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.json b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.json
index b504926e3..6b27a8a3c 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.json
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.json
@@ -56,7 +56,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -109,7 +109,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.md
index 25ab09299..f8f8d75e3 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.md
@@ -19,13 +19,13 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.sh
index 17cdeac73..65caee459 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn[0m[1;3;4;92mval1[0m[1;4;92m or dyn[0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -38,7 +38,8 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
+β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) if it is β
β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.sh
index 4e7828d8a..0ee306e8f 100644
--- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.sh
@@ -1,24 +1,24 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: if suffix == [32m'val2'[0m.
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ val1
-[34mβ [0m β’ val2
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: if suffix == [32m'val2'[0m.
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ val1
+[34mβ [0m β’ val2
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -29,12 +29,12 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mA family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m.family
-[34mβ [0m β’ rougail.dyn[3mval2[0m.family
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m.family
+[34mβ [0m β’ rougail.dyn[3mval2[0m.family
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.adoc b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.adoc
new file mode 100644
index 000000000..8f6e88690
--- /dev/null
+++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.adoc
@@ -0,0 +1,68 @@
+== Rougail
+
+====
+**π Informations**
+
+This family is a namespace. +
+**Path**: rougail +
+`standard`
+====
+[cols="1a,1a"]
+|====
+| Variable | Description
+| **rougail.var** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A suffix variable. +
+**Default**:
+
+* val1
+* val2
+
+**Examples**:
+
+* val1
+* val2
+* val3
+* val4
+|====
+
+=== A dynamic family
+
+====
+**π Informations**
+
+This family builds families dynamically. +
+**Path**:
+
+* rougail.__val1___dyn
+* rougail.__val2___dyn +
+`standard` +
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
+====
+[cols="1a,1a"]
+|====
+| Variable | Description
+| **rougail.__val1___dyn.var1** +
+**rougail.__val2___dyn.var1** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 1. +
+**Default**: the value of the identifier.
+| **rougail.__val1___dyn.var2** +
+**rougail.__val2___dyn.var2** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 2. +
+**Default**:
+
+* the value of the variable "a variable 1" (rougail.__val1___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val2___dyn.var1)
+| **rougail.__val1___dyn.var3** +
+**rougail.__val2___dyn.var3** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 3. +
+**Default**:
+
+* the value of the variable "a variable 1" (rougail.__val1___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val2___dyn.var1)
+| **rougail.__val1___dyn.var4** +
+**rougail.__val2___dyn.var4** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable 4. +
+**Default**: the value of the variable "a variable 1" (rougail.__val4___dyn.var1) +
+**Disabled**: depends on a calculation.
+|====
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.gitlab.md
new file mode 100644
index 000000000..a269c9309
--- /dev/null
+++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.gitlab.md
@@ -0,0 +1,32 @@
+Rougail
+
+> [!note] π Informations
+> This family is a namespace.\
+> **Path**: rougail\
+> `standard`
+
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2
**Examples**:
β’ val1
β’ val2
β’ val3
β’ val4 |
+
+A dynamic family
+
+> [!note] π Informations
+> This family builds families dynamically.\
+> **Path**:
+> - rougail.*val1*_dyn
+> - rougail.*val2*_dyn\
+> `standard`\
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
+
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **rougail.*val1*_dyn.var3**
**rougail.*val2*_dyn.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 3.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (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` *`disabled`* | A variable 4.
**Default**: the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1)
**Disabled**: depends on a calculation. |
+
+
+
+
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.html b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.html
new file mode 100644
index 000000000..79f768324
--- /dev/null
+++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.html
@@ -0,0 +1,46 @@
+Rougail
+
+This family is a namespace.
+
+Path: rougail
+
+standard
+
+
+
+| Variable | Description |
+
+
+rougail.var string multiple standard mandatory unique | A suffix variable. Default: Examples: |
+
+
+
+A dynamic family
+
+This family builds families dynamically.
+
+Path: - rougail.val1_dyn
+- rougail.val2_dyn
+
+standard
+
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
+
+
+
+| Variable | Description |
+
+
+rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | A variable 1. Default: the value of the identifier. |
+rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | A variable 2. Default: - the value of the variable "a variable 1" (rougail.val1_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | A variable 3. Default: - the value of the variable "a variable 1" (rougail.val1_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory disabled | A variable 4. Default: the value of the variable "a variable 1" (rougail.val4_dyn.var1) Disabled: depends on a calculation. |
+
+
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.json b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.json
new file mode 100644
index 000000000..5d927f395
--- /dev/null
+++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.json
@@ -0,0 +1,259 @@
+{
+ "rougail": {
+ "type": "namespace",
+ "informations": {
+ "path": "rougail",
+ "name": "rougail",
+ "description": "Rougail",
+ "properties": [],
+ "mode": "standard",
+ "help": [
+ "This family is a namespace"
+ ]
+ },
+ "children": {
+ "var": {
+ "path": "rougail.var",
+ "name": "var",
+ "description": "A suffix variable.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "mandatory",
+ "ori_name": "mandatory",
+ "access_control": false
+ },
+ {
+ "type": "property",
+ "name": "unique",
+ "ori_name": "unique",
+ "access_control": false
+ }
+ ],
+ "mode": "standard",
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": [
+ "val1",
+ "val2"
+ ]
+ },
+ "variable_type": "string",
+ "multiple": true,
+ "examples": {
+ "name": "Examples",
+ "values": [
+ "val1",
+ "val2",
+ "val3",
+ "val4"
+ ]
+ }
+ },
+ "{{ identifier }}_dyn": {
+ "type": "dynamic",
+ "informations": {
+ "path": "rougail.{{ identifier }}_dyn",
+ "name": "{{ identifier }}_dyn",
+ "description": "A dynamic family",
+ "properties": [],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1"
+ ],
+ [
+ "val2"
+ ]
+ ],
+ "help": [
+ "This family builds families dynamically"
+ ],
+ "identifier": [
+ {
+ "message": "the value of the variable {0}.",
+ "path": {
+ "path": "rougail.var",
+ "type": "variable"
+ },
+ "description": "a suffix variable"
+ }
+ ]
+ },
+ "children": {
+ "var1": {
+ "path": "rougail.{{ identifier }}_dyn.var1",
+ "name": "var1",
+ "description": "A variable 1.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "mandatory",
+ "ori_name": "mandatory",
+ "access_control": false
+ }
+ ],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1"
+ ],
+ [
+ "val2"
+ ]
+ ],
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": "the value of the identifier."
+ },
+ "variable_type": "string"
+ },
+ "var2": {
+ "path": "rougail.{{ identifier }}_dyn.var2",
+ "name": "var2",
+ "description": "A variable 2.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "mandatory",
+ "ori_name": "mandatory",
+ "access_control": false
+ }
+ ],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1"
+ ],
+ [
+ "val2"
+ ]
+ ],
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": [
+ {
+ "message": "the value of the variable {0}",
+ "path": {
+ "path": "rougail.{{ identifier }}_dyn.var1",
+ "identifiers": [
+ "val1"
+ ]
+ },
+ "description": "a variable 1"
+ },
+ {
+ "message": "the value of the variable {0}",
+ "path": {
+ "path": "rougail.{{ identifier }}_dyn.var1",
+ "identifiers": [
+ "val2"
+ ]
+ },
+ "description": "a variable 1"
+ }
+ ]
+ },
+ "variable_type": "string"
+ },
+ "var3": {
+ "path": "rougail.{{ identifier }}_dyn.var3",
+ "name": "var3",
+ "description": "A variable 3.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "mandatory",
+ "ori_name": "mandatory",
+ "access_control": false
+ }
+ ],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1"
+ ],
+ [
+ "val2"
+ ]
+ ],
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": [
+ {
+ "message": "the value of the variable {0}",
+ "path": {
+ "path": "rougail.{{ identifier }}_dyn.var1",
+ "identifiers": [
+ "val1"
+ ]
+ },
+ "description": "a variable 1"
+ },
+ {
+ "message": "the value of the variable {0}",
+ "path": {
+ "path": "rougail.{{ identifier }}_dyn.var1",
+ "identifiers": [
+ "val2"
+ ]
+ },
+ "description": "a variable 1"
+ }
+ ]
+ },
+ "variable_type": "string"
+ },
+ "var4": {
+ "path": "rougail.{{ identifier }}_dyn.var4",
+ "name": "var4",
+ "description": "A variable 4.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "mandatory",
+ "ori_name": "mandatory",
+ "access_control": false
+ },
+ {
+ "type": "property",
+ "name": "disabled",
+ "ori_name": "disabled",
+ "access_control": true,
+ "annotation": "depends on a calculation."
+ }
+ ],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1"
+ ],
+ [
+ "val2"
+ ]
+ ],
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": {
+ "message": "the value of the variable {0}",
+ "path": {
+ "path": "rougail.{{ identifier }}_dyn.var1",
+ "identifiers": [
+ "val4"
+ ]
+ },
+ "description": "a variable 1"
+ }
+ },
+ "variable_type": "string"
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.md b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.md
new file mode 100644
index 000000000..7685c52df
--- /dev/null
+++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.md
@@ -0,0 +1,30 @@
+# Rougail
+
+> [!NOTE]
+>
+> This family is a namespace.\
+> **Path**: rougail\
+> `standard`
+
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2
**Examples**:
β’ val1
β’ val2
β’ val3
β’ val4 |
+
+## A dynamic family
+
+> [!NOTE]
+>
+> This family builds families dynamically.\
+> **Path**:
+> - rougail.*val1*_dyn
+> - rougail.*val2*_dyn\
+> `standard`\
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
+
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **rougail.*val1*_dyn.var3**
**rougail.*val2*_dyn.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 3.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (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` *`disabled`* | A variable 4.
**Default**: the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1)
**Disabled**: depends on a calculation. |
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.sh b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.sh
new file mode 100644
index 000000000..e65268a96
--- /dev/null
+++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.sh
@@ -0,0 +1,61 @@
+[1;4;96mRougail[0m
+
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
+
+βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
+β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
+β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
+β [1mrougail.var[0m β A suffix variable. β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
+β [1;7mmandatory [0m [1;7m unique [0m β β’ val1 β
+β β β’ val2 β
+β β [1mExamples[0m: β
+β β β’ val1 β
+β β β’ val2 β
+β β β’ val3 β
+β β β’ val4 β
+βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
+ [1;4;92mA dynamic family[0m
+
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.[3mval1[0m_dyn
+[34mβ [0m β’ rougail.[3mval2[0m_dyn
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
+
+βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
+β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
+β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
+β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var1[0m β A variable 1. β
+β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var1[0m β [1mDefault[0m: the value of the β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β identifier. β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var2[0m β A variable 2. β
+β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var2[0m β [1mDefault[0m: β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "a β
+β β variable 1" (rougail.[3mval1[0m_dyn.var1) β
+β β β’ the value of the variable "a β
+β β variable 1" (rougail.[3mval2[0m_dyn.var1) β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var3[0m β A variable 3. β
+β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var3[0m β [1mDefault[0m: β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "a β
+β β variable 1" (rougail.[3mval1[0m_dyn.var1) β
+β β β’ the value of the variable "a β
+β β variable 1" (rougail.[3mval2[0m_dyn.var1) β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var4[0m β A variable 4. β
+β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var4[0m β [1mDefault[0m: the value of the variable β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β "a variable 1" β
+β [1;3;7mdisabled[0m[1;7m [0m β (rougail.[3mval4[0m_dyn.var1) β
+β β [1mDisabled[0m: depends on a calculation. β
+βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
+
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.adoc
index 515c9c0e2..f4c8608a6 100644
--- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.adoc
@@ -33,7 +33,7 @@ This family builds families dynamically. +
* rougail.__val3___dyn
* rougail.__val4___dyn +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -51,10 +51,10 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 2. +
**Default**:
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
+* the value of the variable "a variable 1" (rougail.__val1___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val2___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val3___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val4___dyn.var1)
| **rougail.__val1___dyn.var3** +
**rougail.__val2___dyn.var3** +
**rougail.__val3___dyn.var3** +
@@ -62,16 +62,16 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 3. +
**Default**:
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
+* the value of the variable "a variable 1" (rougail.__val1___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val2___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val3___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val4___dyn.var1)
| **rougail.__val1___dyn.var4** +
**rougail.__val2___dyn.var4** +
**rougail.__val3___dyn.var4** +
**rougail.__val4___dyn.var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable 4. +
-**Default**: the value of the variable "a variable 1" +
+**Default**: the value of the variable "a variable 1" (rougail.__val4___dyn.var1) +
**Disabled**: depends on a calculation.
|====
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 238741e3e..1cad8c3cf 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
@@ -19,14 +19,14 @@
> - rougail.*val3*_dyn
> - rougail.*val4*_dyn\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
**rougail.*val3*_dyn.var1**
**rougail.*val4*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
**rougail.*val3*_dyn.var2**
**rougail.*val4*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
**Disabled**: depends on a calculation. |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
**rougail.*val3*_dyn.var1**
**rougail.*val4*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
**rougail.*val3*_dyn.var2**
**rougail.*val4*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val3*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1) |
+| **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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val3*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1)
**Disabled**: depends on a calculation. |
diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.html b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.html
index 3a96ac6c6..a0cd460e9 100644
--- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.html
+++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.html
@@ -29,23 +29,23 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
-| Variable | Description |
+| Variable | Description |
-rougail.val1_dyn.var1 rougail.val2_dyn.var1 rougail.val3_dyn.var1 rougail.val4_dyn.var1 string standard mandatory | A variable 1. Default: the value of the identifier. |
-rougail.val1_dyn.var2 rougail.val2_dyn.var2 rougail.val3_dyn.var2 rougail.val4_dyn.var2 string standard mandatory | A variable 2. Default: - the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
|
-rougail.val1_dyn.var3 rougail.val2_dyn.var3 rougail.val3_dyn.var3 rougail.val4_dyn.var3 string standard mandatory | A variable 3. Default: - the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
|
-rougail.val1_dyn.var4 rougail.val2_dyn.var4 rougail.val3_dyn.var4 rougail.val4_dyn.var4 string standard mandatory disabled | A variable 4. Default: the value of the variable "a variable 1" Disabled: depends on a calculation. |
+rougail.val1_dyn.var1 rougail.val2_dyn.var1 rougail.val3_dyn.var1 rougail.val4_dyn.var1 string standard mandatory | A variable 1. Default: the value of the identifier. |
+rougail.val1_dyn.var2 rougail.val2_dyn.var2 rougail.val3_dyn.var2 rougail.val4_dyn.var2 string standard mandatory | A variable 2. Default: - the value of the variable "a variable 1" (rougail.val1_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val2_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val3_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val4_dyn.var1)
|
+rougail.val1_dyn.var3 rougail.val2_dyn.var3 rougail.val3_dyn.var3 rougail.val4_dyn.var3 string standard mandatory | A variable 3. Default: - the value of the variable "a variable 1" (rougail.val1_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val2_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val3_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val4_dyn.var1)
|
+rougail.val1_dyn.var4 rougail.val2_dyn.var4 rougail.val3_dyn.var4 rougail.val4_dyn.var4 string standard mandatory disabled | A variable 4. Default: the value of the variable "a variable 1" (rougail.val4_dyn.var1) Disabled: depends on a calculation. |
diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.json b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.json
index 5d81b22a0..d2fae91f4 100644
--- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.json
+++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.json
@@ -65,7 +65,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -141,7 +141,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -151,7 +151,7 @@
"description": "a variable 1"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -161,7 +161,7 @@
"description": "a variable 1"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -171,7 +171,7 @@
"description": "a variable 1"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -216,7 +216,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -226,7 +226,7 @@
"description": "a variable 1"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -236,7 +236,7 @@
"description": "a variable 1"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -246,7 +246,7 @@
"description": "a variable 1"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -297,7 +297,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.md b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.md
index cfb0ecb47..47068d07d 100644
--- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.md
+++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.md
@@ -21,12 +21,12 @@
> - rougail.*val3*_dyn
> - rougail.*val4*_dyn\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
**rougail.*val3*_dyn.var1**
**rougail.*val4*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
**rougail.*val3*_dyn.var2**
**rougail.*val4*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
**Disabled**: depends on a calculation. |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
**rougail.*val3*_dyn.var1**
**rougail.*val4*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
**rougail.*val3*_dyn.var2**
**rougail.*val4*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val3*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1) |
+| **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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val3*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1)
**Disabled**: depends on a calculation. |
diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.sh
index 7fa30d3f0..b24656b43 100644
--- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -18,16 +18,16 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.[3mval1[0m_dyn
-[34mβ [0m β’ rougail.[3mval2[0m_dyn
-[34mβ [0m β’ rougail.[3mval3[0m_dyn
-[34mβ [0m β’ rougail.[3mval4[0m_dyn
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.[3mval1[0m_dyn
+[34mβ [0m β’ rougail.[3mval2[0m_dyn
+[34mβ [0m β’ rougail.[3mval3[0m_dyn
+[34mβ [0m β’ rougail.[3mval4[0m_dyn
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -41,30 +41,30 @@
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var2[0m β A variable 2. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var2[0m β [1mDefault[0m: β
β [1mrougail.[0m[1;3mval3[0m[1m_dyn.var2[0m β β’ the value of the variable "a β
-β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var2[0m β variable 1" β
+β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var2[0m β variable 1" (rougail.[3mval1[0m_dyn.var1) β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval2[0m_dyn.var1) β
β β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval3[0m_dyn.var1) β
β β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval4[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var3[0m β A variable 3. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var3[0m β [1mDefault[0m: β
β [1mrougail.[0m[1;3mval3[0m[1m_dyn.var3[0m β β’ the value of the variable "a β
-β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var3[0m β variable 1" β
+β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var3[0m β variable 1" (rougail.[3mval1[0m_dyn.var1) β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval2[0m_dyn.var1) β
β β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval3[0m_dyn.var1) β
β β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval4[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var4[0m β A variable 4. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var4[0m β [1mDefault[0m: the value of the variable β
β [1mrougail.[0m[1;3mval3[0m[1m_dyn.var4[0m β "a variable 1" β
-β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var4[0m β [1mDisabled[0m: depends on a calculation. β
-β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β β
+β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var4[0m β (rougail.[3mval4[0m_dyn.var1) β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: depends on a calculation. β
β [1;3;7mdisabled[0m[1;7m [0m β β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside.adoc
index 4aad0d383..8da63e868 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.my_dyn_family___val1__
* rougail.my_dyn_family___val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -47,7 +47,7 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
|====
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 c4baf5a38..797af3556 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
@@ -17,7 +17,7 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
@@ -25,9 +25,9 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside.html
index d84bcc3c7..9ff7fc245 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.html
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
@@ -41,8 +41,8 @@ This family builds families dynamically.
| Variable | Description |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.json b/tests/results/test_namespace/60_5family_dynamic_variable_outside.json
index 9a579a24c..894976d7a 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.json
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -120,7 +120,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
@@ -130,7 +130,7 @@
"description": "a variable inside a dynamic family"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside.md
index aeac4cc86..d2712bdf9 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.md
@@ -19,13 +19,13 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside.sh
index d3fc3ec57..1924f0785 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
-[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -40,7 +40,9 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.adoc
index 28e971e6d..6b9e03f77 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.adoc
@@ -14,8 +14,8 @@ This family is a namespace. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
| **rougail.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A suffix variable. +
**Default**:
@@ -35,7 +35,7 @@ This family builds families dynamically. +
* rougail.my_dyn_family___val1__
* rougail.my_dyn_family___val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 cfcaedf02..0f9aa6605 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
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
A dynamic family
@@ -18,7 +18,7 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.html
index 1aa7343d6..9492a92db 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.html
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.html
@@ -11,8 +11,8 @@ This family is a namespace.
| Variable | Description |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
rougail.var string multiple standard mandatory unique | A suffix variable. Default: |
@@ -27,7 +27,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.json b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.json
index db024bd63..6811c9fbe 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.json
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.json
@@ -36,7 +36,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
@@ -46,7 +46,7 @@
"description": "a variable inside a dynamic family"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
@@ -111,7 +111,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md
index 24d64b2bc..bc2ae8578 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md
@@ -6,10 +6,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
## A dynamic family
@@ -20,7 +20,7 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.sh
index 31ddb6264..751496967 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -13,8 +13,10 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var[0m β A suffix variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
@@ -23,14 +25,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
-[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.adoc
index f88967bd7..a667c7f72 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.adoc
@@ -14,8 +14,8 @@ This family is a namespace. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
| **rougail.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | A suffix variable. +
**Examples**:
@@ -35,7 +35,7 @@ This family builds families dynamically. +
* rougail.my_dyn_family___val1__
* rougail.my_dyn_family___val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 c5cad47e2..3a6b2e662 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
@@ -5,10 +5,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
A dynamic family
@@ -18,7 +18,7 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.html
index d3a3ea8b4..c0d0a89e7 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.html
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.html
@@ -11,8 +11,8 @@ This family is a namespace.
| Variable | Description |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
rougail.var string multiple standard unique | A suffix variable. Examples: |
@@ -27,7 +27,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.json b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.json
index 6911f138d..a230b483c 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.json
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.json
@@ -36,7 +36,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
@@ -46,7 +46,7 @@
"description": "a variable inside a dynamic family"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
@@ -105,7 +105,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.md
index f4ce701d4..2f5eeae45 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.md
@@ -6,10 +6,10 @@
> **Path**: rougail\
> `standard`
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
## A dynamic family
@@ -20,7 +20,7 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.sh
index 53be47a56..28137a072 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -13,8 +13,10 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var[0m β A suffix variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mExamples[0m: β
@@ -23,14 +25,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
-[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.adoc
index 4aad0d383..8da63e868 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.my_dyn_family___val1__
* rougail.my_dyn_family___val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -47,7 +47,7 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
|====
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 c4baf5a38..797af3556 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
@@ -17,7 +17,7 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
@@ -25,9 +25,9 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.html
index d84bcc3c7..9ff7fc245 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.html
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
@@ -41,8 +41,8 @@ This family builds families dynamically.
| Variable | Description |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.json b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.json
index 9a579a24c..894976d7a 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.json
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -120,7 +120,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
@@ -130,7 +130,7 @@
"description": "a variable inside a dynamic family"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.md
index aeac4cc86..d2712bdf9 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.md
@@ -19,13 +19,13 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.sh
index d3fc3ec57..1924f0785 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
-[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -40,7 +40,9 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.adoc
index 7e6860e19..7b8a761a8 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.my_dyn_family___val1__
* rougail.my_dyn_family___val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -47,7 +47,7 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
|====
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md
index 080e451c8..13d9bc67d 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
@@ -17,7 +17,7 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
@@ -25,9 +25,9 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.html
index f15802f52..cbc8bc90d 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.html
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
@@ -41,8 +41,8 @@ This family builds families dynamically.
| Variable | Description |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.json b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.json
index 7befdc199..a1ffaf38e 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.json
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -114,7 +114,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
@@ -124,7 +124,7 @@
"description": "a variable inside a dynamic family"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.md
index de593f39c..5d0de00a2 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.md
@@ -19,13 +19,13 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.sh
index 93cf683da..4fecf9e9e 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
-[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -40,7 +40,9 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.adoc
index f0ceba9ac..b589adccc 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.my_dyn_family___val1__
* rougail.my_dyn_family___val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 358973917..d9c689cc9 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
@@ -17,7 +17,7 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.html
index b39206c28..413ab8760 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.html
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.json b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.json
index d24b89b06..fe731de0c 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.json
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.md
index d335a6670..556fc808b 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.md
@@ -19,7 +19,7 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.sh
index 0586b8291..4c2978608 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
-[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.adoc
index 319a9fab6..adb59bece 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.my_dyn_family___val1__
* rougail.my_dyn_family___val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 e2e985862..45d242910 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
@@ -17,7 +17,7 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.html
index 06f9bb18c..e894fc31a 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.html
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.json b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.json
index 0569d55c3..11d83a3df 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.json
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.md
index f9df95716..58e783e5c 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.md
@@ -19,7 +19,7 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.sh
index 8910d3f10..a9500d117 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
-[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.adoc
new file mode 100644
index 000000000..acfd19cae
--- /dev/null
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.adoc
@@ -0,0 +1,70 @@
+== Rougail
+
+====
+**π Informations**
+
+This family is a namespace. +
+**Path**: rougail +
+`standard`
+====
+[cols="1a,1a"]
+|====
+| Variable | Description
+| **rougail.var** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A suffix variable. +
+**Default**:
+
+* val1
+* val2
+|====
+
+=== A dynamic family
+
+====
+**π Informations**
+
+This family builds families dynamically. +
+**Path**:
+
+* rougail.my_dyn_family___val1__
+* rougail.my_dyn_family___val2__ +
+`standard` +
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
+====
+==== A sub dynamic family
+
+====
+**π Informations**
+
+This family builds families dynamically. +
+**Path**:
+
+* rougail.my_dyn_family___val1__.subdyn___val1__
+* rougail.my_dyn_family___val1__.subdyn___val2__
+* rougail.my_dyn_family___val2__.subdyn___val1__
+* rougail.my_dyn_family___val2__.subdyn___val2__ +
+`standard` +
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
+====
+[cols="1a,1a"]
+|====
+| Variable | Description
+| **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** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside a sub dynamic family. +
+**Default**: the value of the identifier.
+|====
+
+[cols="1a,1a"]
+|====
+| Variable | Description
+| **rougail.var2** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | A variable. +
+**Default**:
+
+* the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family___val1__.subdyn___val1__.var)
+* the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family___val1__.subdyn___val2__.var)
+|====
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
new file mode 100644
index 000000000..3a5f0f3a1
--- /dev/null
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
@@ -0,0 +1,47 @@
+Rougail
+
+> [!note] π Informations
+> This family is a namespace.\
+> **Path**: rougail\
+> `standard`
+
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+
+A dynamic family
+
+> [!note] π Informations
+> This family builds families dynamically.\
+> **Path**:
+> - rougail.my_dyn_family_*val1*
+> - rougail.my_dyn_family_*val2*\
+> `standard`\
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
+
+A sub dynamic family
+
+> [!note] π Informations
+> This family builds families dynamically.\
+> **Path**:
+> - rougail.my_dyn_family_*val1*.subdyn_*val1*
+> - rougail.my_dyn_family_*val1*.subdyn_*val2*
+> - rougail.my_dyn_family_*val2*.subdyn_*val1*
+> - rougail.my_dyn_family_*val2*.subdyn_*val2*\
+> `standard`\
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
+
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
+| **rougail.my_dyn_family_*val1*.subdyn_*val1*.var**
**rougail.my_dyn_family_*val1*.subdyn_*val2*.var**
**rougail.my_dyn_family_*val2*.subdyn_*val1*.var**
**rougail.my_dyn_family_*val2*.subdyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside a sub dynamic family.
**Default**: the value of the identifier. |
+
+
+
+
+
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val1*.var)
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val2*.var) |
+
+
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.html
new file mode 100644
index 000000000..0dd4cbb01
--- /dev/null
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.html
@@ -0,0 +1,61 @@
+Rougail
+
+This family is a namespace.
+
+Path: rougail
+
+standard
+
+
+
+| Variable | Description |
+
+
+rougail.var string multiple standard mandatory unique | A suffix variable. Default: |
+
+
+
+A dynamic family
+
+This family builds families dynamically.
+
+Path: - rougail.my_dyn_family_val1
+- rougail.my_dyn_family_val2
+
+standard
+
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
+
+A sub dynamic family
+
+This family builds families dynamically.
+
+Path: - rougail.my_dyn_family_val1.subdyn_val1
+- rougail.my_dyn_family_val1.subdyn_val2
+- rougail.my_dyn_family_val2.subdyn_val1
+- rougail.my_dyn_family_val2.subdyn_val2
+
+standard
+
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
+
+
+
+| Variable | Description |
+
+
+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 standard mandatory | A variable inside a sub dynamic family. Default: the value of the identifier. |
+
+
+
+
+
+| Variable | Description |
+
+
+rougail.var2 string multiple standard unique | A variable. Default: - the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family_val1.subdyn_val1.var)
+- the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family_val1.subdyn_val2.var)
|
+
+
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.json b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.json
new file mode 100644
index 000000000..51761a474
--- /dev/null
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.json
@@ -0,0 +1,205 @@
+{
+ "rougail": {
+ "type": "namespace",
+ "informations": {
+ "path": "rougail",
+ "name": "rougail",
+ "description": "Rougail",
+ "properties": [],
+ "mode": "standard",
+ "help": [
+ "This family is a namespace"
+ ]
+ },
+ "children": {
+ "var": {
+ "path": "rougail.var",
+ "name": "var",
+ "description": "A suffix variable.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "mandatory",
+ "ori_name": "mandatory",
+ "access_control": false
+ },
+ {
+ "type": "property",
+ "name": "unique",
+ "ori_name": "unique",
+ "access_control": false
+ }
+ ],
+ "mode": "standard",
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": [
+ "val1",
+ "val2"
+ ]
+ },
+ "variable_type": "string",
+ "multiple": true
+ },
+ "my_dyn_family_{{ identifier }}": {
+ "type": "dynamic",
+ "informations": {
+ "path": "rougail.my_dyn_family_{{ identifier }}",
+ "name": "my_dyn_family_{{ identifier }}",
+ "description": "A dynamic family",
+ "properties": [],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1"
+ ],
+ [
+ "val2"
+ ]
+ ],
+ "help": [
+ "This family builds families dynamically"
+ ],
+ "identifier": [
+ {
+ "message": "the value of the variable {0}.",
+ "path": {
+ "path": "rougail.var",
+ "type": "variable"
+ },
+ "description": "a suffix variable"
+ }
+ ]
+ },
+ "children": {
+ "subdyn_{{ identifier }}": {
+ "type": "dynamic",
+ "informations": {
+ "path": "rougail.my_dyn_family_{{ identifier }}.subdyn_{{ identifier }}",
+ "name": "subdyn_{{ identifier }}",
+ "description": "A sub dynamic family",
+ "properties": [],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1",
+ "val1"
+ ],
+ [
+ "val1",
+ "val2"
+ ],
+ [
+ "val2",
+ "val1"
+ ],
+ [
+ "val2",
+ "val2"
+ ]
+ ],
+ "help": [
+ "This family builds families dynamically"
+ ],
+ "identifier": [
+ {
+ "message": "the value of the variable {0}.",
+ "path": {
+ "path": "rougail.var",
+ "type": "variable"
+ },
+ "description": "a suffix variable"
+ }
+ ]
+ },
+ "children": {
+ "var": {
+ "path": "rougail.my_dyn_family_{{ identifier }}.subdyn_{{ identifier }}.var",
+ "name": "var",
+ "description": "A variable inside a sub dynamic family.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "mandatory",
+ "ori_name": "mandatory",
+ "access_control": false
+ }
+ ],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1",
+ "val1"
+ ],
+ [
+ "val1",
+ "val2"
+ ],
+ [
+ "val2",
+ "val1"
+ ],
+ [
+ "val2",
+ "val2"
+ ]
+ ],
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": "the value of the identifier."
+ },
+ "variable_type": "string"
+ }
+ }
+ }
+ }
+ },
+ "var2": {
+ "path": "rougail.var2",
+ "name": "var2",
+ "description": "A variable.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "unique",
+ "ori_name": "unique",
+ "access_control": false
+ }
+ ],
+ "mode": "standard",
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": [
+ {
+ "message": "the value of the variable {0}",
+ "path": {
+ "path": "rougail.my_dyn_family_{{ identifier }}.subdyn_{{ identifier }}.var",
+ "identifiers": [
+ "val1",
+ "val1"
+ ]
+ },
+ "description": "a variable inside a sub dynamic family"
+ },
+ {
+ "message": "the value of the variable {0}",
+ "path": {
+ "path": "rougail.my_dyn_family_{{ identifier }}.subdyn_{{ identifier }}.var",
+ "identifiers": [
+ "val1",
+ "val2"
+ ]
+ },
+ "description": "a variable inside a sub dynamic family"
+ }
+ ]
+ },
+ "variable_type": "string",
+ "multiple": true
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.md
new file mode 100644
index 000000000..bb65d757d
--- /dev/null
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.md
@@ -0,0 +1,44 @@
+# Rougail
+
+> [!NOTE]
+>
+> This family is a namespace.\
+> **Path**: rougail\
+> `standard`
+
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+
+## A dynamic family
+
+> [!NOTE]
+>
+> This family builds families dynamically.\
+> **Path**:
+> - rougail.my_dyn_family_*val1*
+> - rougail.my_dyn_family_*val2*\
+> `standard`\
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
+
+### A sub dynamic family
+
+> [!NOTE]
+>
+> This family builds families dynamically.\
+> **Path**:
+> - rougail.my_dyn_family_*val1*.subdyn_*val1*
+> - rougail.my_dyn_family_*val1*.subdyn_*val2*
+> - rougail.my_dyn_family_*val2*.subdyn_*val1*
+> - rougail.my_dyn_family_*val2*.subdyn_*val2*\
+> `standard`\
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
+
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
+| **rougail.my_dyn_family_*val1*.subdyn_*val1*.var**
**rougail.my_dyn_family_*val1*.subdyn_*val2*.var**
**rougail.my_dyn_family_*val2*.subdyn_*val1*.var**
**rougail.my_dyn_family_*val2*.subdyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside a sub dynamic family.
**Default**: the value of the identifier. |
+
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val1*.var)
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val2*.var) |
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.sh
new file mode 100644
index 000000000..dcb6cea96
--- /dev/null
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.sh
@@ -0,0 +1,66 @@
+[1;4;96mRougail[0m
+
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
+
+βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
+β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
+β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
+β [1mrougail.var[0m β A suffix variable. β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
+β [1;7mmandatory [0m [1;7m unique [0m β β’ val1 β
+β β β’ val2 β
+βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
+ [1;4;92mA dynamic family[0m
+
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
+
+ [1;4;38;5;46mA sub dynamic family[0m
+
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m.subdyn_[3mval1[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m.subdyn_[3mval2[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m.subdyn_[3mval1[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m.subdyn_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
+
+βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
+β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
+β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
+β [1mrougail.my_dyn_family_[0m[1;3mval1[0m[1m.subdyn_[0m[1;3mvaβ¦[0m β A variable inside a sub dynamic β
+β [1mrougail.my_dyn_family_[0m[1;3mval1[0m[1m.subdyn_[0m[1;3mvaβ¦[0m β family. β
+β [1mrougail.my_dyn_family_[0m[1;3mval2[0m[1m.subdyn_[0m[1;3mvaβ¦[0m β [1mDefault[0m: the value of the β
+β [1mrougail.my_dyn_family_[0m[1;3mval2[0m[1m.subdyn_[0m[1;3mvaβ¦[0m β identifier. β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β
+βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
+
+
+βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
+β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
+β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
+β [1mrougail.var2[0m β A variable. β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
+β [1;7munique [0m β β’ the value of the variable "a β
+β β variable inside a sub dynamic β
+β β family" β
+β β (rougail.my_dyn_family_[3mval1[0m.subdyn_[3mβ¦[0m β
+β β β’ the value of the variable "a β
+β β variable inside a sub dynamic β
+β β family" β
+β β (rougail.my_dyn_family_[3mval1[0m.subdyn_[3mβ¦[0m β
+βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
+
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc
index be255a00e..29c01e27e 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.my_dyn_family___val1__
* rougail.my_dyn_family___val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
==== A sub dynamic family
@@ -44,7 +44,7 @@ This family builds families dynamically. +
* rougail.my_dyn_family___val2__.subdyn___val1__
* rougail.my_dyn_family___val2__.subdyn___val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -64,7 +64,9 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a sub dynamic family" if it is defined
-* the value of the variable "a variable inside a sub dynamic family" if it is defined
+* the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family___val1__.subdyn___val1__.var)
+if it is defined
+* the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family___val1__.subdyn___val2__.var)
+if it is defined
|====
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 c609c2ad3..7d085cfb3 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
@@ -17,7 +17,7 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
A sub dynamic family
@@ -29,7 +29,7 @@
> - rougail.my_dyn_family_*val2*.subdyn_*val1*
> - rougail.my_dyn_family_*val2*.subdyn_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
@@ -39,9 +39,9 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" if it is defined
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val1*.var) if it is defined
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val2*.var) if it is defined |
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.html
index 7a49b3a9e..38fe98f7b 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.html
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
A sub dynamic family
@@ -38,7 +38,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
@@ -54,8 +54,10 @@ This family builds families dynamically.
| Variable | Description |
-rougail.var2 string multiple standard unique | A variable. Default: - the value of the variable "a variable inside a sub dynamic family" if it is defined
-- the value of the variable "a variable inside a sub dynamic family" if it is defined
|
+rougail.var2 string multiple standard unique | A variable. Default: - the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family_val1.subdyn_val1.var)
+if it is defined
+- the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family_val1.subdyn_val2.var)
+if it is defined
|
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.json b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.json
index a8efa7399..22beba626 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.json
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -98,7 +98,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -168,7 +168,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.subdyn_{{ identifier }}.var",
"identifiers": [
@@ -179,7 +179,7 @@
"description": "a variable inside a sub dynamic family"
},
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.subdyn_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.md
index d3446dc2b..2498f7a09 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.md
@@ -19,7 +19,7 @@
> - rougail.my_dyn_family_*val1*
> - rougail.my_dyn_family_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
### A sub dynamic family
@@ -32,13 +32,13 @@
> - rougail.my_dyn_family_*val2*.subdyn_*val1*
> - rougail.my_dyn_family_*val2*.subdyn_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
| **rougail.my_dyn_family_*val1*.subdyn_*val1*.var**
**rougail.my_dyn_family_*val1*.subdyn_*val2*.var**
**rougail.my_dyn_family_*val2*.subdyn_*val1*.var**
**rougail.my_dyn_family_*val2*.subdyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside a sub dynamic family.
**Default**: the value of the identifier. |
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" if it is defined
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val1*.var) if it is defined
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val2*.var) if it is defined |
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.sh
index 8decdfa58..32b0e81ee 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,27 +16,27 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
-[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
[1;4;38;5;46mA sub dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m.subdyn_[3mval1[0m
-[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m.subdyn_[3mval2[0m
-[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m.subdyn_[3mval1[0m
-[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m.subdyn_[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m.subdyn_[3mval1[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval1[0m.subdyn_[3mval2[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m.subdyn_[3mval1[0m
+[34mβ [0m β’ rougail.my_dyn_family_[3mval2[0m.subdyn_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -56,9 +56,13 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7munique [0m β β’ the value of the variable "a β
β β variable inside a sub dynamic β
-β β family" if it is defined β
+β β family" β
+β β (rougail.my_dyn_family_[3mval1[0m.subdyn_[3mβ¦[0m β
+β β if it is defined β
β β β’ the value of the variable "a β
β β variable inside a sub dynamic β
-β β family" if it is defined β
+β β family" β
+β β (rougail.my_dyn_family_[3mval1[0m.subdyn_[3mβ¦[0m β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.adoc
index 3d6b79963..f28360854 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn___val1__
* rougail.dyn___val2__ +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -45,6 +45,6 @@ This family builds families dynamically. +
| Variable | Description
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable inside dynamic family"
+**Default**: the value of the variable "a variable inside dynamic family" (rougail.dyn___val1__.var)
|====
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 d6197ca71..32fb07a8c 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
@@ -17,7 +17,7 @@
> - rougail.dyn_*val1*
> - rougail.dyn_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
@@ -25,9 +25,9 @@
-| 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 "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" |
+| 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 "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" (rougail.dyn_*val1*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.html
index 1b288a4a8..7ded9df88 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.html
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
@@ -38,10 +38,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-rougail.var2 string standard mandatory | A variable. Default: the value of the variable "a variable inside dynamic family" |
+rougail.var2 string standard mandatory | A variable. Default: the value of the variable "a variable inside dynamic family" (rougail.dyn_val1.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.json b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.json
index e9062ad68..7c2eda9bd 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.json
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -120,7 +120,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.md
index a134159af..89af1abf6 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.md
@@ -19,13 +19,13 @@
> - rougail.dyn_*val1*
> - rougail.dyn_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
| **rougail.dyn_*val1*.var**
**rougail.dyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: the value of the identifier. |
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" |
+| 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 "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" (rougail.dyn_*val1*.var) |
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.sh
index 191dd6be9..f9340dbe3 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn_[3mval1[0m
-[34mβ [0m β’ rougail.dyn_[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn_[3mval1[0m
+[34mβ [0m β’ rougail.dyn_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -39,5 +39,6 @@
β [1mrougail.var2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "a variable inside dynamic family" β
+β β (rougail.dyn_[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.adoc
index 0ca77e563..956f16b02 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.adoc
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn___val1__
* rougail.dyn___val2__ +
`standard` +
-**Identifiers**: the value of the variable "asuffix variable"
+**Identifiers**: the value of the variable "asuffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -45,6 +45,6 @@ This family builds families dynamically. +
| Variable | Description
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. +
-**Default**: the value of the variable "a variable inside dynamic family" if it is defined
+**Default**: the value of the variable "a variable inside dynamic family" (rougail.dyn___val1__.var) if it is defined
|====
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 13a293e16..a3b4f3d98 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
@@ -17,7 +17,7 @@
> - rougail.dyn_*val1*
> - rougail.dyn_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[asuffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[asuffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
@@ -25,9 +25,9 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" (rougail.dyn_*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.html b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.html
index 82802e639..6c7794cf3 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.html
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "asuffix variable"
+Identifiers: the value of the variable "asuffix variable" (rougail.var).
@@ -38,10 +38,10 @@ This family builds families dynamically.
-| Variable | Description |
+| Variable | Description |
-rougail.var2 string standard | A variable. Default: the value of the variable "a variable inside dynamic family" if it is defined |
+rougail.var2 string standard | A variable. Default: the value of the variable "a variable inside dynamic family" (rougail.dyn_val1.var) if it is defined |
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.json b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.json
index e7b6a4825..32e427f73 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.json
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -107,7 +107,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.dyn_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.md
index 13202a97c..bb43fd87e 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.md
@@ -19,13 +19,13 @@
> - rougail.dyn_*val1*
> - rougail.dyn_*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[asuffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[asuffix variable](#rougail.var)" (rougail.var).
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
| **rougail.dyn_*val1*.var**
**rougail.dyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: the value of the identifier. |
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" (rougail.dyn_*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.sh
index 89edc8119..d8cb6959e 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.sh
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn_[3mval1[0m
-[34mβ [0m β’ rougail.dyn_[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"asuffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn_[3mval1[0m
+[34mβ [0m β’ rougail.dyn_[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"asuffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -39,6 +39,7 @@
β [1mrougail.var2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m β [1mDefault[0m: the value of the variable β
β β "a variable inside dynamic family" β
-β β if it is defined β
+β β (rougail.dyn_[3mval1[0m.var) if it is β
+β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.adoc b/tests/results/test_namespace/60_6family_dynamic_inside.adoc
index 6d7e3159f..eeaa2bd74 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside.adoc
+++ b/tests/results/test_namespace/60_6family_dynamic_inside.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.__val1___dyn
* rougail.__val2___dyn +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -43,18 +43,18 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable. +
**Default**:
-* the value of the variable "value is suffix"
-* the value of the variable "value is suffix"
+* the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
+* the value of the variable "value is suffix" (rougail.__val2___dyn.var1)
| **rougail.__val1___dyn.var3** +
**rougail.__val2___dyn.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is relative first variable. +
**Default**:
-* the value of the variable "value is suffix"
-* the value of the variable "value is suffix"
+* the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
+* the value of the variable "value is suffix" (rougail.__val2___dyn.var1)
| **rougail.__val1___dyn.var4** +
**rougail.__val2___dyn.var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable of val1. +
-**Default**: the value of the variable "value is suffix"
+**Default**: the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
|====
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 22ef8c1d6..475233eb0 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md
@@ -17,14 +17,14 @@
> - rougail.*val1*_dyn
> - rougail.*val2*_dyn\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1) |
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.html b/tests/results/test_namespace/60_6family_dynamic_inside.html
index 7a5ea174f..592ab672a 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside.html
+++ b/tests/results/test_namespace/60_6family_dynamic_inside.html
@@ -25,19 +25,19 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
-| Variable | Description |
+| Variable | Description |
-rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | Value is suffix. Default: the value of the identifier. |
-rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | Value is first variable. Default: - the value of the variable "value is suffix"
-- the value of the variable "value is suffix"
|
-rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | Value is relative first variable. Default: - the value of the variable "value is suffix"
-- the value of the variable "value is suffix"
|
-rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory | Value is first variable of val1. Default: the value of the variable "value is suffix" |
+rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | Value is suffix. Default: the value of the identifier. |
+rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | Value is first variable. Default: - the value of the variable "value is suffix" (rougail.val1_dyn.var1)
+- the value of the variable "value is suffix" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | Value is relative first variable. Default: - the value of the variable "value is suffix" (rougail.val1_dyn.var1)
+- the value of the variable "value is suffix" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory | Value is first variable of val1. Default: the value of the variable "value is suffix" (rougail.val1_dyn.var1) |
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.json b/tests/results/test_namespace/60_6family_dynamic_inside.json
index ba3a5dfbc..308d5465b 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside.json
+++ b/tests/results/test_namespace/60_6family_dynamic_inside.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -127,7 +127,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -137,7 +137,7 @@
"description": "value is suffix"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -176,7 +176,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -186,7 +186,7 @@
"description": "value is suffix"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -224,7 +224,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.md b/tests/results/test_namespace/60_6family_dynamic_inside.md
index e1075c25f..193b6d4ef 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside.md
+++ b/tests/results/test_namespace/60_6family_dynamic_inside.md
@@ -19,12 +19,12 @@
> - rougail.*val1*_dyn
> - rougail.*val2*_dyn\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1) |
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.sh b/tests/results/test_namespace/60_6family_dynamic_inside.sh
index aa8e204bc..cd5efe711 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside.sh
+++ b/tests/results/test_namespace/60_6family_dynamic_inside.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.[3mval1[0m_dyn
-[34mβ [0m β’ rougail.[3mval2[0m_dyn
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.[3mval1[0m_dyn
+[34mβ [0m β’ rougail.[3mval2[0m_dyn
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -35,20 +35,21 @@
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var2[0m β Value is first variable. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var2[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval1[0m_dyn.var1) β
β β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval2[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var3[0m β Value is relative first variable. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var3[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval1[0m_dyn.var1) β
β β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval2[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var4[0m β Value is first variable of val1. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var4[0m β [1mDefault[0m: the value of the variable β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β "value is suffix" β
+β β (rougail.[3mval1[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.adoc b/tests/results/test_namespace/60_6family_dynamic_inside_empty.adoc
index b760f0b37..c11e214ed 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.adoc
+++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.__val1___dyn
* rougail.__val2___dyn +
`standard` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -43,18 +43,18 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable. +
**Default**:
-* the value of the variable "value is suffix"
-* the value of the variable "value is suffix"
+* the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
+* the value of the variable "value is suffix" (rougail.__val2___dyn.var1)
| **rougail.__val1___dyn.var3** +
**rougail.__val2___dyn.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is relative first variable. +
**Default**:
-* the value of the variable "value is suffix"
-* the value of the variable "value is suffix"
+* the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
+* the value of the variable "value is suffix" (rougail.__val2___dyn.var1)
| **rougail.__val1___dyn.var4** +
**rougail.__val2___dyn.var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable of val1. +
-**Default**: the value of the variable "value is suffix"
+**Default**: the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
|====
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md
index a8b659669..7af2c6b3e 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
@@ -17,14 +17,14 @@
> - rougail.*val1*_dyn
> - rougail.*val2*_dyn\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1) |
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.html b/tests/results/test_namespace/60_6family_dynamic_inside_empty.html
index 269640501..705055986 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.html
+++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.html
@@ -25,19 +25,19 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
-| Variable | Description |
+| Variable | Description |
-rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | Value is suffix. Default: the value of the identifier. |
-rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | Value is first variable. Default: - the value of the variable "value is suffix"
-- the value of the variable "value is suffix"
|
-rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | Value is relative first variable. Default: - the value of the variable "value is suffix"
-- the value of the variable "value is suffix"
|
-rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory | Value is first variable of val1. Default: the value of the variable "value is suffix" |
+rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | Value is suffix. Default: the value of the identifier. |
+rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | Value is first variable. Default: - the value of the variable "value is suffix" (rougail.val1_dyn.var1)
+- the value of the variable "value is suffix" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | Value is relative first variable. Default: - the value of the variable "value is suffix" (rougail.val1_dyn.var1)
+- the value of the variable "value is suffix" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory | Value is first variable of val1. Default: the value of the variable "value is suffix" (rougail.val1_dyn.var1) |
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.json b/tests/results/test_namespace/60_6family_dynamic_inside_empty.json
index f0211d2d0..39f5dde3c 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.json
+++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -121,7 +121,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -131,7 +131,7 @@
"description": "value is suffix"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -170,7 +170,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -180,7 +180,7 @@
"description": "value is suffix"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -218,7 +218,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.md b/tests/results/test_namespace/60_6family_dynamic_inside_empty.md
index ed25bfe1e..525832064 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.md
+++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.md
@@ -19,12 +19,12 @@
> - rougail.*val1*_dyn
> - rougail.*val2*_dyn\
> `standard`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1) |
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace/60_6family_dynamic_inside_empty.sh
index e4c6d44be..c8df6584e 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.sh
+++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,14 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.[3mval1[0m_dyn
-[34mβ [0m β’ rougail.[3mval2[0m_dyn
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.[3mval1[0m_dyn
+[34mβ [0m β’ rougail.[3mval2[0m_dyn
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -35,20 +35,21 @@
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var2[0m β Value is first variable. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var2[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval1[0m_dyn.var1) β
β β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval2[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var3[0m β Value is relative first variable. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var3[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval1[0m_dyn.var1) β
β β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval2[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var4[0m β Value is first variable of val1. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var4[0m β [1mDefault[0m: the value of the variable β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β "value is suffix" β
+β β (rougail.[3mval1[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.adoc b/tests/results/test_namespace/60_6family_dynamic_leadership.adoc
index 035e842fe..38481f5c5 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership.adoc
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
==== A leadership
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 3bc1bce8c..2591e7140 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
A leadership
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.html b/tests/results/test_namespace/60_6family_dynamic_leadership.html
index e7d62c27a..500b6cc09 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership.html
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
A leadership
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.json b/tests/results/test_namespace/60_6family_dynamic_leadership.json
index 6fec0a521..4106b0598 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership.json
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.md b/tests/results/test_namespace/60_6family_dynamic_leadership.md
index e6e6efa8f..b6f5850ab 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership.md
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
### A leadership
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.sh b/tests/results/test_namespace/60_6family_dynamic_leadership.sh
index 2c727eb8d..10dcb8858 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership.sh
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,24 +16,24 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
[1;4;38;5;46mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m.leadership
-[34mβ [0m β’ rougail.dyn[3mval2[0m.leadership
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m.leadership
+[34mβ [0m β’ rougail.dyn[3mval2[0m.leadership
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.adoc b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.adoc
index 2903673ec..e9442bc71 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.adoc
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "a suffix variable"
+**Identifiers**: the value of the variable "a suffix variable" (rougail.var).
====
==== A leadership
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 827139b9c..c90076ea7 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
A leadership
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.html b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.html
index 46993dc98..453a2716e 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.html
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "a suffix variable"
+Identifiers: the value of the variable "a suffix variable" (rougail.var).
A leadership
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.json b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.json
index 9260c4264..5b1f99b6e 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.json
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md
index d2d21ffe8..61619adc6 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a suffix variable](#rougail.var)" (rougail.var).
### A leadership
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.sh
index 170cc8d35..2dca92e78 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.sh
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,24 +16,24 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m.
[1;4;38;5;46mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m.leadership
-[34mβ [0m β’ rougail.dyn[3mval2[0m.leadership
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m.leadership
+[34mβ [0m β’ rougail.dyn[3mval2[0m.leadership
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.adoc b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.adoc
index 4f40c09ce..5bc787889 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.adoc
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A identifier variable"
+**Identifiers**: the value of the variable "A identifier variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -55,8 +55,8 @@ This family builds families dynamically. +
`standard` +
**Identifiers**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val2__.var)
====
[cols="1a,1a"]
|====
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 86eeb7be2..33b6fd57b 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
@@ -34,8 +34,8 @@
> - rougail.dyn*val2*.dyn_*tval2*\
> `standard`\
> **Identifiers**:
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var)
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.html b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.html
index af46f6e65..39c3f26a1 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.html
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A identifier variable"
+Identifiers: the value of the variable "A identifier variable" (rougail.var).
@@ -47,8 +47,8 @@ This family builds families dynamically.
standard
-Identifiers: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
+Identifiers: - the value of the variable "A dynamic variable" (rougail.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval2.var)
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.json b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.json
index 803aea125..2c346e716 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.json
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -141,7 +141,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -151,7 +151,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md
index b69cfd47b..cdd787d1f 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
@@ -37,8 +37,8 @@
> - rougail.dyn*val2*.dyn_*tval2*\
> `standard`\
> **Identifiers**:
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var)
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.sh
index 4d4ad1bf0..0f035866a 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.sh
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,15 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -35,18 +36,18 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mA Second dynamic variable[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn_[3mtval1[0m
-[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn_[3mtval2[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn_[3mtval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn_[3mtval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m
-[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn_[3mtval1[0m
+[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn_[3mtval2[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn_[3mtval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn_[3mtval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m [1m([0mrougail.dyn[3mval1[0m.var[1m)[0m
+[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m [1m([0mrougail.dyn[3mval2[0m.var[1m)[0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.adoc b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.adoc
index 4f40c09ce..5bc787889 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.adoc
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A identifier variable"
+**Identifiers**: the value of the variable "A identifier variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -55,8 +55,8 @@ This family builds families dynamically. +
`standard` +
**Identifiers**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val2__.var)
====
[cols="1a,1a"]
|====
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 86eeb7be2..33b6fd57b 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
@@ -34,8 +34,8 @@
> - rougail.dyn*val2*.dyn_*tval2*\
> `standard`\
> **Identifiers**:
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var)
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.html b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.html
index af46f6e65..39c3f26a1 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.html
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A identifier variable"
+Identifiers: the value of the variable "A identifier variable" (rougail.var).
@@ -47,8 +47,8 @@ This family builds families dynamically.
standard
-Identifiers: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
+Identifiers: - the value of the variable "A dynamic variable" (rougail.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval2.var)
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.json b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.json
index 803aea125..2c346e716 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.json
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -141,7 +141,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -151,7 +151,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.md
index b69cfd47b..cdd787d1f 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
@@ -37,8 +37,8 @@
> - rougail.dyn*val2*.dyn_*tval2*\
> `standard`\
> **Identifiers**:
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var)
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.sh
index 4d4ad1bf0..0f035866a 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.sh
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,15 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -35,18 +36,18 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mA Second dynamic variable[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn_[3mtval1[0m
-[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn_[3mtval2[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn_[3mtval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn_[3mtval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m
-[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn_[3mtval1[0m
+[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn_[3mtval2[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn_[3mtval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn_[3mtval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m [1m([0mrougail.dyn[3mval1[0m.var[1m)[0m
+[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m [1m([0mrougail.dyn[3mval2[0m.var[1m)[0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.adoc b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.adoc
index 41ce202ec..ba41d7d66 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.adoc
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.__val1__
* rougail.__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A identifier variable"
+**Identifiers**: the value of the variable "A identifier variable" (rougail.var).
====
==== A dynamic family
@@ -44,7 +44,7 @@ This family builds families dynamically. +
* rougail.__val2__.__val1__
* rougail.__val2__.__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A identifier variable"
+**Identifiers**: the value of the variable "A identifier variable" (rougail.var).
====
[cols="1a,1a"]
|====
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 bc1a4738d..729388752 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
@@ -17,7 +17,7 @@
> - rougail.*val1*
> - rougail.*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
A dynamic family
@@ -29,7 +29,7 @@
> - rougail.*val2*.*val1*
> - rougail.*val2*.*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
| Variable | Description |
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.html b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.html
index 760ddc85c..87e32d223 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.html
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A identifier variable"
+Identifiers: the value of the variable "A identifier variable" (rougail.var).
A dynamic family
@@ -38,7 +38,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A identifier variable"
+Identifiers: the value of the variable "A identifier variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.json b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.json
index c0f3d4480..fabb71046 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.json
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -104,7 +104,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.md
index 36aa6e419..deb85ed5b 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.md
@@ -19,7 +19,7 @@
> - rougail.*val1*
> - rougail.*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
### A dynamic family
@@ -32,7 +32,7 @@
> - rougail.*val2*.*val1*
> - rougail.*val2*.*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
| Variable | Description |
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.sh
index f70f9365f..59e131b50 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.sh
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,27 +16,29 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.[3mval1[0m
-[34mβ [0m β’ rougail.[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.[3mval1[0m
+[34mβ [0m β’ rougail.[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1m([0mrougail.var[1m)[0m.
[1;4;38;5;46mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.[3mval1[0m.[3mval1[0m
-[34mβ [0m β’ rougail.[3mval1[0m.[3mval2[0m
-[34mβ [0m β’ rougail.[3mval2[0m.[3mval1[0m
-[34mβ [0m β’ rougail.[3mval2[0m.[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.[3mval1[0m.[3mval1[0m
+[34mβ [0m β’ rougail.[3mval1[0m.[3mval2[0m
+[34mβ [0m β’ rougail.[3mval2[0m.[3mval1[0m
+[34mβ [0m β’ rougail.[3mval2[0m.[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.adoc b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.adoc
index d1cc8f54c..67ad93b8c 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.adoc
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A identifier variable"
+**Identifiers**: the value of the variable "A identifier variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -55,8 +55,8 @@ This family builds families dynamically. +
`standard` +
**Identifiers**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val2__.var)
====
[cols="1a,1a"]
|====
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 f30bf3894..96ea66df3 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
@@ -34,8 +34,8 @@
> - rougail.dyn*val2*.dyn_*tval2*\
> `standard`\
> **Identifiers**:
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var)
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.html b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.html
index 52de449cf..7b4aac8f8 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.html
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A identifier variable"
+Identifiers: the value of the variable "A identifier variable" (rougail.var).
@@ -47,8 +47,8 @@ This family builds families dynamically.
standard
-Identifiers: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
+Identifiers: - the value of the variable "A dynamic variable" (rougail.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval2.var)
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.json b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.json
index f3424cdd0..d88a6a7f1 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.json
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -135,7 +135,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -145,7 +145,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.md
index a517513c5..93a6ee486 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|
@@ -37,8 +37,8 @@
> - rougail.dyn*val2*.dyn_*tval2*\
> `standard`\
> **Identifiers**:
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var)
| Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.sh
index 9774dab3e..791a07bfd 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.sh
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,15 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -35,18 +36,18 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mA Second dynamic variable[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn_[3mtval1[0m
-[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn_[3mtval2[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn_[3mtval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn_[3mtval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m
-[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn_[3mtval1[0m
+[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn_[3mtval2[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn_[3mtval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn_[3mtval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m [1m([0mrougail.dyn[3mval1[0m.var[1m)[0m
+[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m [1m([0mrougail.dyn[3mval2[0m.var[1m)[0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.adoc b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.adoc
index 763d8b2c4..4020300f5 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.adoc
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`standard` +
-**Identifiers**: the value of the variable "A identifier variable"
+**Identifiers**: the value of the variable "A identifier variable" (rougail.var).
====
[cols="1a,1a"]
|====
@@ -52,8 +52,8 @@ This family builds families dynamically. +
`standard` +
**Identifiers**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val2__.var)
====
[cols="1a,1a"]
|====
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 fce971aad..292f7aa59 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
@@ -32,8 +32,8 @@
> - rougail.dyn*val2*.dyn_*example*\
> `standard`\
> **Identifiers**:
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var)
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.html b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.html
index 57e3c4507..3c70693d2 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.html
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
standard
-Identifiers: the value of the variable "A identifier variable"
+Identifiers: the value of the variable "A identifier variable" (rougail.var).
@@ -45,8 +45,8 @@ This family builds families dynamically.
standard
-Identifiers: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
+Identifiers: - the value of the variable "A dynamic variable" (rougail.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval2.var)
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.json b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.json
index 22f0927c7..7cfd64939 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.json
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -115,7 +115,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -125,7 +125,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.md
index 05d3c3c2f..ac65f18e7 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `standard`\
-> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[A identifier variable](#rougail.var)" (rougail.var).
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
@@ -35,8 +35,8 @@
> - rougail.dyn*val2*.dyn_*example*\
> `standard`\
> **Identifiers**:
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
-> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
+> - the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var)
| Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.sh
index 75b42e9fb..6e3cd5b56 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.sh
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,14 +16,15 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A identifier variable"[0m
+[34mβ [0m[1m([0mrougail.var[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -35,16 +36,16 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;38;5;46mA Second dynamic variable[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn_[3mexample[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn_[3mexample[0m
-[34mβ [0m[1;7m standard [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m
-[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn_[3mexample[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn_[3mexample[0m
+[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m [1m([0mrougail.dyn[3mval1[0m.var[1m)[0m
+[34mβ [0m β’ the value of the variable [32m"A dynamic variable"[0m [1m([0mrougail.dyn[3mval2[0m.var[1m)[0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.adoc b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.adoc
index 0dd736f7e..25c73bc0b 100644
--- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.adoc
+++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var1).
====
==== dyn__val1__, dyn__val2__, dyn__val1__ or dyn__val2__
@@ -44,7 +44,7 @@ This family builds families dynamically. +
* rougail.dyn__val2__.dyn__val1__
* rougail.dyn__val2__.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var1).
====
[cols="1a,1a"]
|====
@@ -63,7 +63,7 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val2__.dyn__val1__.var)
|====
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 a977c9138..b6499e020 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
dyn*val1*, dyn*val2*, dyn*val1* or dyn*val2*
@@ -29,7 +29,7 @@
> - rougail.dyn*val2*.dyn*val1*
> - rougail.dyn*val2*.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
@@ -39,9 +39,9 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val2*.dyn*val1*.var) |
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.html b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.html
index 0922be302..c088cbd41 100644
--- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.html
+++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var1).
dynval1, dynval2, dynval1 or dynval2
@@ -38,7 +38,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var1).
@@ -54,8 +54,8 @@ This family builds families dynamically.
| Variable | Description |
-rougail.var2 string multiple standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+rougail.var2 string multiple standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable" (rougail.dynval1.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval2.dynval1.var)
|
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.json b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.json
index 43e1081d4..636fb12d8 100644
--- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.json
+++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.json
@@ -62,7 +62,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -102,7 +102,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -168,7 +168,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.dyn{{ identifier }}.var",
"identifiers": [
@@ -179,7 +179,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.md
index 160bc1c44..7b97d08d9 100644
--- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.md
+++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
### dyn*val1*, dyn*val2*, dyn*val1* or dyn*val2*
@@ -32,13 +32,13 @@
> - rougail.dyn*val2*.dyn*val1*
> - rougail.dyn*val2*.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.dyn*val1*.var**
**rougail.dyn*val1*.dyn*val2*.var**
**rougail.dyn*val2*.dyn*val1*.var**
**rougail.dyn*val2*.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val2*.dyn*val1*.var) |
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.sh
index cd16804ed..372a47013 100644
--- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.sh
+++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,27 +16,27 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn[0m[1;3;4;92mval1[0m[1;4;92m or dyn[0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var1[1m)[0m.
[1;4;38;5;46mdyn[0m[1;3;4;38;5;46mval1[0m[1;4;38;5;46m, dyn[0m[1;3;4;38;5;46mval2[0m[1;4;38;5;46m, dyn[0m[1;3;4;38;5;46mval1[0m[1;4;38;5;46m or dyn[0m[1;3;4;38;5;46mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn[3mval2[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn[3mval2[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -56,7 +56,9 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval2[0m.dyn[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.adoc b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.adoc
index 0dd736f7e..4710057ba 100644
--- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.adoc
+++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
* rougail.dyn__val1__
* rougail.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var1).
====
==== dyn__val1__, dyn__val2__, dyn__val1__ or dyn__val2__
@@ -44,7 +44,7 @@ This family builds families dynamically. +
* rougail.dyn__val2__.dyn__val1__
* rougail.dyn__val2__.dyn__val2__ +
`basic` +
-**Identifiers**: the value of the variable "A suffix variable"
+**Identifiers**: the value of the variable "A suffix variable" (rougail.var1).
====
[cols="1a,1a"]
|====
@@ -63,7 +63,7 @@ This family builds families dynamically. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.dyn__val2__.var)
|====
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md
index a977c9138..6bbbe936f 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
@@ -17,7 +17,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
dyn*val1*, dyn*val2*, dyn*val1* or dyn*val2*
@@ -29,7 +29,7 @@
> - rougail.dyn*val2*.dyn*val1*
> - rougail.dyn*val2*.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
@@ -39,9 +39,9 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val2*.var) |
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.html b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.html
index 0922be302..b97cae20c 100644
--- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.html
+++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var1).
dynval1, dynval2, dynval1 or dynval2
@@ -38,7 +38,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "A suffix variable"
+Identifiers: the value of the variable "A suffix variable" (rougail.var1).
@@ -54,8 +54,8 @@ This family builds families dynamically.
| Variable | Description |
-rougail.var2 string multiple standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+rougail.var2 string multiple standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable" (rougail.dynval1.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval1.dynval2.var)
|
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.json b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.json
index 886216513..17af4ed18 100644
--- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.json
+++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.json
@@ -62,7 +62,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -102,7 +102,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -168,7 +168,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.dyn{{ identifier }}.var",
"identifiers": [
@@ -179,7 +179,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.md
index 160bc1c44..ccdecc747 100644
--- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.md
+++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.md
@@ -19,7 +19,7 @@
> - rougail.dyn*val1*
> - rougail.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
### dyn*val1*, dyn*val2*, dyn*val1* or dyn*val2*
@@ -32,13 +32,13 @@
> - rougail.dyn*val2*.dyn*val1*
> - rougail.dyn*val2*.dyn*val2*\
> `basic`\
-> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)"
+> **Identifiers**: the value of the variable "[A suffix variable](#rougail.var1)" (rougail.var1).
| Variable | Description |
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| **rougail.dyn*val1*.dyn*val1*.var**
**rougail.dyn*val1*.dyn*val2*.var**
**rougail.dyn*val2*.dyn*val1*.var**
**rougail.dyn*val2*.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val2*.var) |
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.sh
index cd16804ed..60244f293 100644
--- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.sh
+++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,27 +16,27 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn[0m[1;3;4;92mval1[0m[1;4;92m or dyn[0m[1;3;4;92mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var1[1m)[0m.
[1;4;38;5;46mdyn[0m[1;3;4;38;5;46mval1[0m[1;4;38;5;46m, dyn[0m[1;3;4;38;5;46mval2[0m[1;4;38;5;46m, dyn[0m[1;3;4;38;5;46mval1[0m[1;4;38;5;46m or dyn[0m[1;3;4;38;5;46mval2[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn[3mval2[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval1[0m.dyn[3mval2[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"A suffix variable"[0m [1m([0mrougail.var1[1m)[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -56,7 +56,9 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace/60_9extra_dynamic.adoc b/tests/results/test_namespace/60_9extra_dynamic.adoc
index 97efaf9d6..9c3eb8a06 100644
--- a/tests/results/test_namespace/60_9extra_dynamic.adoc
+++ b/tests/results/test_namespace/60_9extra_dynamic.adoc
@@ -34,7 +34,7 @@ This family is a namespace. +
This family builds families dynamically. +
**Path**: extra.dyn___a__ +
`basic` +
-**Identifiers**: the value of the variable "a variable"
+**Identifiers**: the value of the variable "a variable" (rougail.var).
====
[cols="1a,1a"]
|====
diff --git a/tests/results/test_namespace/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace/60_9extra_dynamic.gitlab.md
index aa26b91b4..237448a7f 100644
--- a/tests/results/test_namespace/60_9extra_dynamic.gitlab.md
+++ b/tests/results/test_namespace/60_9extra_dynamic.gitlab.md
@@ -24,7 +24,7 @@
> This family builds families dynamically.\
> **Path**: extra.dyn_*a*\
> `basic`\
-> **Identifiers**: the value of the variable "[a variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a variable](#rougail.var)" (rougail.var).
| Variable |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_9extra_dynamic.html b/tests/results/test_namespace/60_9extra_dynamic.html
index 663edca91..5bd89a8f1 100644
--- a/tests/results/test_namespace/60_9extra_dynamic.html
+++ b/tests/results/test_namespace/60_9extra_dynamic.html
@@ -31,7 +31,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "a variable"
+Identifiers: the value of the variable "a variable" (rougail.var).
diff --git a/tests/results/test_namespace/60_9extra_dynamic.json b/tests/results/test_namespace/60_9extra_dynamic.json
index e2e6f6e67..6f4f3d6bd 100644
--- a/tests/results/test_namespace/60_9extra_dynamic.json
+++ b/tests/results/test_namespace/60_9extra_dynamic.json
@@ -73,7 +73,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_9extra_dynamic.md b/tests/results/test_namespace/60_9extra_dynamic.md
index b9e097924..5c328ec91 100644
--- a/tests/results/test_namespace/60_9extra_dynamic.md
+++ b/tests/results/test_namespace/60_9extra_dynamic.md
@@ -25,7 +25,7 @@
> This family builds families dynamically.\
> **Path**: extra.dyn_*a*\
> `basic`\
-> **Identifiers**: the value of the variable "[a variable](#rougail.var)"
+> **Identifiers**: the value of the variable "[a variable](#rougail.var)" (rougail.var).
| Variable |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_9extra_dynamic.sh b/tests/results/test_namespace/60_9extra_dynamic.sh
index 9a6294cfe..8ba74afc7 100644
--- a/tests/results/test_namespace/60_9extra_dynamic.sh
+++ b/tests/results/test_namespace/60_9extra_dynamic.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -16,20 +16,20 @@
[1;4;96mExtra[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: extra
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: extra
+[34mβ [0m[1;7m basic [0m
[1;4;92mdyn_[0m[1;3;4;92ma[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: extra.dyn_[3ma[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: extra.dyn_[3ma[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a variable"[0m [1m([0mrougail.var[1m)[0m.
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.adoc b/tests/results/test_namespace/60_9extra_dynamic_extra.adoc
index ed892c383..214449ebd 100644
--- a/tests/results/test_namespace/60_9extra_dynamic_extra.adoc
+++ b/tests/results/test_namespace/60_9extra_dynamic_extra.adoc
@@ -52,7 +52,7 @@ This family is a namespace. +
This family builds families dynamically. +
**Path**: extra.dyn___a__ +
`basic` +
-**Identifiers**: the value of the variable "a variable"
+**Identifiers**: the value of the variable "a variable" (extra.var).
====
[cols="1a,1a"]
|====
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 90f12ccb2..1a978a02a 100644
--- a/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md
+++ b/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md
@@ -36,7 +36,7 @@
> This family builds families dynamically.\
> **Path**: extra.dyn_*a*\
> `basic`\
-> **Identifiers**: the value of the variable "[a variable](#extra.var)"
+> **Identifiers**: the value of the variable "[a variable](#extra.var)" (extra.var).
| Variable |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.html b/tests/results/test_namespace/60_9extra_dynamic_extra.html
index 62b257fcc..6d9b6be00 100644
--- a/tests/results/test_namespace/60_9extra_dynamic_extra.html
+++ b/tests/results/test_namespace/60_9extra_dynamic_extra.html
@@ -46,7 +46,7 @@ This family builds families dynamically.
basic
-Identifiers: the value of the variable "a variable"
+Identifiers: the value of the variable "a variable" (extra.var).
diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.json b/tests/results/test_namespace/60_9extra_dynamic_extra.json
index dcd4ca4d6..7cb99e40d 100644
--- a/tests/results/test_namespace/60_9extra_dynamic_extra.json
+++ b/tests/results/test_namespace/60_9extra_dynamic_extra.json
@@ -114,7 +114,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "extra.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.md b/tests/results/test_namespace/60_9extra_dynamic_extra.md
index ce5e926d1..2ca51e222 100644
--- a/tests/results/test_namespace/60_9extra_dynamic_extra.md
+++ b/tests/results/test_namespace/60_9extra_dynamic_extra.md
@@ -36,7 +36,7 @@
> This family builds families dynamically.\
> **Path**: extra.dyn_*a*\
> `basic`\
-> **Identifiers**: the value of the variable "[a variable](#extra.var)"
+> **Identifiers**: the value of the variable "[a variable](#extra.var)" (extra.var).
| Variable |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.sh b/tests/results/test_namespace/60_9extra_dynamic_extra.sh
index 278ac606b..82b1338d7 100644
--- a/tests/results/test_namespace/60_9extra_dynamic_extra.sh
+++ b/tests/results/test_namespace/60_9extra_dynamic_extra.sh
@@ -1,17 +1,17 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m standard [0m
[1;4;92mGΓ©nΓ©ral[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: rougail.general
-[34mβ [0m[1;7m standard [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: rougail.general
+[34mβ [0m[1;7m standard [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -24,11 +24,11 @@
[1;4;96mExtra[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: extra
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: extra
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -39,12 +39,12 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mdyn_[0m[1;3;4;92ma[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: extra.dyn_[3ma[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: extra.dyn_[3ma[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m: the value of the variable [32m"a variable"[0m [1m([0mextra.var[1m)[0m.
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ
diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.adoc b/tests/results/test_namespace/60_9family_dynamic_calc_both.adoc
index c168cf3a0..0946e7482 100644
--- a/tests/results/test_namespace/60_9family_dynamic_calc_both.adoc
+++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
**Identifiers**:
* val1
-* the value of the variable "a suffix variable"
+* the value of the variable "a suffix variable" (rougail.var)
====
[cols="1a,1a"]
|====
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 0cc390d2d..d0282dd94 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
@@ -19,7 +19,7 @@
> `basic`\
> **Identifiers**:
> - val1
-> - the value of the variable "[a suffix variable](#rougail.var)"
+> - the value of the variable "[a suffix variable](#rougail.var)" (rougail.var)
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.html b/tests/results/test_namespace/60_9family_dynamic_calc_both.html
index 14dc18c33..6cb7a1bf1 100644
--- a/tests/results/test_namespace/60_9family_dynamic_calc_both.html
+++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.html
@@ -25,7 +25,7 @@ This family builds families dynamically.
basic
Identifiers: - val1
-- the value of the variable "a suffix variable"
+the value of the variable "a suffix variable" (rougail.var)
diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.json b/tests/results/test_namespace/60_9family_dynamic_calc_both.json
index 295a22342..8038d7fa2 100644
--- a/tests/results/test_namespace/60_9family_dynamic_calc_both.json
+++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.json
@@ -54,7 +54,7 @@
"identifier": [
"val1",
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.md b/tests/results/test_namespace/60_9family_dynamic_calc_both.md
index c1a7ee821..64766ac08 100644
--- a/tests/results/test_namespace/60_9family_dynamic_calc_both.md
+++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.md
@@ -21,7 +21,7 @@
> `basic`\
> **Identifiers**:
> - val1
-> - the value of the variable "[a suffix variable](#rougail.var)"
+> - the value of the variable "[a suffix variable](#rougail.var)" (rougail.var)
| Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace/60_9family_dynamic_calc_both.sh
index 28a84abed..136f75c87 100644
--- a/tests/results/test_namespace/60_9family_dynamic_calc_both.sh
+++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.sh
@@ -1,10 +1,10 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -14,16 +14,16 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA dynamic family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ rougail.dyn[3mval1[0m
-[34mβ [0m β’ rougail.dyn[3mval2[0m
-[34mβ [0m[1;7m basic [0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ val1
-[34mβ [0m β’ the value of the variable [32m"a suffix variable"[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ rougail.dyn[3mval1[0m
+[34mβ [0m β’ rougail.dyn[3mval2[0m
+[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ val1
+[34mβ [0m β’ the value of the variable [32m"a suffix variable"[0m [1m([0mrougail.var[1m)[0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/68_0family_leadership_mode.sh b/tests/results/test_namespace/68_0family_leadership_mode.sh
index ee3a7597c..20e4ce128 100644
--- a/tests/results/test_namespace/68_0family_leadership_mode.sh
+++ b/tests/results/test_namespace/68_0family_leadership_mode.sh
@@ -1,18 +1,18 @@
[1;4;96mRougail[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family is a namespace.
-[34mβ [0m[1mPath[0m: rougail
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family is a namespace.
+[34mβ [0m[1mPath[0m: rougail
+[34mβ [0m[1;7m basic [0m
[1;4;92mA leadership[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family contains lists of variable blocks.
-[34mβ [0m[1mPath[0m: rougail.leader
-[34mβ [0m[1;7m basic [0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family contains lists of variable blocks.
+[34mβ [0m[1mPath[0m: rougail.leader
+[34mβ [0m[1;7m basic [0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/results/test_namespace/warnings_60_5family_dynamic_unknown_suffix b/tests/results/test_namespace/warnings_60_5family_dynamic_unknown_suffix
new file mode 100644
index 000000000..ea487b0b5
--- /dev/null
+++ b/tests/results/test_namespace/warnings_60_5family_dynamic_unknown_suffix
@@ -0,0 +1 @@
+["\"disabled\" is a calculation for rougail.{{ identifier }}_dyn.var4 but has no description in \"../../rougail-tests/structures/60_5family_dynamic_unknown_suffix/rougail/00-base.yml\""]
\ No newline at end of file
diff --git a/tests/results/test_namespace/warnings_60_5family_dynamic_variable_outside_sub_suffix b/tests/results/test_namespace/warnings_60_5family_dynamic_variable_outside_sub_suffix
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace/warnings_60_5family_dynamic_variable_outside_sub_suffix
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.adoc
new file mode 100644
index 000000000..3e3b3d6b7
--- /dev/null
+++ b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.adoc
@@ -0,0 +1,32 @@
+== Example with all variables modifiable
+
+[,yaml]
+----
+---
+rougail:
+ var:
+ - val1
+ - val2
+ - val3
+ - val4
+ val1_dyn:
+ var1: val1
+ var2: val1
+ var3: val1
+ var4: val4
+ val2_dyn:
+ var1: val2
+ var2: val2
+ var3: val2
+ var4: val4
+ val3_dyn:
+ var1: val3
+ var2: val3
+ var3: val3
+ var4: val4
+ val4_dyn:
+ var1: val4
+ var2: val4
+ var3: val4
+ var4: val4
+----
diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.gitlab.md
new file mode 100644
index 000000000..e482d9c7e
--- /dev/null
+++ b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.gitlab.md
@@ -0,0 +1,33 @@
+Example with all variables modifiable
+
+```yaml
+---
+rougail:
+ var:
+ - val1
+ - val2
+ - val3
+ - val4
+ val1_dyn:
+ var1: val1
+ var2: val1
+ var3: val1
+ var4: val4
+ val2_dyn:
+ var1: val2
+ var2: val2
+ var3: val2
+ var4: val4
+ val3_dyn:
+ var1: val3
+ var2: val3
+ var3: val3
+ var4: val4
+ val4_dyn:
+ var1: val4
+ var2: val4
+ var3: val4
+ var4: val4
+```
+
+
diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.html b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.html
new file mode 100644
index 000000000..2e96ef7a3
--- /dev/null
+++ b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.html
@@ -0,0 +1,28 @@
+Example with all variables modifiable
+
+rougail:
+ var:
+ - val1
+ - val2
+ - val3
+ - val4
+ val1_dyn:
+ var1: val1
+ var2: val1
+ var3: val1
+ var4: val4
+ val2_dyn:
+ var1: val2
+ var2: val2
+ var3: val2
+ var4: val4
+ val3_dyn:
+ var1: val3
+ var2: val3
+ var3: val3
+ var4: val4
+ val4_dyn:
+ var1: val4
+ var2: val4
+ var3: val4
+ var4: val4
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.md b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.md
new file mode 100644
index 000000000..ae45428be
--- /dev/null
+++ b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.md
@@ -0,0 +1,31 @@
+# Example with all variables modifiable
+
+```yaml
+---
+rougail:
+ var:
+ - val1
+ - val2
+ - val3
+ - val4
+ val1_dyn:
+ var1: val1
+ var2: val1
+ var3: val1
+ var4: val4
+ val2_dyn:
+ var1: val2
+ var2: val2
+ var3: val2
+ var4: val4
+ val3_dyn:
+ var1: val3
+ var2: val3
+ var3: val3
+ var4: val4
+ val4_dyn:
+ var1: val4
+ var2: val4
+ var3: val4
+ var4: val4
+```
diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.sh b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.sh
new file mode 100644
index 000000000..ea1d6e585
--- /dev/null
+++ b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix.sh
@@ -0,0 +1,30 @@
+[1;4;96mExample with all variables modifiable[0m
+
+[38;2;248;248;242;48;2;39;40;34m---[0m[48;2;39;40;34m [0m
+[38;2;255;70;137;48;2;39;40;34mrougail[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval3 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mval1_dyn[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar1[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar3[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar4[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mval2_dyn[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar1[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar3[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar4[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mval3_dyn[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar1[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval3 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval3 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar3[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval3 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar4[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mval4_dyn[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar1[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar3[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar4[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4 [0m
+
diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.adoc
new file mode 100644
index 000000000..cae617fca
--- /dev/null
+++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.adoc
@@ -0,0 +1,23 @@
+== Example with all variables modifiable
+
+[,yaml]
+----
+---
+rougail:
+ var:
+ - val1
+ - val2
+ my_dyn_family_val1:
+ subdyn_val1:
+ var: val1
+ subdyn_val2:
+ var: val2
+ my_dyn_family_val2:
+ subdyn_val1:
+ var: val1
+ subdyn_val2:
+ var: val2
+ var2:
+ - val1
+ - val2
+----
diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
new file mode 100644
index 000000000..0481596ce
--- /dev/null
+++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
@@ -0,0 +1,24 @@
+Example with all variables modifiable
+
+```yaml
+---
+rougail:
+ var:
+ - val1
+ - val2
+ my_dyn_family_val1:
+ subdyn_val1:
+ var: val1
+ subdyn_val2:
+ var: val2
+ my_dyn_family_val2:
+ subdyn_val1:
+ var: val1
+ subdyn_val2:
+ var: val2
+ var2:
+ - val1
+ - val2
+```
+
+
diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.html b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.html
new file mode 100644
index 000000000..2adf7fa7b
--- /dev/null
+++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.html
@@ -0,0 +1,19 @@
+Example with all variables modifiable
+
+rougail:
+ var:
+ - val1
+ - val2
+ my_dyn_family_val1:
+ subdyn_val1:
+ var: val1
+ subdyn_val2:
+ var: val2
+ my_dyn_family_val2:
+ subdyn_val1:
+ var: val1
+ subdyn_val2:
+ var: val2
+ var2:
+ - val1
+ - val2
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.md
new file mode 100644
index 000000000..7ca3d5f0a
--- /dev/null
+++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.md
@@ -0,0 +1,22 @@
+# Example with all variables modifiable
+
+```yaml
+---
+rougail:
+ var:
+ - val1
+ - val2
+ my_dyn_family_val1:
+ subdyn_val1:
+ var: val1
+ subdyn_val2:
+ var: val2
+ my_dyn_family_val2:
+ subdyn_val1:
+ var: val1
+ subdyn_val2:
+ var: val2
+ var2:
+ - val1
+ - val2
+```
diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.sh b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.sh
new file mode 100644
index 000000000..5bf739cc3
--- /dev/null
+++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix.sh
@@ -0,0 +1,21 @@
+[1;4;96mExample with all variables modifiable[0m
+
+[38;2;248;248;242;48;2;39;40;34m---[0m[48;2;39;40;34m [0m
+[38;2;255;70;137;48;2;39;40;34mrougail[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mmy_dyn_family_val1[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34msubdyn_val1[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34msubdyn_val2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mmy_dyn_family_val2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34msubdyn_val1[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34msubdyn_val2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2 [0m
+
diff --git a/tests/results/test_namespace_examples/warnings_60_5family_dynamic_unknown_suffix b/tests/results/test_namespace_examples/warnings_60_5family_dynamic_unknown_suffix
new file mode 100644
index 000000000..ea487b0b5
--- /dev/null
+++ b/tests/results/test_namespace_examples/warnings_60_5family_dynamic_unknown_suffix
@@ -0,0 +1 @@
+["\"disabled\" is a calculation for rougail.{{ identifier }}_dyn.var4 but has no description in \"../../rougail-tests/structures/60_5family_dynamic_unknown_suffix/rougail/00-base.yml\""]
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples/warnings_60_5family_dynamic_variable_outside_sub_suffix b/tests/results/test_namespace_examples/warnings_60_5family_dynamic_variable_outside_sub_suffix
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace_examples/warnings_60_5family_dynamic_variable_outside_sub_suffix
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.adoc b/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.adoc
new file mode 100644
index 000000000..55ba6afe5
--- /dev/null
+++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.adoc
@@ -0,0 +1,32 @@
+== Example with all variables modifiable
+
+[,yaml]
+----
+---
+rougail: # Rougail
+ var: # A suffix variable
+ - val1
+ - val2
+ - val3
+ - val4
+ val1_dyn: # A dynamic family
+ var1: val1 # A variable 1
+ var2: val1 # A variable 2
+ var3: val1 # A variable 3
+ var4: val4 # A variable 4
+ val2_dyn: # A dynamic family
+ var1: val2 # A variable 1
+ var2: val2 # A variable 2
+ var3: val2 # A variable 3
+ var4: val4 # A variable 4
+ val3_dyn: # A dynamic family
+ var1: val3 # A variable 1
+ var2: val3 # A variable 2
+ var3: val3 # A variable 3
+ var4: val4 # A variable 4
+ val4_dyn: # A dynamic family
+ var1: val4 # A variable 1
+ var2: val4 # A variable 2
+ var3: val4 # A variable 3
+ var4: val4 # A variable 4
+----
diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.gitlab.md
new file mode 100644
index 000000000..e7832b2a4
--- /dev/null
+++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.gitlab.md
@@ -0,0 +1,33 @@
+Example with all variables modifiable
+
+```yaml
+---
+rougail: # Rougail
+ var: # A suffix variable
+ - val1
+ - val2
+ - val3
+ - val4
+ val1_dyn: # A dynamic family
+ var1: val1 # A variable 1
+ var2: val1 # A variable 2
+ var3: val1 # A variable 3
+ var4: val4 # A variable 4
+ val2_dyn: # A dynamic family
+ var1: val2 # A variable 1
+ var2: val2 # A variable 2
+ var3: val2 # A variable 3
+ var4: val4 # A variable 4
+ val3_dyn: # A dynamic family
+ var1: val3 # A variable 1
+ var2: val3 # A variable 2
+ var3: val3 # A variable 3
+ var4: val4 # A variable 4
+ val4_dyn: # A dynamic family
+ var1: val4 # A variable 1
+ var2: val4 # A variable 2
+ var3: val4 # A variable 3
+ var4: val4 # A variable 4
+```
+
+
diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.html b/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.html
new file mode 100644
index 000000000..6ff473571
--- /dev/null
+++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.html
@@ -0,0 +1,28 @@
+Example with all variables modifiable
+
+rougail: # Rougail
+ var: # A suffix variable
+ - val1
+ - val2
+ - val3
+ - val4
+ val1_dyn: # A dynamic family
+ var1: val1 # A variable 1
+ var2: val1 # A variable 2
+ var3: val1 # A variable 3
+ var4: val4 # A variable 4
+ val2_dyn: # A dynamic family
+ var1: val2 # A variable 1
+ var2: val2 # A variable 2
+ var3: val2 # A variable 3
+ var4: val4 # A variable 4
+ val3_dyn: # A dynamic family
+ var1: val3 # A variable 1
+ var2: val3 # A variable 2
+ var3: val3 # A variable 3
+ var4: val4 # A variable 4
+ val4_dyn: # A dynamic family
+ var1: val4 # A variable 1
+ var2: val4 # A variable 2
+ var3: val4 # A variable 3
+ var4: val4 # A variable 4
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.md b/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.md
new file mode 100644
index 000000000..aa0ce0fcb
--- /dev/null
+++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.md
@@ -0,0 +1,31 @@
+# Example with all variables modifiable
+
+```yaml
+---
+rougail: # Rougail
+ var: # A suffix variable
+ - val1
+ - val2
+ - val3
+ - val4
+ val1_dyn: # A dynamic family
+ var1: val1 # A variable 1
+ var2: val1 # A variable 2
+ var3: val1 # A variable 3
+ var4: val4 # A variable 4
+ val2_dyn: # A dynamic family
+ var1: val2 # A variable 1
+ var2: val2 # A variable 2
+ var3: val2 # A variable 3
+ var4: val4 # A variable 4
+ val3_dyn: # A dynamic family
+ var1: val3 # A variable 1
+ var2: val3 # A variable 2
+ var3: val3 # A variable 3
+ var4: val4 # A variable 4
+ val4_dyn: # A dynamic family
+ var1: val4 # A variable 1
+ var2: val4 # A variable 2
+ var3: val4 # A variable 3
+ var4: val4 # A variable 4
+```
diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.sh
new file mode 100644
index 000000000..d6071cb85
--- /dev/null
+++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix.sh
@@ -0,0 +1,30 @@
+[1;4;96mExample with all variables modifiable[0m
+
+[38;2;248;248;242;48;2;39;40;34m---[0m[48;2;39;40;34m [0m
+[38;2;255;70;137;48;2;39;40;34mrougail[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# Rougail[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A suffix variable[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval3 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mval1_dyn[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A dynamic family[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar1[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 1[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 2[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar3[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 3[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar4[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 4[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mval2_dyn[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A dynamic family[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar1[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 1[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 2[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar3[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 3[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar4[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 4[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mval3_dyn[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A dynamic family[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar1[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval3[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 1[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval3[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 2[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar3[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval3[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 3[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar4[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 4[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mval4_dyn[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A dynamic family[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar1[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 1[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 2[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar3[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 3[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar4[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval4[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable 4[0m[48;2;39;40;34m [0m
+
diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.adoc b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.adoc
new file mode 100644
index 000000000..061be8d52
--- /dev/null
+++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.adoc
@@ -0,0 +1,23 @@
+== Example with all variables modifiable
+
+[,yaml]
+----
+---
+rougail: # Rougail
+ var: # A suffix variable
+ - val1
+ - val2
+ my_dyn_family_val1: # A dynamic family
+ subdyn_val1: # A sub dynamic family
+ var: val1 # A variable inside a sub dynamic family
+ subdyn_val2: # A sub dynamic family
+ var: val2 # A variable inside a sub dynamic family
+ my_dyn_family_val2: # A dynamic family
+ subdyn_val1: # A sub dynamic family
+ var: val1 # A variable inside a sub dynamic family
+ subdyn_val2: # A sub dynamic family
+ var: val2 # A variable inside a sub dynamic family
+ var2: # A variable
+ - val1
+ - val2
+----
diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
new file mode 100644
index 000000000..a4232c8e8
--- /dev/null
+++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
@@ -0,0 +1,24 @@
+Example with all variables modifiable
+
+```yaml
+---
+rougail: # Rougail
+ var: # A suffix variable
+ - val1
+ - val2
+ my_dyn_family_val1: # A dynamic family
+ subdyn_val1: # A sub dynamic family
+ var: val1 # A variable inside a sub dynamic family
+ subdyn_val2: # A sub dynamic family
+ var: val2 # A variable inside a sub dynamic family
+ my_dyn_family_val2: # A dynamic family
+ subdyn_val1: # A sub dynamic family
+ var: val1 # A variable inside a sub dynamic family
+ subdyn_val2: # A sub dynamic family
+ var: val2 # A variable inside a sub dynamic family
+ var2: # A variable
+ - val1
+ - val2
+```
+
+
diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.html b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.html
new file mode 100644
index 000000000..6ad0a5430
--- /dev/null
+++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.html
@@ -0,0 +1,19 @@
+Example with all variables modifiable
+
+rougail: # Rougail
+ var: # A suffix variable
+ - val1
+ - val2
+ my_dyn_family_val1: # A dynamic family
+ subdyn_val1: # A sub dynamic family
+ var: val1 # A variable inside a sub dynamic family
+ subdyn_val2: # A sub dynamic family
+ var: val2 # A variable inside a sub dynamic family
+ my_dyn_family_val2: # A dynamic family
+ subdyn_val1: # A sub dynamic family
+ var: val1 # A variable inside a sub dynamic family
+ subdyn_val2: # A sub dynamic family
+ var: val2 # A variable inside a sub dynamic family
+ var2: # A variable
+ - val1
+ - val2
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.md b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.md
new file mode 100644
index 000000000..f0ffa85c5
--- /dev/null
+++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.md
@@ -0,0 +1,22 @@
+# Example with all variables modifiable
+
+```yaml
+---
+rougail: # Rougail
+ var: # A suffix variable
+ - val1
+ - val2
+ my_dyn_family_val1: # A dynamic family
+ subdyn_val1: # A sub dynamic family
+ var: val1 # A variable inside a sub dynamic family
+ subdyn_val2: # A sub dynamic family
+ var: val2 # A variable inside a sub dynamic family
+ my_dyn_family_val2: # A dynamic family
+ subdyn_val1: # A sub dynamic family
+ var: val1 # A variable inside a sub dynamic family
+ subdyn_val2: # A sub dynamic family
+ var: val2 # A variable inside a sub dynamic family
+ var2: # A variable
+ - val1
+ - val2
+```
diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.sh
new file mode 100644
index 000000000..ef7da8e61
--- /dev/null
+++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix.sh
@@ -0,0 +1,21 @@
+[1;4;96mExample with all variables modifiable[0m
+
+[38;2;248;248;242;48;2;39;40;34m---[0m[48;2;39;40;34m [0m
+[38;2;255;70;137;48;2;39;40;34mrougail[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# Rougail[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A suffix variable[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mmy_dyn_family_val1[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A dynamic family[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34msubdyn_val1[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A sub dynamic family[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable inside a sub dynamic family[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34msubdyn_val2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A sub dynamic family[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable inside a sub dynamic family[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mmy_dyn_family_val2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A dynamic family[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34msubdyn_val1[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A sub dynamic family[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable inside a sub dynamic family[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34msubdyn_val2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A sub dynamic family[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable inside a sub dynamic family[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[38;2;255;70;137;48;2;39;40;34mvar2[0m[38;2;248;248;242;48;2;39;40;34m:[0m[38;2;248;248;242;48;2;39;40;34m [0m[38;2;149;144;119;48;2;39;40;34m# A variable[0m[48;2;39;40;34m [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval1 [0m
+[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34m-[0m[38;2;248;248;242;48;2;39;40;34m [0m[48;2;39;40;34mval2 [0m
+
diff --git a/tests/results/test_namespace_examples_comment/warnings_60_5family_dynamic_unknown_suffix b/tests/results/test_namespace_examples_comment/warnings_60_5family_dynamic_unknown_suffix
new file mode 100644
index 000000000..ea487b0b5
--- /dev/null
+++ b/tests/results/test_namespace_examples_comment/warnings_60_5family_dynamic_unknown_suffix
@@ -0,0 +1 @@
+["\"disabled\" is a calculation for rougail.{{ identifier }}_dyn.var4 but has no description in \"../../rougail-tests/structures/60_5family_dynamic_unknown_suffix/rougail/00-base.yml\""]
\ No newline at end of file
diff --git a/tests/results/test_namespace_examples_comment/warnings_60_5family_dynamic_variable_outside_sub_suffix b/tests/results/test_namespace_examples_comment/warnings_60_5family_dynamic_variable_outside_sub_suffix
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace_examples_comment/warnings_60_5family_dynamic_variable_outside_sub_suffix
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_multi.adoc
index 7a0f20289..213c9d323 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.adoc
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.adoc
@@ -10,6 +10,6 @@
* maybe
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A second variable. +
-**Default**: the value of "a first variable".
+**Default**: the value of "a first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.adoc
index 4334a4f14..5bc23b3e7 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.adoc
@@ -12,6 +12,6 @@
* maybe
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A second variable. +
-**Default**: the value of "a first variable".
+**Default**: the value of "a first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.gitlab.md
index fc0de8f7e..2d4d09a1c 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#rougail.var1)". |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.html b/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.html
index 482370b6b..35d10c66e 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.html
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A first variable. Default: |
-rougail.var2 string multiple standard mandatory unique | A second variable. Default: the value of "a first variable". |
+maybe
+rougail.var2 string multiple standard mandatory unique | A second variable. Default: the value of "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.md b/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.md
index ff460a76c..26e066b09 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.md
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#rougail.var1)". |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.sh b/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.sh
index 6068f5fcd..257c1857d 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.sh
@@ -11,6 +11,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of "a first β
-β [1;7mmandatory [0m [1;7m unique [0m β variable". β
+β [1;7mmandatory [0m [1;7m unique [0m β variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_without_family/00_2default_calculated_multi.gitlab.md
index c1922ac2c..a06b45673 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#rougail.var1)". |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.html b/tests/results/test_namespace_without_family/00_2default_calculated_multi.html
index 580fc8861..3e914e0b2 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.html
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A first variable. Default: |
-rougail.var2 string multiple standard mandatory unique | A second variable. Default: the value of "a first variable". |
+maybe
+rougail.var2 string multiple standard mandatory unique | A second variable. Default: the value of "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.json b/tests/results/test_namespace_without_family/00_2default_calculated_multi.json
index 415cef3e2..200a0bf41 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.json
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.json
@@ -66,7 +66,7 @@
"default": {
"name": "Default",
"values": {
- "description": "the value of \"{0}\".",
+ "description": "the value of {0}.",
"variables": [
{
"path": "rougail.var1",
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.md b/tests/results/test_namespace_without_family/00_2default_calculated_multi.md
index c1922ac2c..a06b45673 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.md
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#rougail.var1)". |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.sh b/tests/results/test_namespace_without_family/00_2default_calculated_multi.sh
index 740b1218d..8950da1a2 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.sh
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.sh
@@ -9,5 +9,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of "a first β
-β [1;7mmandatory [0m [1;7m unique [0m β variable". β
+β [1;7mmandatory [0m [1;7m unique [0m β variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_variable.adoc
index 60d8ceb25..02f4668a2 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable.adoc
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable.adoc
@@ -10,6 +10,6 @@
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `multiple` `standard` `mandatory` `unique` | A second variable. +
**Validator**: type domainname +
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.adoc
index b7212bd7d..0084b055a 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.adoc
@@ -12,6 +12,6 @@
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `multiple` `standard` `mandatory` `unique` | A second variable. +
**Validator**: type domainname +
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.gitlab.md
index 138250373..8aefeacce 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.html b/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.html
index c2f9eaf88..03fd70052 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.html
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 domainname multiple basic mandatory unique | A first variable. Validators: - type domainname
-- the domain name can be an IP
|
-rougail.var2 domainname multiple standard mandatory unique | A second variable. Validator: type domainname Default: the value of the variable "a first variable" |
+the domain name can be an IP
+rougail.var2 domainname multiple standard mandatory unique | A second variable. Validator: type domainname Default: the value of the variable "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.md b/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.md
index 07174c0db..d22c18d2c 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.md
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.sh b/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.sh
index cd4c9a553..96478d828 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.sh
@@ -11,6 +11,6 @@
β [1mrougail.var2[0m β A second variable. β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mValidator[0m: type domainname β
β [1;7mmandatory [0m [1;7m unique [0m β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_without_family/00_2default_calculated_variable.gitlab.md
index 93197a879..5e939741b 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable.html b/tests/results/test_namespace_without_family/00_2default_calculated_variable.html
index 2b15081fc..2405abc84 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable.html
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 domainname multiple basic mandatory unique | A first variable. Validators: - type domainname
-- the domain name can be an IP
|
-rougail.var2 domainname multiple standard mandatory unique | A second variable. Validator: type domainname Default: the value of the variable "a first variable" |
+the domain name can be an IP
+rougail.var2 domainname multiple standard mandatory unique | A second variable. Validator: type domainname Default: the value of the variable "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable.json b/tests/results/test_namespace_without_family/00_2default_calculated_variable.json
index b6c9d3eef..65953f63e 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable.json
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable.json
@@ -65,7 +65,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable.md b/tests/results/test_namespace_without_family/00_2default_calculated_variable.md
index 93197a879..5e939741b 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable.md
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable.sh b/tests/results/test_namespace_without_family/00_2default_calculated_variable.sh
index 47d9a5a7e..34957cfa2 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable.sh
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable.sh
@@ -9,5 +9,5 @@
β [1mrougail.var2[0m β A second variable. β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mValidator[0m: type domainname β
β [1;7mmandatory [0m [1;7m unique [0m β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.adoc
index 7a494eb6c..cd88bfa5c 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.adoc
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.adoc
@@ -14,6 +14,6 @@
* type domainname
* the domain name can be an IP
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.adoc
index e7c301398..60de96583 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.adoc
@@ -16,6 +16,6 @@
* type domainname
* the domain name can be an IP
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.gitlab.md
index e847b812a..9cc83a707 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.html b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.html
index 410452d69..4696db869 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.html
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.html
@@ -8,7 +8,7 @@
rougail.var1 domainname multiple basic mandatory unique | A first variable. Validators: - type domainname
- the domain name can be an IP
|
rougail.var2 domainname multiple standard mandatory unique | A second variable. Validators: - type domainname
-- the domain name can be an IP
Default: the value of the variable "a first variable" |
+the domain name can be an IP
Default: the value of the variable "a first variable" (rougail.var1).
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.md b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.md
index bfefe7b5a..8f8e2b095 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.md
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.sh b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.sh
index a23581b4d..5cc35bf76 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.sh
@@ -13,6 +13,6 @@
β [1;7mmandatory [0m [1;7m unique [0m β β’ type domainname β
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.gitlab.md
index ed0dca1d9..bec9d345f 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.html b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.html
index c3aa3d6a5..7a5a15027 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.html
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.html
@@ -6,7 +6,7 @@
rougail.var1 domainname multiple basic mandatory unique | A first variable. Validators: - type domainname
- the domain name can be an IP
|
rougail.var2 domainname multiple standard mandatory unique | A second variable. Validators: - type domainname
-- the domain name can be an IP
Default: the value of the variable "a first variable" |
+the domain name can be an IP
Default: the value of the variable "a first variable" (rougail.var1).
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.json b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.json
index 5e31ae7d4..b32a58ea8 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.json
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.json
@@ -65,7 +65,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.md b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.md
index ed0dca1d9..bec9d345f 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.md
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **rougail.var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.sh
index f0d47bf49..dfae7d02e 100644
--- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.sh
+++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.sh
@@ -11,5 +11,5 @@
β [1;7mmandatory [0m [1;7m unique [0m β β’ type domainname β
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_6choice_link.adoc b/tests/results/test_namespace_without_family/00_6choice_link.adoc
index 8264f0fee..e598e80aa 100644
--- a/tests/results/test_namespace_without_family/00_6choice_link.adoc
+++ b/tests/results/test_namespace_without_family/00_6choice_link.adoc
@@ -16,6 +16,6 @@
* b
* c
-**Default**: the value of the variable "the first variable"
+**Default**: the value of the variable "the first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace_without_family/00_6choice_link.changelog.adoc b/tests/results/test_namespace_without_family/00_6choice_link.changelog.adoc
index 155316b7f..de6c7b64d 100644
--- a/tests/results/test_namespace_without_family/00_6choice_link.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_6choice_link.changelog.adoc
@@ -18,6 +18,6 @@
* b
* c
-**Default**: the value of the variable "the first variable"
+**Default**: the value of the variable "the first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace_without_family/00_6choice_link.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_6choice_link.changelog.gitlab.md
index f7708eabb..e8de7697a 100644
--- a/tests/results/test_namespace_without_family/00_6choice_link.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_6choice_link.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 "[the first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[the first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_link.changelog.html b/tests/results/test_namespace_without_family/00_6choice_link.changelog.html
index 0f2f4bb1b..166f735d6 100644
--- a/tests/results/test_namespace_without_family/00_6choice_link.changelog.html
+++ b/tests/results/test_namespace_without_family/00_6choice_link.changelog.html
@@ -10,7 +10,7 @@
c
rougail.var2 choice standard mandatory | The second variable. Choices: Default: the value of the variable "the first variable" |
+c
Default: the value of the variable "the first variable" (rougail.var1).
diff --git a/tests/results/test_namespace_without_family/00_6choice_link.changelog.md b/tests/results/test_namespace_without_family/00_6choice_link.changelog.md
index e49088ca4..93a4297a5 100644
--- a/tests/results/test_namespace_without_family/00_6choice_link.changelog.md
+++ b/tests/results/test_namespace_without_family/00_6choice_link.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 "[the first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[the first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_link.changelog.sh b/tests/results/test_namespace_without_family/00_6choice_link.changelog.sh
index d0e88d79f..bea38d520 100644
--- a/tests/results/test_namespace_without_family/00_6choice_link.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_6choice_link.changelog.sh
@@ -15,6 +15,6 @@
β β β’ b β
β β β’ c β
β β [1mDefault[0m: the value of the variable β
-β β "the first variable" β
+β β "the first variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_6choice_link.gitlab.md b/tests/results/test_namespace_without_family/00_6choice_link.gitlab.md
index f3e9cca04..80bdd2a36 100644
--- a/tests/results/test_namespace_without_family/00_6choice_link.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_6choice_link.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 "[the first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[the first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_link.html b/tests/results/test_namespace_without_family/00_6choice_link.html
index c96638c32..d42a84b8e 100644
--- a/tests/results/test_namespace_without_family/00_6choice_link.html
+++ b/tests/results/test_namespace_without_family/00_6choice_link.html
@@ -8,7 +8,7 @@
c
rougail.var2 choice standard mandatory | The second variable. Choices: Default: the value of the variable "the first variable" |
+c
Default: the value of the variable "the first variable" (rougail.var1).
diff --git a/tests/results/test_namespace_without_family/00_6choice_link.json b/tests/results/test_namespace_without_family/00_6choice_link.json
index 4ce556f8e..440cfae56 100644
--- a/tests/results/test_namespace_without_family/00_6choice_link.json
+++ b/tests/results/test_namespace_without_family/00_6choice_link.json
@@ -53,7 +53,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/00_6choice_link.md b/tests/results/test_namespace_without_family/00_6choice_link.md
index f3e9cca04..80bdd2a36 100644
--- a/tests/results/test_namespace_without_family/00_6choice_link.md
+++ b/tests/results/test_namespace_without_family/00_6choice_link.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 "[the first variable](#rougail.var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[the first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_link.sh b/tests/results/test_namespace_without_family/00_6choice_link.sh
index ee75381f0..890bcaf6d 100644
--- a/tests/results/test_namespace_without_family/00_6choice_link.sh
+++ b/tests/results/test_namespace_without_family/00_6choice_link.sh
@@ -13,5 +13,5 @@
β β β’ b β
β β β’ c β
β β [1mDefault[0m: the value of the variable β
-β β "the first variable" β
+β β "the first variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.adoc b/tests/results/test_namespace_without_family/00_6choice_variable.adoc
index d5d83d143..41e66ccbe 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable.adoc
+++ b/tests/results/test_namespace_without_family/00_6choice_variable.adoc
@@ -10,7 +10,7 @@
* c
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
**Default**: a
|====
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.changelog.adoc b/tests/results/test_namespace_without_family/00_6choice_variable.changelog.adoc
index 51267eacc..1e8597e77 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_6choice_variable.changelog.adoc
@@ -12,7 +12,7 @@
* c
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
**Default**: a
|====
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_6choice_variable.changelog.gitlab.md
index b92865698..d718282f5 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_6choice_variable.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: a |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.changelog.html b/tests/results/test_namespace_without_family/00_6choice_variable.changelog.html
index 66e8d198d..158b1d51c 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable.changelog.html
+++ b/tests/results/test_namespace_without_family/00_6choice_variable.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A second variable. Default: |
-rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
+c
+rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: a |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.changelog.md b/tests/results/test_namespace_without_family/00_6choice_variable.changelog.md
index ce6728722..f52baa08e 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable.changelog.md
+++ b/tests/results/test_namespace_without_family/00_6choice_variable.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: a |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.changelog.sh b/tests/results/test_namespace_without_family/00_6choice_variable.changelog.sh
index 8c97dc89e..1fd4d5230 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_6choice_variable.changelog.sh
@@ -11,7 +11,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.gitlab.md b/tests/results/test_namespace_without_family/00_6choice_variable.gitlab.md
index 6a6a29c74..0fa386aba 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_6choice_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: a |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.html b/tests/results/test_namespace_without_family/00_6choice_variable.html
index dc5852a6c..9b2c152c7 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable.html
+++ b/tests/results/test_namespace_without_family/00_6choice_variable.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A second variable. Default: |
-rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
+c
+rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: a |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.json b/tests/results/test_namespace_without_family/00_6choice_variable.json
index f1ae76582..004741d5f 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable.json
+++ b/tests/results/test_namespace_without_family/00_6choice_variable.json
@@ -65,7 +65,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.md b/tests/results/test_namespace_without_family/00_6choice_variable.md
index 6a6a29c74..0fa386aba 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable.md
+++ b/tests/results/test_namespace_without_family/00_6choice_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: a |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.sh b/tests/results/test_namespace_without_family/00_6choice_variable.sh
index da6405b85..b0159f056 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable.sh
+++ b/tests/results/test_namespace_without_family/00_6choice_variable.sh
@@ -9,6 +9,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.adoc b/tests/results/test_namespace_without_family/00_6choice_variable_link.adoc
index a8c8d39dd..21ffa0c6e 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link.adoc
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.adoc
@@ -10,11 +10,11 @@
* c
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
**Default**: a
| **rougail.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
-**Choices**: the value of the variable "a second variable" +
-**Default**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
+**Default**: the value of the variable "a first variable" (rougail.var2).
|====
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.adoc b/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.adoc
index 298538b93..03b105c1e 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.adoc
@@ -12,11 +12,11 @@
* c
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
**Default**: a
| **rougail.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
-**Choices**: the value of the variable "a second variable" +
-**Default**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
+**Default**: the value of the variable "a first variable" (rougail.var2).
|====
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.gitlab.md
index c7cdf2555..25cd3534f 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second 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 "[a second variable](#rougail.var1)"
**Default**: the value of the variable "[a first variable](#rougail.var2)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: the value of the variable "[a first variable](#rougail.var2)" (rougail.var2). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.html b/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.html
index 1aa59fddb..774920932 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.html
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.html
@@ -2,14 +2,14 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A second variable. Default: |
-rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
-rougail.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" Default: the value of the variable "a first variable" |
+c
+rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: a |
+rougail.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: the value of the variable "a first variable" (rougail.var2). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.md b/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.md
index afd754472..6adb36417 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.md
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second 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 "[a second variable](#rougail.var1)"
**Default**: the value of the variable "[a first variable](#rougail.var2)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: the value of the variable "[a first variable](#rougail.var2)" (rougail.var2). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.sh b/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.sh
index 63314057e..1b6edbd73 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.sh
@@ -11,13 +11,13 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var3[0m β A third variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var2). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_without_family/00_6choice_variable_link.gitlab.md
index 3efd4f2e5..3f4e07437 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second 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 "[a second variable](#rougail.var1)"
**Default**: the value of the variable "[a first variable](#rougail.var2)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: the value of the variable "[a first variable](#rougail.var2)" (rougail.var2). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.html b/tests/results/test_namespace_without_family/00_6choice_variable_link.html
index c9f2d116f..13c879701 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link.html
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.html
@@ -1,13 +1,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A second variable. Default: |
-rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
-rougail.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" Default: the value of the variable "a first variable" |
+c
+rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: a |
+rougail.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: the value of the variable "a first variable" (rougail.var2). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.json b/tests/results/test_namespace_without_family/00_6choice_variable_link.json
index 11549210f..a13fa3851 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link.json
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.json
@@ -65,7 +65,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -91,7 +91,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var2",
"type": "variable"
@@ -103,7 +103,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.md b/tests/results/test_namespace_without_family/00_6choice_variable_link.md
index 3efd4f2e5..3f4e07437 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link.md
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second 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 "[a second variable](#rougail.var1)"
**Default**: the value of the variable "[a first variable](#rougail.var2)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: the value of the variable "[a first variable](#rougail.var2)" (rougail.var2). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.sh b/tests/results/test_namespace_without_family/00_6choice_variable_link.sh
index 88be6c941..92ba9efb1 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link.sh
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.sh
@@ -9,12 +9,12 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var3[0m β A third variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var2). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.adoc b/tests/results/test_namespace_without_family/00_6choice_variable_link2.adoc
index 3ad0f38a0..f62f972a0 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.adoc
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.adoc
@@ -10,11 +10,11 @@
* c
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
**Default**: a
| **rougail.family.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
-**Choices**: the value of the variable "a second variable" +
-**Default**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
+**Default**: the value of the variable "a first variable" (rougail.var2).
|====
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.adoc b/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.adoc
index faa81f3d1..526844c8d 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.adoc
@@ -12,11 +12,11 @@
* c
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
**Default**: a
| **rougail.family.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
-**Choices**: the value of the variable "a second variable" +
-**Default**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a second variable" (rougail.var1). +
+**Default**: the value of the variable "a first variable" (rougail.var2).
|====
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.gitlab.md
index 94ae5a78c..4fb72da9d 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)"
**Default**: a |
-| **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 "[a second variable](#rougail.var1)"
**Default**: the value of the variable "[a first variable](#rougail.var2)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: a |
+| **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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: the value of the variable "[a first variable](#rougail.var2)" (rougail.var2). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.html b/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.html
index 3ed32de74..e73fe4f07 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.html
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.html
@@ -2,14 +2,14 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A second variable. Default: |
-rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
-rougail.family.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" Default: the value of the variable "a first variable" |
+c
+rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: a |
+rougail.family.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: the value of the variable "a first variable" (rougail.var2). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.md b/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.md
index 86983bf91..8874649a0 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.md
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)"
**Default**: a |
-| **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 "[a second variable](#rougail.var1)"
**Default**: the value of the variable "[a first variable](#rougail.var2)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: a |
+| **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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: the value of the variable "[a first variable](#rougail.var2)" (rougail.var2). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.sh b/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.sh
index 296d8417b..e9d127cd5 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.sh
@@ -11,13 +11,13 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.family.var3[0m β A third variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var2). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_without_family/00_6choice_variable_link2.gitlab.md
index c9f84cc71..02e0e507c 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)"
**Default**: a |
-| **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 "[a second variable](#rougail.var1)"
**Default**: the value of the variable "[a first variable](#rougail.var2)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: a |
+| **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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: the value of the variable "[a first variable](#rougail.var2)" (rougail.var2). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.html b/tests/results/test_namespace_without_family/00_6choice_variable_link2.html
index d21c3a601..5d32d5ff5 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.html
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.html
@@ -1,13 +1,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A second variable. Default: |
-rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
-rougail.family.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" Default: the value of the variable "a first variable" |
+c
+rougail.var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: a |
+rougail.family.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" (rougail.var1). Default: the value of the variable "a first variable" (rougail.var2). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.json b/tests/results/test_namespace_without_family/00_6choice_variable_link2.json
index 0bd529529..b91726056 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.json
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.json
@@ -65,7 +65,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -100,7 +100,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var2",
"type": "variable"
@@ -112,7 +112,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.md b/tests/results/test_namespace_without_family/00_6choice_variable_link2.md
index c9f84cc71..02e0e507c 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.md
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)"
**Default**: a |
-| **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 "[a second variable](#rougail.var1)"
**Default**: the value of the variable "[a first variable](#rougail.var2)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: a |
+| **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 "[a second variable](#rougail.var1)" (rougail.var1).
**Default**: the value of the variable "[a first variable](#rougail.var2)" (rougail.var2). |
diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.sh b/tests/results/test_namespace_without_family/00_6choice_variable_link2.sh
index 530fc47cf..fbbd09012 100644
--- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.sh
+++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.sh
@@ -9,12 +9,12 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.family.var3[0m β A third variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (rougail.var1). β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var2). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.adoc b/tests/results/test_namespace_without_family/00_6regexp_link.adoc
index ebe15838f..c5074c6fe 100644
--- a/tests/results/test_namespace_without_family/00_6regexp_link.adoc
+++ b/tests/results/test_namespace_without_family/00_6regexp_link.adoc
@@ -12,7 +12,7 @@
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. +
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
-**Default**: the value of the variable "a first variable" +
+**Default**: the value of the variable "a first variable" (rougail.var1). +
**Examples**:
* '#b2b1b1'
diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.changelog.adoc b/tests/results/test_namespace_without_family/00_6regexp_link.changelog.adoc
index 3c9849c33..8c32582e1 100644
--- a/tests/results/test_namespace_without_family/00_6regexp_link.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_6regexp_link.changelog.adoc
@@ -14,7 +14,7 @@
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. +
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
-**Default**: the value of the variable "a first variable" +
+**Default**: the value of the variable "a first variable" (rougail.var1). +
**Examples**:
* '#b2b1b1'
diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_6regexp_link.changelog.gitlab.md
index 0145af664..7aa269285 100644
--- a/tests/results/test_namespace_without_family/00_6regexp_link.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_6regexp_link.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 "[a first variable](#rougail.var1)"
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1).
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.changelog.html b/tests/results/test_namespace_without_family/00_6regexp_link.changelog.html
index b5b3807e7..473c01e50 100644
--- a/tests/results/test_namespace_without_family/00_6regexp_link.changelog.html
+++ b/tests/results/test_namespace_without_family/00_6regexp_link.changelog.html
@@ -7,7 +7,7 @@
rougail.var1 regexp standard mandatory | A first variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: #a1a1a1 Examples: |
-rougail.var2 regexp standard mandatory | A second variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: the value of the variable "a first variable" Examples: - '#b2b1b1'
+rougail.var2 regexp standard mandatory | A second variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: the value of the variable "a first variable" (rougail.var1). Examples: |
|
diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.changelog.md b/tests/results/test_namespace_without_family/00_6regexp_link.changelog.md
index a1e913352..367a06d19 100644
--- a/tests/results/test_namespace_without_family/00_6regexp_link.changelog.md
+++ b/tests/results/test_namespace_without_family/00_6regexp_link.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 "[a first variable](#rougail.var1)"
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1).
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.changelog.sh b/tests/results/test_namespace_without_family/00_6regexp_link.changelog.sh
index 59c96c9bc..1baba0765 100644
--- a/tests/results/test_namespace_without_family/00_6regexp_link.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_6regexp_link.changelog.sh
@@ -17,7 +17,7 @@
β β expressions β
β β "^#(?:[0-9a-f]{3}){1,2}$" β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var1). β
β β [1mExamples[0m: β
β β β’ #b2b1b1 β
β β β’ #b3b2b2 β
diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.gitlab.md b/tests/results/test_namespace_without_family/00_6regexp_link.gitlab.md
index 058d5e74b..e9af38886 100644
--- a/tests/results/test_namespace_without_family/00_6regexp_link.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_6regexp_link.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 "[a first variable](#rougail.var1)"
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1).
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.html b/tests/results/test_namespace_without_family/00_6regexp_link.html
index c229cc912..fb127ea9c 100644
--- a/tests/results/test_namespace_without_family/00_6regexp_link.html
+++ b/tests/results/test_namespace_without_family/00_6regexp_link.html
@@ -5,7 +5,7 @@
rougail.var1 regexp standard mandatory | A first variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: #a1a1a1 Examples: |
-rougail.var2 regexp standard mandatory | A second variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: the value of the variable "a first variable" Examples: - '#b2b1b1'
+rougail.var2 regexp standard mandatory | A second variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: the value of the variable "a first variable" (rougail.var1). Examples: |
|
diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.json b/tests/results/test_namespace_without_family/00_6regexp_link.json
index ef4783eae..327f4a832 100644
--- a/tests/results/test_namespace_without_family/00_6regexp_link.json
+++ b/tests/results/test_namespace_without_family/00_6regexp_link.json
@@ -60,7 +60,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.md b/tests/results/test_namespace_without_family/00_6regexp_link.md
index 058d5e74b..e9af38886 100644
--- a/tests/results/test_namespace_without_family/00_6regexp_link.md
+++ b/tests/results/test_namespace_without_family/00_6regexp_link.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 "[a first variable](#rougail.var1)"
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1).
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.sh b/tests/results/test_namespace_without_family/00_6regexp_link.sh
index 1d365607e..4468021a7 100644
--- a/tests/results/test_namespace_without_family/00_6regexp_link.sh
+++ b/tests/results/test_namespace_without_family/00_6regexp_link.sh
@@ -15,7 +15,7 @@
β β expressions β
β β "^#(?:[0-9a-f]{3}){1,2}$" β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (rougail.var1). β
β β [1mExamples[0m: β
β β β’ #b2b1b1 β
β β β’ #b3b2b2 β
diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.adoc b/tests/results/test_namespace_without_family/00_9choice_variables.adoc
index 9efdd1347..59ae82ee6 100644
--- a/tests/results/test_namespace_without_family/00_9choice_variables.adoc
+++ b/tests/results/test_namespace_without_family/00_9choice_variables.adoc
@@ -11,8 +11,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
**Choices**:
-* the value of the variable "the first source variable"
-* the value of the variable "the second source variable"
+* the value of the variable "the first source variable" (rougail.source_variable_1)
+* the value of the variable "the second source variable" (rougail.source_variable_2)
**Default**: val1
|====
diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.changelog.adoc b/tests/results/test_namespace_without_family/00_9choice_variables.changelog.adoc
index f0b249c7f..4e0cb928c 100644
--- a/tests/results/test_namespace_without_family/00_9choice_variables.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_9choice_variables.changelog.adoc
@@ -13,8 +13,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
**Choices**:
-* the value of the variable "the first source variable"
-* the value of the variable "the second source variable"
+* the value of the variable "the first source variable" (rougail.source_variable_1)
+* the value of the variable "the second source variable" (rougail.source_variable_2)
**Default**: val1
|====
diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_9choice_variables.changelog.gitlab.md
index 0c5f9c73e..94e7ec748 100644
--- a/tests/results/test_namespace_without_family/00_9choice_variables.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9choice_variables.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
-| **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 "[the first source variable](#rougail.source_variable_1)"
β’ the value of the variable "[the second source variable](#rougail.source_variable_2)"
**Default**: val1 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
+| **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 "[the first source variable](#rougail.source_variable_1)" (rougail.source_variable_1)
β’ the value of the variable "[the second source variable](#rougail.source_variable_2)" (rougail.source_variable_2)
**Default**: val1 |
diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.changelog.html b/tests/results/test_namespace_without_family/00_9choice_variables.changelog.html
index f67c430d6..069232eba 100644
--- a/tests/results/test_namespace_without_family/00_9choice_variables.changelog.html
+++ b/tests/results/test_namespace_without_family/00_9choice_variables.changelog.html
@@ -7,8 +7,8 @@
rougail.source_variable_1 string standard mandatory | The first source variable. Default: val1 |
rougail.source_variable_2 string standard mandatory | The second source variable. Default: val2 |
-rougail.my_variable choice standard mandatory | A variable. Choices: - the value of the variable "the first source variable"
-- the value of the variable "the second source variable"
Default: val1 |
+rougail.my_variable choice standard mandatory | A variable. Choices: - the value of the variable "the first source variable" (rougail.source_variable_1)
+- the value of the variable "the second source variable" (rougail.source_variable_2)
Default: val1 |
diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.changelog.md b/tests/results/test_namespace_without_family/00_9choice_variables.changelog.md
index 6a72c4c5a..0666a66fe 100644
--- a/tests/results/test_namespace_without_family/00_9choice_variables.changelog.md
+++ b/tests/results/test_namespace_without_family/00_9choice_variables.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
-| **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 "[the first source variable](#rougail.source_variable_1)"
β’ the value of the variable "[the second source variable](#rougail.source_variable_2)"
**Default**: val1 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
+| **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 "[the first source variable](#rougail.source_variable_1)" (rougail.source_variable_1)
β’ the value of the variable "[the second source variable](#rougail.source_variable_2)" (rougail.source_variable_2)
**Default**: val1 |
diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.changelog.sh b/tests/results/test_namespace_without_family/00_9choice_variables.changelog.sh
index be7e0af5f..693984263 100644
--- a/tests/results/test_namespace_without_family/00_9choice_variables.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_9choice_variables.changelog.sh
@@ -13,8 +13,10 @@
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
β β β’ the value of the variable "the β
β β first source variable" β
+β β (rougail.source_variable_1) β
β β β’ the value of the variable "the β
β β second source variable" β
+β β (rougail.source_variable_2) β
β β [1mDefault[0m: val1 β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.gitlab.md b/tests/results/test_namespace_without_family/00_9choice_variables.gitlab.md
index 8cc4f9986..dfb24e850 100644
--- a/tests/results/test_namespace_without_family/00_9choice_variables.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9choice_variables.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
-| **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 "[the first source variable](#rougail.source_variable_1)"
β’ the value of the variable "[the second source variable](#rougail.source_variable_2)"
**Default**: val1 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
+| **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 "[the first source variable](#rougail.source_variable_1)" (rougail.source_variable_1)
β’ the value of the variable "[the second source variable](#rougail.source_variable_2)" (rougail.source_variable_2)
**Default**: val1 |
diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.html b/tests/results/test_namespace_without_family/00_9choice_variables.html
index 7298f74ba..3831b03fd 100644
--- a/tests/results/test_namespace_without_family/00_9choice_variables.html
+++ b/tests/results/test_namespace_without_family/00_9choice_variables.html
@@ -5,8 +5,8 @@
rougail.source_variable_1 string standard mandatory | The first source variable. Default: val1 |
rougail.source_variable_2 string standard mandatory | The second source variable. Default: val2 |
-rougail.my_variable choice standard mandatory | A variable. Choices: - the value of the variable "the first source variable"
-- the value of the variable "the second source variable"
Default: val1 |
+rougail.my_variable choice standard mandatory | A variable. Choices: - the value of the variable "the first source variable" (rougail.source_variable_1)
+- the value of the variable "the second source variable" (rougail.source_variable_2)
Default: val1 |
diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.json b/tests/results/test_namespace_without_family/00_9choice_variables.json
index 73e39747b..1c5c4493c 100644
--- a/tests/results/test_namespace_without_family/00_9choice_variables.json
+++ b/tests/results/test_namespace_without_family/00_9choice_variables.json
@@ -75,7 +75,7 @@
"name": "Choices",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.source_variable_1",
"type": "variable"
@@ -83,7 +83,7 @@
"description": "the first source variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.source_variable_2",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.md b/tests/results/test_namespace_without_family/00_9choice_variables.md
index 8cc4f9986..dfb24e850 100644
--- a/tests/results/test_namespace_without_family/00_9choice_variables.md
+++ b/tests/results/test_namespace_without_family/00_9choice_variables.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
-| **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 "[the first source variable](#rougail.source_variable_1)"
β’ the value of the variable "[the second source variable](#rougail.source_variable_2)"
**Default**: val1 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
+| **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 "[the first source variable](#rougail.source_variable_1)" (rougail.source_variable_1)
β’ the value of the variable "[the second source variable](#rougail.source_variable_2)" (rougail.source_variable_2)
**Default**: val1 |
diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.sh b/tests/results/test_namespace_without_family/00_9choice_variables.sh
index f9fb3ad0b..501d68908 100644
--- a/tests/results/test_namespace_without_family/00_9choice_variables.sh
+++ b/tests/results/test_namespace_without_family/00_9choice_variables.sh
@@ -11,7 +11,9 @@
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
β β β’ the value of the variable "the β
β β first source variable" β
+β β (rougail.source_variable_1) β
β β β’ the value of the variable "the β
β β second source variable" β
+β β (rougail.source_variable_2) β
β β [1mDefault[0m: val1 β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.adoc
index 99540b82d..f211b41b9 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.adoc
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.adoc
@@ -6,6 +6,6 @@
| **rougail.my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (rougail.my_variable) if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.adoc
index 703827636..4109d489d 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.adoc
@@ -8,6 +8,6 @@
| **rougail.my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (rougail.my_variable) if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.gitlab.md
index 3e7cf43ed..65ade3150 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.html b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.html
index e68e53b00..4f94dbf69 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.html
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.my_variable string standard mandatory | Default: val1 |
-rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+rougail.my_variable string standard mandatory | Default: val1 |
+rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (rougail.my_variable) if it is defined
|
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.md b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.md
index 27dcc494a..aa6c03faa 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.sh b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.sh
index a8d756033..107cbec16 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.my_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (rougail.my_variable) β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.gitlab.md
index 6b6a92199..b6b4234ee 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.html b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.html
index b07758f53..75cdbd5dc 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.html
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.my_variable string standard mandatory | Default: val1 |
-rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+rougail.my_variable string standard mandatory | Default: val1 |
+rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (rougail.my_variable) if it is defined
|
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.json b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.json
index a07869da6..a7bb3b3c0 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.json
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.json
@@ -54,7 +54,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.my_variable",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.md b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.md
index 6b6a92199..b6b4234ee 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.sh
index 563068853..27134ea96 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.sh
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.my_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (rougail.my_variable) β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.adoc
index 99540b82d..f211b41b9 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.adoc
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.adoc
@@ -6,6 +6,6 @@
| **rougail.my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (rougail.my_variable) if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.adoc
index 703827636..4109d489d 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.adoc
@@ -8,6 +8,6 @@
| **rougail.my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (rougail.my_variable) if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.gitlab.md
index 3e7cf43ed..65ade3150 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.html b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.html
index e68e53b00..4f94dbf69 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.html
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.my_variable string standard mandatory | Default: val1 |
-rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+rougail.my_variable string standard mandatory | Default: val1 |
+rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (rougail.my_variable) if it is defined
|
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.md b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.md
index 27dcc494a..aa6c03faa 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.sh b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.sh
index a8d756033..107cbec16 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.my_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (rougail.my_variable) β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.gitlab.md
index 6b6a92199..b6b4234ee 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.html b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.html
index b07758f53..75cdbd5dc 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.html
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.my_variable string standard mandatory | Default: val1 |
-rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+rougail.my_variable string standard mandatory | Default: val1 |
+rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (rougail.my_variable) if it is defined
|
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.json b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.json
index a07869da6..a7bb3b3c0 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.json
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.json
@@ -54,7 +54,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.my_variable",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.md b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.md
index 6b6a92199..b6b4234ee 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.sh
index 563068853..27134ea96 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.sh
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.my_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (rougail.my_variable) β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.adoc
index 99540b82d..f211b41b9 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.adoc
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.adoc
@@ -6,6 +6,6 @@
| **rougail.my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (rougail.my_variable) if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.adoc
index 703827636..4109d489d 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.adoc
@@ -8,6 +8,6 @@
| **rougail.my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (rougail.my_variable) if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.gitlab.md
index 3e7cf43ed..65ade3150 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.html b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.html
index e68e53b00..4f94dbf69 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.html
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.my_variable string standard mandatory | Default: val1 |
-rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+rougail.my_variable string standard mandatory | Default: val1 |
+rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (rougail.my_variable) if it is defined
|
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.md b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.md
index 27dcc494a..aa6c03faa 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.sh b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.sh
index a8d756033..107cbec16 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.my_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (rougail.my_variable) β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.gitlab.md
index 6b6a92199..b6b4234ee 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.html b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.html
index b07758f53..75cdbd5dc 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.html
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.my_variable string standard mandatory | Default: val1 |
-rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+rougail.my_variable string standard mandatory | Default: val1 |
+rougail.my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (rougail.my_variable) if it is defined
|
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.json b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.json
index a07869da6..a7bb3b3c0 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.json
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.json
@@ -54,7 +54,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.my_variable",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.md b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.md
index 6b6a92199..b6b4234ee 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.sh b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.sh
index 563068853..27134ea96 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.sh
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.my_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (rougail.my_variable) β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.adoc
index 9a5742bc6..07373a363 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.adoc
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.adoc
@@ -1,12 +1,12 @@
[cols="1a,1a"]
|====
-| Variable | Description
+| Variable | Description
| **rougail.my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
* val1
-* val2
+* val2
| **rougail.my_calculated_variable** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "my_variable" if it is defined
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "my_variable" (rougail.my_variable) if it is defined.
|====
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.adoc
index 5f9fc7ac4..57e73e674 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.adoc
@@ -2,13 +2,13 @@
[cols="1a,1a"]
|====
-| Variable | Description
+| Variable | Description
| **rougail.my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
* val1
-* val2
+* val2
| **rougail.my_calculated_variable** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "my_variable" if it is defined
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "my_variable" (rougail.my_variable) if it is defined.
|====
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.gitlab.md
index 70364013e..bb92677d2 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined. |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.html b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.html
index 71b496551..465c7f966 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.html
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.my_variable string multiple standard mandatory unique | Default: |
-rougail.my_calculated_variable string multiple standard mandatory unique | Default: the value of the variable "my_variable" if it is defined |
+val2
+rougail.my_calculated_variable string multiple standard mandatory unique | Default: the value of the variable "my_variable" (rougail.my_variable) if it is defined. |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.md b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.md
index 64d4d6f02..d4422376c 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined. |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.sh b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.sh
index 502613ab6..90bedc3d8 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.sh
@@ -8,7 +8,7 @@
β [1;7mmandatory [0m [1;7m unique [0m β β’ val2 β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.my_calculated_variable[0m β [1mDefault[0m: the value of the variable β
-β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "my_variable" if it is defined β
-β [1;7mmandatory [0m [1;7m unique [0m β β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "my_variable" (rougail.my_variable) β
+β [1;7mmandatory [0m [1;7m unique [0m β if it is defined. β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.gitlab.md
index 4cee489d9..8f9adcdd1 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined. |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.html b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.html
index 53be41676..18f4c0012 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.html
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
rougail.my_variable string multiple standard mandatory unique | Default: |
-rougail.my_calculated_variable string multiple standard mandatory unique | Default: the value of the variable "my_variable" if it is defined |
+val2
+rougail.my_calculated_variable string multiple standard mandatory unique | Default: the value of the variable "my_variable" (rougail.my_variable) if it is defined. |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.json b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.json
index f8a7ecbd1..badcaf726 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.json
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.json
@@ -63,7 +63,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined.",
"path": {
"path": "rougail.my_variable",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.md b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.md
index 4cee489d9..8f9adcdd1 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.md
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
-| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
-| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#rougail.my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **rougail.my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
+| **rougail.my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#rougail.my_variable)" (rougail.my_variable) if it is defined. |
diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.sh
index 59d29464a..bb3ebf476 100644
--- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.sh
+++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.sh
@@ -6,6 +6,6 @@
β [1;7mmandatory [0m [1;7m unique [0m β β’ val2 β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.my_calculated_variable[0m β [1mDefault[0m: the value of the variable β
-β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "my_variable" if it is defined β
-β [1;7mmandatory [0m [1;7m unique [0m β β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "my_variable" (rougail.my_variable) β
+β [1;7mmandatory [0m [1;7m unique [0m β if it is defined. β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable.adoc b/tests/results/test_namespace_without_family/00_9default_information_other_variable.adoc
index 92a1ac417..898268e2d 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable.adoc
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable.adoc
@@ -5,6 +5,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "rougail.var1".
+**Default**: the value of the information "test_information" of the variable "a first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.adoc
index 743e6e300..daf5f2d6e 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.adoc
@@ -7,6 +7,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "rougail.var1".
+**Default**: the value of the information "test_information" of the variable "a first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.gitlab.md
index 2517e3521..b7f5d0309 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.html b/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.html
index 031a33a6a..518080600 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.html
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string basic mandatory | A first variable. |
-rougail.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "rougail.var1". |
+rougail.var1 string basic mandatory | A first variable. |
+rougail.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.md b/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.md
index 163fdf5cc..f3cc2c373 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.md
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.sh b/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.sh
index 735d8c172..7d37b5461 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.sh
@@ -9,6 +9,7 @@
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "rougail.var1". β
+β β the variable "a first variable" β
+β β (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_without_family/00_9default_information_other_variable.gitlab.md
index da64e4ef0..91fb74afa 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable.html b/tests/results/test_namespace_without_family/00_9default_information_other_variable.html
index 1ecad532a..d1ed75d98 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable.html
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string basic mandatory | A first variable. |
-rougail.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "rougail.var1". |
+rougail.var1 string basic mandatory | A first variable. |
+rougail.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable.json b/tests/results/test_namespace_without_family/00_9default_information_other_variable.json
index 70650e66a..12432ffc2 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable.json
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable.json
@@ -44,7 +44,15 @@
"type": "variable",
"default": {
"name": "Default",
- "values": "the value of the information \"test_information\" of the variable \"rougail.var1\"."
+ "values": {
+ "message": "the value of the information \"test_information\" of the variable {0}.",
+ "path": {
+ "type": "information",
+ "information": "test_information",
+ "path": "rougail.var1"
+ },
+ "description": "a first variable"
+ }
},
"variable_type": "string"
}
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable.md b/tests/results/test_namespace_without_family/00_9default_information_other_variable.md
index da64e4ef0..91fb74afa 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable.md
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable.sh b/tests/results/test_namespace_without_family/00_9default_information_other_variable.sh
index 0cf5eec94..6b9422f29 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable.sh
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable.sh
@@ -7,5 +7,6 @@
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "rougail.var1". β
+β β the variable "a first variable" β
+β β (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.adoc b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.adoc
index 92a1ac417..898268e2d 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.adoc
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.adoc
@@ -5,6 +5,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "rougail.var1".
+**Default**: the value of the information "test_information" of the variable "a first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.adoc
index 743e6e300..daf5f2d6e 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.adoc
@@ -7,6 +7,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "rougail.var1".
+**Default**: the value of the information "test_information" of the variable "a first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.gitlab.md
index 2517e3521..b7f5d0309 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.html b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.html
index 031a33a6a..518080600 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.html
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string basic mandatory | A first variable. |
-rougail.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "rougail.var1". |
+rougail.var1 string basic mandatory | A first variable. |
+rougail.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.md b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.md
index 163fdf5cc..f3cc2c373 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.md
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.sh b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.sh
index 735d8c172..7d37b5461 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.sh
@@ -9,6 +9,7 @@
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "rougail.var1". β
+β β the variable "a first variable" β
+β β (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.gitlab.md
index da64e4ef0..91fb74afa 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.html b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.html
index 1ecad532a..d1ed75d98 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.html
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string basic mandatory | A first variable. |
-rougail.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "rougail.var1". |
+rougail.var1 string basic mandatory | A first variable. |
+rougail.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.json b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.json
index 70650e66a..12432ffc2 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.json
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.json
@@ -44,7 +44,15 @@
"type": "variable",
"default": {
"name": "Default",
- "values": "the value of the information \"test_information\" of the variable \"rougail.var1\"."
+ "values": {
+ "message": "the value of the information \"test_information\" of the variable {0}.",
+ "path": {
+ "type": "information",
+ "information": "test_information",
+ "path": "rougail.var1"
+ },
+ "description": "a first variable"
+ }
},
"variable_type": "string"
}
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.md b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.md
index da64e4ef0..91fb74afa 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.md
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.sh b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.sh
index 0cf5eec94..6b9422f29 100644
--- a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.sh
+++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.sh
@@ -7,5 +7,6 @@
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "rougail.var1". β
+β β the variable "a first variable" β
+β β (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/00_9extra_calculation.adoc b/tests/results/test_namespace_without_family/00_9extra_calculation.adoc
index 4cdc8f154..771fb702e 100644
--- a/tests/results/test_namespace_without_family/00_9extra_calculation.adoc
+++ b/tests/results/test_namespace_without_family/00_9extra_calculation.adoc
@@ -6,7 +6,7 @@
**Default**: value
| **extra.variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (rougail.variable).
| **extra.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
**Default**: copy the value of rougail.variable.
diff --git a/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.adoc b/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.adoc
index e29ab112f..e7279bac3 100644
--- a/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.adoc
@@ -8,7 +8,7 @@
**Default**: value
| **extra.variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (rougail.variable).
| **extra.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
**Default**: copy the value of rougail.variable.
diff --git a/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.gitlab.md
index 254a57aff..aa064158e 100644
--- a/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: the value of the variable "[a variable](#rougail.variable)" |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: copy the value of rougail.variable. |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: copy the value of rougail.variable. |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: the value of the variable "[a variable](#rougail.variable)" (rougail.variable). |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: copy the value of rougail.variable. |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: copy the value of rougail.variable. |
diff --git a/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.html b/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.html
index 7dbd66a69..e60ca5fbc 100644
--- a/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.html
+++ b/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
-rougail.variable string standard mandatory | A variable. Default: value |
-extra.variable1 string standard mandatory | A first variable. Default: the value of the variable "a variable" |
-extra.variable2 string standard mandatory | A second variable. Default: copy the value of rougail.variable. |
-extra.variable3 string standard mandatory | A third variable. Default: copy the value of rougail.variable. |
+rougail.variable string standard mandatory | A variable. Default: value |
+extra.variable1 string standard mandatory | A first variable. Default: the value of the variable "a variable" (rougail.variable). |
+extra.variable2 string standard mandatory | A second variable. Default: copy the value of rougail.variable. |
+extra.variable3 string standard mandatory | A third variable. Default: copy the value of rougail.variable. |
diff --git a/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.md b/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.md
index e6dadd275..dc1ced0b1 100644
--- a/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.md
+++ b/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: the value of the variable "[a variable](#rougail.variable)" |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: copy the value of rougail.variable. |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: copy the value of rougail.variable. |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: the value of the variable "[a variable](#rougail.variable)" (rougail.variable). |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: copy the value of rougail.variable. |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: copy the value of rougail.variable. |
diff --git a/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.sh b/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.sh
index 65d4a7e5e..c71a0bd67 100644
--- a/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.sh
@@ -8,7 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mextra.variable1[0m β A first variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (rougail.variable). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mextra.variable2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: copy the value of β
diff --git a/tests/results/test_namespace_without_family/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_without_family/00_9extra_calculation.gitlab.md
index 7822e3975..69292f455 100644
--- a/tests/results/test_namespace_without_family/00_9extra_calculation.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9extra_calculation.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: the value of the variable "[a variable](#rougail.variable)" |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: copy the value of rougail.variable. |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: copy the value of rougail.variable. |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: the value of the variable "[a variable](#rougail.variable)" (rougail.variable). |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: copy the value of rougail.variable. |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: copy the value of rougail.variable. |
diff --git a/tests/results/test_namespace_without_family/00_9extra_calculation.html b/tests/results/test_namespace_without_family/00_9extra_calculation.html
index 72dba2da9..6ec203ee7 100644
--- a/tests/results/test_namespace_without_family/00_9extra_calculation.html
+++ b/tests/results/test_namespace_without_family/00_9extra_calculation.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
-rougail.variable string standard mandatory | A variable. Default: value |
-extra.variable1 string standard mandatory | A first variable. Default: the value of the variable "a variable" |
-extra.variable2 string standard mandatory | A second variable. Default: copy the value of rougail.variable. |
-extra.variable3 string standard mandatory | A third variable. Default: copy the value of rougail.variable. |
+rougail.variable string standard mandatory | A variable. Default: value |
+extra.variable1 string standard mandatory | A first variable. Default: the value of the variable "a variable" (rougail.variable). |
+extra.variable2 string standard mandatory | A second variable. Default: copy the value of rougail.variable. |
+extra.variable3 string standard mandatory | A third variable. Default: copy the value of rougail.variable. |
diff --git a/tests/results/test_namespace_without_family/00_9extra_calculation.json b/tests/results/test_namespace_without_family/00_9extra_calculation.json
index e83d98fd6..cc1067189 100644
--- a/tests/results/test_namespace_without_family/00_9extra_calculation.json
+++ b/tests/results/test_namespace_without_family/00_9extra_calculation.json
@@ -64,7 +64,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.variable",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/00_9extra_calculation.md b/tests/results/test_namespace_without_family/00_9extra_calculation.md
index 7822e3975..69292f455 100644
--- a/tests/results/test_namespace_without_family/00_9extra_calculation.md
+++ b/tests/results/test_namespace_without_family/00_9extra_calculation.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: the value of the variable "[a variable](#rougail.variable)" |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: copy the value of rougail.variable. |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: copy the value of rougail.variable. |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: the value of the variable "[a variable](#rougail.variable)" (rougail.variable). |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: copy the value of rougail.variable. |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: copy the value of rougail.variable. |
diff --git a/tests/results/test_namespace_without_family/00_9extra_calculation.sh b/tests/results/test_namespace_without_family/00_9extra_calculation.sh
index 8572f221f..25892208e 100644
--- a/tests/results/test_namespace_without_family/00_9extra_calculation.sh
+++ b/tests/results/test_namespace_without_family/00_9extra_calculation.sh
@@ -6,7 +6,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mextra.variable1[0m β A first variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (rougail.variable). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mextra.variable2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: copy the value of β
diff --git a/tests/results/test_namespace_without_family/00_9extra_ouside.adoc b/tests/results/test_namespace_without_family/00_9extra_ouside.adoc
index e662f8d3b..be6a4f18b 100644
--- a/tests/results/test_namespace_without_family/00_9extra_ouside.adoc
+++ b/tests/results/test_namespace_without_family/00_9extra_ouside.adoc
@@ -3,7 +3,7 @@
| Variable | Description
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (extra.variable).
| **extra.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
**Default**: value in extra
diff --git a/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.adoc b/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.adoc
index 941cdfa83..55de94c31 100644
--- a/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.adoc
+++ b/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.adoc
@@ -5,7 +5,7 @@
| Variable | Description
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (extra.variable).
| **extra.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
**Default**: value in extra
diff --git a/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.gitlab.md b/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.gitlab.md
index 43a7b327a..b8404138f 100644
--- a/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#extra.variable)" |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value in extra |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#extra.variable)" (extra.variable). |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value in extra |
diff --git a/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.html b/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.html
index 3385e4d5f..0c31d813a 100644
--- a/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.html
+++ b/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.variable string standard mandatory | A variable. Default: the value of the variable "a variable" |
-extra.variable string standard mandatory | A variable. Default: value in extra |
+rougail.variable string standard mandatory | A variable. Default: the value of the variable "a variable" (extra.variable). |
+extra.variable string standard mandatory | A variable. Default: value in extra |
diff --git a/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.md b/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.md
index 0982c40d2..f32e318d6 100644
--- a/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.md
+++ b/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#extra.variable)" |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value in extra |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#extra.variable)" (extra.variable). |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value in extra |
diff --git a/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.sh b/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.sh
index 5e030993c..c3830d08a 100644
--- a/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.sh
+++ b/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.sh
@@ -5,7 +5,7 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (extra.variable). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mextra.variable[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: value in extra β
diff --git a/tests/results/test_namespace_without_family/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_without_family/00_9extra_ouside.gitlab.md
index e742df3e0..94458e5e1 100644
--- a/tests/results/test_namespace_without_family/00_9extra_ouside.gitlab.md
+++ b/tests/results/test_namespace_without_family/00_9extra_ouside.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#extra.variable)" |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value in extra |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#extra.variable)" (extra.variable). |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value in extra |
diff --git a/tests/results/test_namespace_without_family/00_9extra_ouside.html b/tests/results/test_namespace_without_family/00_9extra_ouside.html
index 5096d521c..f6167c386 100644
--- a/tests/results/test_namespace_without_family/00_9extra_ouside.html
+++ b/tests/results/test_namespace_without_family/00_9extra_ouside.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.variable string standard mandatory | A variable. Default: the value of the variable "a variable" |
-extra.variable string standard mandatory | A variable. Default: value in extra |
+rougail.variable string standard mandatory | A variable. Default: the value of the variable "a variable" (extra.variable). |
+extra.variable string standard mandatory | A variable. Default: value in extra |
diff --git a/tests/results/test_namespace_without_family/00_9extra_ouside.json b/tests/results/test_namespace_without_family/00_9extra_ouside.json
index 9f18a94d9..0bcecadf5 100644
--- a/tests/results/test_namespace_without_family/00_9extra_ouside.json
+++ b/tests/results/test_namespace_without_family/00_9extra_ouside.json
@@ -29,7 +29,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "extra.variable",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/00_9extra_ouside.md b/tests/results/test_namespace_without_family/00_9extra_ouside.md
index e742df3e0..94458e5e1 100644
--- a/tests/results/test_namespace_without_family/00_9extra_ouside.md
+++ b/tests/results/test_namespace_without_family/00_9extra_ouside.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#extra.variable)" |
-| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value in extra |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#extra.variable)" (extra.variable). |
+| ****
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value in extra |
diff --git a/tests/results/test_namespace_without_family/00_9extra_ouside.sh b/tests/results/test_namespace_without_family/00_9extra_ouside.sh
index bf8fd0651..045c5f6ba 100644
--- a/tests/results/test_namespace_without_family/00_9extra_ouside.sh
+++ b/tests/results/test_namespace_without_family/00_9extra_ouside.sh
@@ -3,7 +3,7 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (extra.variable). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mextra.variable[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: value in extra β
diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.adoc b/tests/results/test_namespace_without_family/01_9choice_variable_multi.adoc
index 540306567..0f5a2b0b1 100644
--- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.adoc
+++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.adoc
@@ -10,6 +10,6 @@
* c
| **rougail.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A second variable. +
-**Choices**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a first variable" (rougail.variable1).
|====
diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.adoc b/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.adoc
index 86d1cd0cb..235175a51 100644
--- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.adoc
+++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.adoc
@@ -12,6 +12,6 @@
* c
| **rougail.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A second variable. +
-**Choices**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a first variable" (rougail.variable1).
|====
diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.gitlab.md b/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.gitlab.md
index 7fc06cc41..034bca3ed 100644
--- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a first variable](#rougail.variable1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a first variable](#rougail.variable1)" (rougail.variable1). |
diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.html b/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.html
index ccc30935c..ef1dea882 100644
--- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.html
+++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.variable1 string multiple standard mandatory unique | A first variable. Default: |
-rougail.variable2 choice basic mandatory | A second variable. Choices: the value of the variable "a first variable" |
+c
+rougail.variable2 choice basic mandatory | A second variable. Choices: the value of the variable "a first variable" (rougail.variable1). |
diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.md b/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.md
index 84e0424f9..a666660f7 100644
--- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.md
+++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a first variable](#rougail.variable1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a first variable](#rougail.variable1)" (rougail.variable1). |
diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.sh b/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.sh
index 7a06e11ac..6e4436dfc 100644
--- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.sh
+++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.sh
@@ -12,5 +12,6 @@
β [1mrougail.variable2[0m β A second variable. β
β [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
β β "a first variable" β
+β β (rougail.variable1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_without_family/01_9choice_variable_multi.gitlab.md
index c4e7fa2eb..bb196677c 100644
--- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a first variable](#rougail.variable1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a first variable](#rougail.variable1)" (rougail.variable1). |
diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.html b/tests/results/test_namespace_without_family/01_9choice_variable_multi.html
index 46e723173..b820e28d3 100644
--- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.html
+++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.variable1 string multiple standard mandatory unique | A first variable. Default: |
-rougail.variable2 choice basic mandatory | A second variable. Choices: the value of the variable "a first variable" |
+c
+rougail.variable2 choice basic mandatory | A second variable. Choices: the value of the variable "a first variable" (rougail.variable1). |
diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.json b/tests/results/test_namespace_without_family/01_9choice_variable_multi.json
index fd0bb141e..f8161b8f5 100644
--- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.json
+++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.json
@@ -61,7 +61,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.variable1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.md b/tests/results/test_namespace_without_family/01_9choice_variable_multi.md
index c4e7fa2eb..bb196677c 100644
--- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.md
+++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a first variable](#rougail.variable1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a first variable](#rougail.variable1)" (rougail.variable1). |
diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.sh b/tests/results/test_namespace_without_family/01_9choice_variable_multi.sh
index e988e137e..aba48850f 100644
--- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.sh
+++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.sh
@@ -10,4 +10,5 @@
β [1mrougail.variable2[0m β A second variable. β
β [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
β β "a first variable" β
+β β (rougail.variable1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.adoc b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.adoc
index 79b4c2254..081f5addc 100644
--- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.adoc
+++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.adoc
@@ -6,6 +6,6 @@
**Default**: no
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | A second variable. +
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.adoc b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.adoc
index a788ae4f2..a6ef745dc 100644
--- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.adoc
+++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: no
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | A second variable. +
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (rougail.var1).
|====
diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.gitlab.md b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.gitlab.md
index eb19a6816..3361ba27f 100644
--- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **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 "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.html b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.html
index bc6ace14d..2a6f1bf54 100644
--- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.html
+++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string standard mandatory | A first variable. Default: no |
-rougail.var2 string basic mandatory auto modified | A second variable. Default: the value of the variable "a first variable" |
+rougail.var1 string standard mandatory | A first variable. Default: no |
+rougail.var2 string basic mandatory auto modified | A second variable. Default: the value of the variable "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.md b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.md
index ce57cf667..f725fed00 100644
--- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.md
+++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **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 "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.sh b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.sh
index 4454cdb45..d905a0b71 100644
--- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.sh
+++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.sh
@@ -8,6 +8,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m auto [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmodified [0m β "a first variable" β
+β [1;7mmodified [0m β "a first variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.gitlab.md
index 50238b41b..09b667e83 100644
--- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **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 "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.html b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.html
index 975dafd3e..c35aa6fb3 100644
--- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.html
+++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string standard mandatory | A first variable. Default: no |
-rougail.var2 string basic mandatory auto modified | A second variable. Default: the value of the variable "a first variable" |
+rougail.var1 string standard mandatory | A first variable. Default: no |
+rougail.var2 string basic mandatory auto modified | A second variable. Default: the value of the variable "a first variable" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.json b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.json
index e81f04206..5d6b22edd 100644
--- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.json
+++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.json
@@ -55,7 +55,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.md b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.md
index 50238b41b..09b667e83 100644
--- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.md
+++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **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 "[a first variable](#rougail.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
+| **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 "[a first variable](#rougail.var1)" (rougail.var1). |
diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.sh b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.sh
index 4aa7f9b24..21ef5c126 100644
--- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.sh
+++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.sh
@@ -6,5 +6,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m auto [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmodified [0m β "a first variable" β
+β [1;7mmodified [0m β "a first variable" (rougail.var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.adoc
index 673cba2d0..d5d8074f3 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.adoc
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.adoc
@@ -6,7 +6,7 @@
**Default**: value
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a first variable" has the value "value".
+**Disabled**: when the variable "a first variable" (rougail.var1) has the value "value".
| **rougail.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. +
**Default**: depends on a calculation.
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.adoc
index e77b56128..3edcab469 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.adoc
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.adoc
@@ -8,7 +8,7 @@
**Default**: value
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a first variable" has the value "value".
+**Disabled**: when the variable "a first variable" (rougail.var1) has the value "value".
| **rougail.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. +
**Default**: depends on a calculation.
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.gitlab.md b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.gitlab.md
index 8f97e3b60..c4489a6fa 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first 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. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#rougail.var1)" (rougail.var1) has the value "value". |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.html b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.html
index ead070ffc..6c7506ead 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.html
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string standard mandatory | A first variable. Default: value |
-rougail.var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" has the value "value". |
-rougail.var3 string standard mandatory | A third variable. Default: depends on a calculation. |
+rougail.var1 string standard mandatory | A first variable. Default: value |
+rougail.var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" (rougail.var1) has the value "value". |
+rougail.var3 string standard mandatory | A third variable. Default: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.md b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.md
index 93af18578..80197ffad 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.md
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first 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. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#rougail.var1)" (rougail.var1) has the value "value". |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.sh b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.sh
index 6fe5a728c..4de01ab67 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.sh
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.sh
@@ -8,7 +8,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a first β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "value". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.var1) has the β
+β β value "value". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var3[0m β A third variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: depends on a calculation. β
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.gitlab.md
index e591b1afe..f4b2edd1a 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first 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. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#rougail.var1)" (rougail.var1) has the value "value". |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.html b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.html
index fc90c2817..8b909dc77 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.html
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string standard mandatory | A first variable. Default: value |
-rougail.var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" has the value "value". |
-rougail.var3 string standard mandatory | A third variable. Default: depends on a calculation. |
+rougail.var1 string standard mandatory | A first variable. Default: value |
+rougail.var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" (rougail.var1) has the value "value". |
+rougail.var3 string standard mandatory | A third variable. Default: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.json b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.json
index 589b2af37..60f0aac69 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.json
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"value\".",
+ "message": "when the variable {0} has the value \"value\".",
"path": {
"path": "rougail.var1"
},
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.md b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.md
index e591b1afe..f4b2edd1a 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.md
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first 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. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#rougail.var1)" (rougail.var1) has the value "value". |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.sh b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.sh
index a974b12a4..e8bdd58a0 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.sh
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.sh
@@ -6,7 +6,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a first β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "value". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.var1) has the β
+β β value "value". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var3[0m β A third variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: depends on a calculation. β
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.adoc
index 673cba2d0..d5d8074f3 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.adoc
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.adoc
@@ -6,7 +6,7 @@
**Default**: value
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a first variable" has the value "value".
+**Disabled**: when the variable "a first variable" (rougail.var1) has the value "value".
| **rougail.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. +
**Default**: depends on a calculation.
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.adoc
index e77b56128..3edcab469 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.adoc
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.adoc
@@ -8,7 +8,7 @@
**Default**: value
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a first variable" has the value "value".
+**Disabled**: when the variable "a first variable" (rougail.var1) has the value "value".
| **rougail.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. +
**Default**: depends on a calculation.
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.gitlab.md b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.gitlab.md
index 8f97e3b60..c4489a6fa 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first 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. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#rougail.var1)" (rougail.var1) has the value "value". |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.html b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.html
index ead070ffc..6c7506ead 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.html
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string standard mandatory | A first variable. Default: value |
-rougail.var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" has the value "value". |
-rougail.var3 string standard mandatory | A third variable. Default: depends on a calculation. |
+rougail.var1 string standard mandatory | A first variable. Default: value |
+rougail.var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" (rougail.var1) has the value "value". |
+rougail.var3 string standard mandatory | A third variable. Default: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.md b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.md
index 93af18578..80197ffad 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.md
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first 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. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#rougail.var1)" (rougail.var1) has the value "value". |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.sh b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.sh
index 6fe5a728c..4de01ab67 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.sh
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.sh
@@ -8,7 +8,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a first β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "value". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.var1) has the β
+β β value "value". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var3[0m β A third variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: depends on a calculation. β
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.gitlab.md
index e591b1afe..f4b2edd1a 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first 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. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#rougail.var1)" (rougail.var1) has the value "value". |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.html b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.html
index fc90c2817..8b909dc77 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.html
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string standard mandatory | A first variable. Default: value |
-rougail.var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" has the value "value". |
-rougail.var3 string standard mandatory | A third variable. Default: depends on a calculation. |
+rougail.var1 string standard mandatory | A first variable. Default: value |
+rougail.var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" (rougail.var1) has the value "value". |
+rougail.var3 string standard mandatory | A third variable. Default: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.json b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.json
index 589b2af37..60f0aac69 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.json
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"value\".",
+ "message": "when the variable {0} has the value \"value\".",
"path": {
"path": "rougail.var1"
},
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.md b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.md
index e591b1afe..f4b2edd1a 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.md
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first 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. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#rougail.var1)" (rougail.var1) has the value "value". |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.sh
index a974b12a4..e8bdd58a0 100644
--- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.sh
+++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.sh
@@ -6,7 +6,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a first β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "value". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.var1) has the β
+β β value "value". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var3[0m β A third variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: depends on a calculation. β
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.adoc
index 629bfeac1..15f6eb5b5 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.adoc
@@ -8,9 +8,9 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable.
| **rougail.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. +
-**Hidden**: when the variable "a condition" is defined and has the value "true".
+**Hidden**: when the variable "a condition" (rougail.condition) is defined and has the value "true".
| **rougail.var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A forth variable. +
-**Hidden**: when the variable "a condition" is defined and has the value "true".
+**Hidden**: when the variable "a condition" (rougail.condition) is defined and has the value "true".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.adoc
index ca06917fa..eea1a6f4e 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.adoc
@@ -10,9 +10,9 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable.
| **rougail.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. +
-**Hidden**: when the variable "a condition" is defined and has the value "true".
+**Hidden**: when the variable "a condition" (rougail.condition) is defined and has the value "true".
| **rougail.var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A forth variable. +
-**Hidden**: when the variable "a condition" is defined and has the value "true".
+**Hidden**: when the variable "a condition" (rougail.condition) is defined and has the value "true".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.gitlab.md
index d6a5cfa03..920d8a8eb 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#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 "[a condition](#rougail.condition)" is defined and has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#rougail.condition)" (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 "[a condition](#rougail.condition)" (rougail.condition) is defined and has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.html
index 613895f82..61182dc71 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.var1 string standard | A first variable. |
-rougail.var3 string standard hidden | A second variable. Hidden: when the variable "a condition" is defined and has the value "true". |
-rougail.var4 string standard hidden | A forth variable. Hidden: when the variable "a condition" is defined and has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.var1 string standard | A first variable. |
+rougail.var3 string standard hidden | A second variable. Hidden: when the variable "a condition" (rougail.condition) is defined and has the value "true". |
+rougail.var4 string standard hidden | A forth variable. Hidden: when the variable "a condition" (rougail.condition) is defined and has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.md
index 964f0388e..17739c1bf 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#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 "[a condition](#rougail.condition)" is defined and has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#rougail.condition)" (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 "[a condition](#rougail.condition)" (rougail.condition) is defined and has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.sh
index c4544337e..24a87f044 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.sh
@@ -11,12 +11,12 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var3[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m β [1mHidden[0m: when the variable "a β
-β β condition" is defined and has the β
-β β value "true". β
+β β condition" (rougail.condition) is β
+β β defined and has the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var4[0m β A forth variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m β [1mHidden[0m: when the variable "a β
-β β condition" is defined and has the β
-β β value "true". β
+β β condition" (rougail.condition) is β
+β β defined and has the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.gitlab.md
index d1aee859f..0bee2666a 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#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 "[a condition](#rougail.condition)" is defined and has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#rougail.condition)" (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 "[a condition](#rougail.condition)" (rougail.condition) is defined and has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.html
index 959b3c928..1f414810a 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.var1 string standard | A first variable. |
-rougail.var3 string standard hidden | A second variable. Hidden: when the variable "a condition" is defined and has the value "true". |
-rougail.var4 string standard hidden | A forth variable. Hidden: when the variable "a condition" is defined and has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.var1 string standard | A first variable. |
+rougail.var3 string standard hidden | A second variable. Hidden: when the variable "a condition" (rougail.condition) is defined and has the value "true". |
+rougail.var4 string standard hidden | A forth variable. Hidden: when the variable "a condition" (rougail.condition) is defined and has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.json b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.json
index f7a158521..73fa5284d 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.json
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.json
@@ -52,7 +52,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is defined and has the value \"true\".",
+ "message": "when the variable {0} is defined and has the value \"true\".",
"path": {
"path": "rougail.condition"
},
@@ -75,7 +75,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is defined and has the value \"true\".",
+ "message": "when the variable {0} is defined and has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.md
index d1aee859f..0bee2666a 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#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 "[a condition](#rougail.condition)" is defined and has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#rougail.condition)" (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 "[a condition](#rougail.condition)" (rougail.condition) is defined and has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.sh
index 95dc6ac32..556bcb579 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.sh
@@ -9,11 +9,11 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var3[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m β [1mHidden[0m: when the variable "a β
-β β condition" is defined and has the β
-β β value "true". β
+β β condition" (rougail.condition) is β
+β β defined and has the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var4[0m β A forth variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m β [1mHidden[0m: when the variable "a β
-β β condition" is defined and has the β
-β β value "true". β
+β β condition" (rougail.condition) is β
+β β defined and has the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.adoc
index 23425aef2..2ebacd95c 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.adoc
@@ -6,6 +6,6 @@
**Default**: false
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.adoc
index 46ff3f4ad..0193ff265 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: false
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.gitlab.md
index 1c7f793d8..80cfc5186 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.html
index a0a2174c1..f15e90f1d 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.md
index 4b3e171bc..a26d041e6 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.sh
index 22ad64562..fb59d3d90 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.gitlab.md
index 1eb5f7f36..bf94dd01b 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.html
index c7304de66..9fe2fcc8e 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.json b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.json
index 252341050..fd39bfc73 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.json
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.md
index 1eb5f7f36..bf94dd01b 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.sh
index bc552604b..ca5514f29 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.adoc
index dbbf61940..4e2078d3f 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.adoc
@@ -6,6 +6,6 @@
**Default**: true
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.adoc
index ffafe4a96..9e8923586 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: true
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.gitlab.md
index 11756b1cc..e0e2f8ce9 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.html
index 2e0dfee2d..df6980094 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.md
index 4d774b108..8229a75b8 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.sh
index 692e64fba..a67dcd9e1 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.gitlab.md
index 842e39686..1fd76e3f2 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.html
index 5f0c76ae6..c1df1f5f6 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.json b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.json
index 83072dad1..f22dc69e1 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.json
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.md
index 842e39686..1fd76e3f2 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.sh
index d4cf96bfe..c63ec2b2d 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.adoc
index dbbf61940..4e2078d3f 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.adoc
@@ -6,6 +6,6 @@
**Default**: true
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.adoc
index ffafe4a96..9e8923586 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: true
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.gitlab.md
index 11756b1cc..e0e2f8ce9 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.html
index 2e0dfee2d..df6980094 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.md
index 4d774b108..8229a75b8 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.sh
index 692e64fba..a67dcd9e1 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.gitlab.md
index 842e39686..1fd76e3f2 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.html
index 5f0c76ae6..c1df1f5f6 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.json b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.json
index 83072dad1..f22dc69e1 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.json
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.md
index 842e39686..1fd76e3f2 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.sh
index d4cf96bfe..c63ec2b2d 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.adoc
index edfe8af61..0aa557dd5 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.adoc
@@ -6,6 +6,6 @@
**Default**: yes
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "yes".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "yes".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.adoc
index 29b87e41a..bc9f530cf 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: yes
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "yes".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "yes".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.gitlab.md
index 97ca95d17..6b3eae0a5 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" has the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) has the value "yes". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.html
index f4088f3e2..a504cf218 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition string standard mandatory | A condition. Default: yes |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "yes". |
+rougail.condition string standard mandatory | A condition. Default: yes |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "yes". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.md
index ffb95c23f..ec3f3bf3e 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" has the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) has the value "yes". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.sh
index 93062197d..77b1ac57e 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "yes". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "yes". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.gitlab.md
index b412138aa..bfbf1e469 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" has the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) has the value "yes". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.html
index bfbf464c6..6860cf7ee 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition string standard mandatory | A condition. Default: yes |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "yes". |
+rougail.condition string standard mandatory | A condition. Default: yes |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "yes". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.json b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.json
index 4d2f31d73..0185bc1cf 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.json
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"yes\".",
+ "message": "when the variable {0} has the value \"yes\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.md
index b412138aa..bfbf1e469 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" has the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) has the value "yes". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.sh
index d09ea5aa4..181dd33e3 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "yes". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "yes". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.adoc
index 0d1b7dc58..240f30bc6 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.adoc
@@ -6,6 +6,6 @@
**Default**: yes
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" hasn't the value "yes".
+**Disabled**: when the variable "a condition" (rougail.condition) hasn't the value "yes".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.adoc
index 12a3f3aed..8bdfb5d89 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: yes
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" hasn't the value "yes".
+**Disabled**: when the variable "a condition" (rougail.condition) hasn't the value "yes".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.gitlab.md
index 753ca8c98..f430aa4f5 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" hasn't the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) hasn't the value "yes". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.html
index 5355a84db..ff6c3f760 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition string standard mandatory | A condition. Default: yes |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" hasn't the value "yes". |
+rougail.condition string standard mandatory | A condition. Default: yes |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) hasn't the value "yes". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.md
index 4f57b543e..fb3465629 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" hasn't the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) hasn't the value "yes". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.sh
index 2225199df..2d546606f 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" hasn't the value "yes". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) β
+β β hasn't the value "yes". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.gitlab.md
index 85057763c..af22d1125 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" hasn't the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) hasn't the value "yes". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.html
index 33665a8f5..253a15f48 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition string standard mandatory | A condition. Default: yes |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" hasn't the value "yes". |
+rougail.condition string standard mandatory | A condition. Default: yes |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) hasn't the value "yes". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.json b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.json
index e8393c47b..bbed8d6eb 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.json
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"yes\".",
+ "message": "when the variable {0} hasn't the value \"yes\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.md
index 85057763c..af22d1125 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" hasn't the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) hasn't the value "yes". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.sh
index 5402ae19f..12763fe5b 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" hasn't the value "yes". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) β
+β β hasn't the value "yes". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.adoc
index 23425aef2..2ebacd95c 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.adoc
@@ -6,6 +6,6 @@
**Default**: false
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.adoc
index 46ff3f4ad..0193ff265 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: false
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.gitlab.md
index 1c7f793d8..80cfc5186 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.html
index a0a2174c1..f15e90f1d 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.md
index 4b3e171bc..a26d041e6 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.sh
index 22ad64562..fb59d3d90 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.gitlab.md
index 1eb5f7f36..bf94dd01b 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.html
index c7304de66..9fe2fcc8e 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.json b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.json
index 252341050..fd39bfc73 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.json
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.md
index 1eb5f7f36..bf94dd01b 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.sh
index bc552604b..ca5514f29 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.adoc
index 6d300b13e..92a0c63f1 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.adoc
@@ -6,6 +6,6 @@
**Default**: false
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `basic` `mandatory` `__disabled__` `unique` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.adoc
index 9c572eea1..3b504a561 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: false
| **rougail.variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `basic` `mandatory` `__disabled__` `unique` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.gitlab.md
index 69dbb7998..f0395f3f5 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.html
index 0bf0f23b3..c03cddeff 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.variable string multiple basic mandatory disabled unique | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.variable string multiple basic mandatory disabled unique | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.md
index a49236660..58a61348f 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.sh
index dea6046a7..9bc2bd0de 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m basic [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;7mmandatory [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m [1;7m unique [0m β condition" has the value "true". β
+β [1;7mmandatory [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m [1;7m unique [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.gitlab.md
index 13d182b86..49a8df18e 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.html
index 970a5c929..b2d9fad2e 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.variable string multiple basic mandatory disabled unique | A variable. Disabled: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.variable string multiple basic mandatory disabled unique | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.json b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.json
index 5786d8b4f..0978d0198 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.json
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.md
index 13d182b86..49a8df18e 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.sh
index 105d96b47..857fb73c7 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β A variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m basic [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;7mmandatory [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m [1;7m unique [0m β condition" has the value "true". β
+β [1;7mmandatory [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m [1;7m unique [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.adoc
index c296b9196..fd96b2156 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.adoc
@@ -6,9 +6,9 @@
**Default**: true
| **rougail.variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
| **rougail.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is "disabled".
+**Disabled**: when the variable "a variable" (rougail.variable1) is "disabled".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.adoc
index af4cab595..41dec67ce 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.adoc
@@ -8,9 +8,9 @@
**Default**: true
| **rougail.variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
| **rougail.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is "disabled".
+**Disabled**: when the variable "a variable" (rougail.variable1) is "disabled".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.gitlab.md
index 276ba027c..8e2b05022 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is "disabled". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.html
index 52fe71072..95188ba43 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.variable1 string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
-rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is "disabled". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.variable1 string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
+rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (rougail.variable1) is "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.md
index 7ef27c32f..6e72fe4b0 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is "disabled". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.sh
index 926897112..7f0f5fd9a 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.changelog.sh
@@ -8,10 +8,12 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable1[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.variable1) is β
+β β "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.gitlab.md
index f2a549305..8afacedfe 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is "disabled". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.html
index 9291182f7..13522dfff 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.variable1 string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
-rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is "disabled". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.variable1 string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
+rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (rougail.variable1) is "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.json b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.json
index 4aeef218e..3de7dc1cf 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.json
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
@@ -78,7 +78,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is \"disabled\".",
+ "message": "when the variable {0} is \"disabled\".",
"path": {
"path": "rougail.variable1"
},
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.md
index f2a549305..8afacedfe 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is "disabled". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.sh
index b1dd7f8e4..018137943 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive.sh
@@ -6,9 +6,11 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable1[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.variable1) is β
+β β "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.adoc
index f698c384a..70dec1e59 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.adoc
@@ -7,9 +7,9 @@
| **rougail.variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable. +
**Default**: disabled +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
| **rougail.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is disabled or has the value "disabled".
+**Disabled**: when the variable "a variable" (rougail.variable1) is disabled or has the value "disabled".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.adoc
index 95281cf71..74cd3c296 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.adoc
@@ -9,9 +9,9 @@
| **rougail.variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable. +
**Default**: disabled +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
| **rougail.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is disabled or has the value "disabled".
+**Disabled**: when the variable "a variable" (rougail.variable1) is disabled or has the value "disabled".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.gitlab.md
index c643e7535..4ee676a85 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.html
index 96065b19d..72a87e6ba 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.variable1 string standard mandatory disabled | A variable. Default: disabled Disabled: when the variable "a condition" has the value "true". |
-rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is disabled or has the value "disabled". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.variable1 string standard mandatory disabled | A variable. Default: disabled Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
+rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.md
index 68815c578..32bae512a 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.sh
index 9fa16aa22..2d5488279 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.changelog.sh
@@ -9,11 +9,13 @@
β [1mrougail.variable1[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: disabled β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is disabled or has the β
-β β value "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.variable1) is β
+β β disabled or has the value β
+β β "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.gitlab.md
index ebb54ce1d..ae3035af2 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.html
index a18a1daf6..be3ce0f3d 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: false |
-rougail.variable1 string standard mandatory disabled | A variable. Default: disabled Disabled: when the variable "a condition" has the value "true". |
-rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is disabled or has the value "disabled". |
+rougail.condition boolean standard mandatory | A condition. Default: false |
+rougail.variable1 string standard mandatory disabled | A variable. Default: disabled Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
+rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.json b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.json
index a16e335c1..d796adef2 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.json
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
@@ -82,7 +82,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is disabled or has the value \"disabled\".",
+ "message": "when the variable {0} is disabled or has the value \"disabled\".",
"path": {
"path": "rougail.variable1"
},
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.md
index ebb54ce1d..ae3035af2 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.sh
index 4de0eecba..ad9ebe0cb 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_3.sh
@@ -7,10 +7,12 @@
β [1mrougail.variable1[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: disabled β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is disabled or has the β
-β β value "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.variable1) is β
+β β disabled or has the value β
+β β "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.adoc
index f12657afc..cb537f10f 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.adoc
@@ -7,9 +7,9 @@
| **rougail.variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable. +
**Default**: not_disabled +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
| **rougail.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is disabled or has the value "disabled".
+**Disabled**: when the variable "a variable" (rougail.variable1) is disabled or has the value "disabled".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.adoc
index 980c5c093..a481cc74d 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.adoc
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.adoc
@@ -9,9 +9,9 @@
| **rougail.variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable. +
**Default**: not_disabled +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (rougail.condition) has the value "true".
| **rougail.variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is disabled or has the value "disabled".
+**Disabled**: when the variable "a variable" (rougail.variable1) is disabled or has the value "disabled".
|====
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.gitlab.md
index eb4964e07..ffef2bf24 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.html
index 5ec53c871..e7a171bc7 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.variable1 string standard mandatory disabled | A variable. Default: not_disabled Disabled: when the variable "a condition" has the value "true". |
-rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is disabled or has the value "disabled". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.variable1 string standard mandatory disabled | A variable. Default: not_disabled Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
+rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.md
index c78eb9788..902c28a2f 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.sh
index 6f54c49e7..ecdf77cd0 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.changelog.sh
@@ -9,11 +9,13 @@
β [1mrougail.variable1[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: not_disabled β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is disabled or has the β
-β β value "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.variable1) is β
+β β disabled or has the value β
+β β "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.gitlab.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.gitlab.md
index ce7168797..b02556a87 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.gitlab.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.html b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.html
index eb973c3cc..2c2940791 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.html
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.variable1 string standard mandatory disabled | A variable. Default: not_disabled Disabled: when the variable "a condition" has the value "true". |
-rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is disabled or has the value "disabled". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.variable1 string standard mandatory disabled | A variable. Default: not_disabled Disabled: when the variable "a condition" (rougail.condition) has the value "true". |
+rougail.variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.json b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.json
index 1066322be..dd9d69f90 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.json
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.json
@@ -49,7 +49,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
@@ -82,7 +82,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is disabled or has the value \"disabled\".",
+ "message": "when the variable {0} is disabled or has the value \"disabled\".",
"path": {
"path": "rougail.variable1"
},
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.md b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.md
index ce7168797..b02556a87 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.md
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" has the value "true". |
-| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **rougail.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
+| **rougail.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#rougail.variable1)" (rougail.variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.sh
index 2fef4e85a..c50a3324d 100644
--- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.sh
+++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_transitive_4.sh
@@ -7,10 +7,12 @@
β [1mrougail.variable1[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: not_disabled β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is disabled or has the β
-β β value "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.variable1) is β
+β β disabled or has the value β
+β β "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/20_9default_information_parent.adoc b/tests/results/test_namespace_without_family/20_9default_information_parent.adoc
index e38e88a37..d78d38080 100644
--- a/tests/results/test_namespace_without_family/20_9default_information_parent.adoc
+++ b/tests/results/test_namespace_without_family/20_9default_information_parent.adoc
@@ -5,6 +5,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **rougail.family.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "rougail.family".
+**Default**: the value of the information "test_information" of the variable "family" (rougail.family).
|====
diff --git a/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.adoc b/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.adoc
index 4ae39e333..ad7d3ae9e 100644
--- a/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.adoc
+++ b/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.adoc
@@ -7,6 +7,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **rougail.family.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "rougail.family".
+**Default**: the value of the information "test_information" of the variable "family" (rougail.family).
|====
diff --git a/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.gitlab.md b/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.gitlab.md
index 890a69d43..6fe8f5d50 100644
--- a/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[family](#rougail.family)" (rougail.family). |
diff --git a/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.html b/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.html
index e24d909f3..63ce7c449 100644
--- a/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.html
+++ b/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.family.var1 string basic mandatory | A first variable. |
-rougail.family.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "rougail.family". |
+rougail.family.var1 string basic mandatory | A first variable. |
+rougail.family.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "family" (rougail.family). |
diff --git a/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.md b/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.md
index 6b2fb3eef..92a75cd58 100644
--- a/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.md
+++ b/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[family](#rougail.family)" (rougail.family). |
diff --git a/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.sh b/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.sh
index 8b5e5d155..fd67a8412 100644
--- a/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.sh
+++ b/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.sh
@@ -9,6 +9,7 @@
β [1mrougail.family.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "rougail.family". β
+β β the variable "family" β
+β β (rougail.family). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_without_family/20_9default_information_parent.gitlab.md
index b7ea47547..ff2e70f55 100644
--- a/tests/results/test_namespace_without_family/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_namespace_without_family/20_9default_information_parent.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[family](#rougail.family)" (rougail.family). |
diff --git a/tests/results/test_namespace_without_family/20_9default_information_parent.html b/tests/results/test_namespace_without_family/20_9default_information_parent.html
index 80fcab364..ec8f9c18d 100644
--- a/tests/results/test_namespace_without_family/20_9default_information_parent.html
+++ b/tests/results/test_namespace_without_family/20_9default_information_parent.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.family.var1 string basic mandatory | A first variable. |
-rougail.family.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "rougail.family". |
+rougail.family.var1 string basic mandatory | A first variable. |
+rougail.family.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "family" (rougail.family). |
diff --git a/tests/results/test_namespace_without_family/20_9default_information_parent.json b/tests/results/test_namespace_without_family/20_9default_information_parent.json
index ace9c7200..1a95563cb 100644
--- a/tests/results/test_namespace_without_family/20_9default_information_parent.json
+++ b/tests/results/test_namespace_without_family/20_9default_information_parent.json
@@ -53,7 +53,15 @@
"type": "variable",
"default": {
"name": "Default",
- "values": "the value of the information \"test_information\" of the variable \"rougail.family\"."
+ "values": {
+ "message": "the value of the information \"test_information\" of the variable {0}.",
+ "path": {
+ "type": "information",
+ "information": "test_information",
+ "path": "rougail.family"
+ },
+ "description": "family"
+ }
},
"variable_type": "string"
}
diff --git a/tests/results/test_namespace_without_family/20_9default_information_parent.md b/tests/results/test_namespace_without_family/20_9default_information_parent.md
index b7ea47547..ff2e70f55 100644
--- a/tests/results/test_namespace_without_family/20_9default_information_parent.md
+++ b/tests/results/test_namespace_without_family/20_9default_information_parent.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[family](#rougail.family)" (rougail.family). |
diff --git a/tests/results/test_namespace_without_family/20_9default_information_parent.sh b/tests/results/test_namespace_without_family/20_9default_information_parent.sh
index 774848505..afd3f4e97 100644
--- a/tests/results/test_namespace_without_family/20_9default_information_parent.sh
+++ b/tests/results/test_namespace_without_family/20_9default_information_parent.sh
@@ -7,5 +7,6 @@
β [1mrougail.family.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "rougail.family". β
+β β the variable "family" β
+β β (rougail.family). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.json b/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.json
index 2b2daa091..46956db5e 100644
--- a/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.json
+++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.json
@@ -45,7 +45,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.adoc b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.adoc
index 5b2e63891..f6abedb82 100644
--- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.adoc
+++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.adoc
@@ -6,6 +6,6 @@
**Default**: true
| **rougail.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. +
-**Mandatory**: when the variable "a condition" has the value "true".
+**Mandatory**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.adoc b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.adoc
index f50eefd3b..c1806ec69 100644
--- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.adoc
+++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: true
| **rougail.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. +
-**Mandatory**: when the variable "a condition" has the value "true".
+**Mandatory**: when the variable "a condition" (rougail.condition) has the value "true".
|====
diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.gitlab.md b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.gitlab.md
index 10f584ff9..0b9fe4efd 100644
--- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.html b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.html
index 01cb6777b..ba8466aa0 100644
--- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.html
+++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.var string standard mandatory | A variable. Mandatory: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.var string standard mandatory | A variable. Mandatory: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.md b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.md
index 0fb042d6f..ca952ebd0 100644
--- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.md
+++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.sh b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.sh
index 65f7492c4..2e90d8f64 100644
--- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.sh
+++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mmandatory[0m[1;7m [0m β [1mMandatory[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.gitlab.md
index c6226e7a2..6b5020355 100644
--- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.html b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.html
index 975e76b85..5b54abf70 100644
--- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.html
+++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.condition boolean standard mandatory | A condition. Default: true |
-rougail.var string standard mandatory | A variable. Mandatory: when the variable "a condition" has the value "true". |
+rougail.condition boolean standard mandatory | A condition. Default: true |
+rougail.var string standard mandatory | A variable. Mandatory: when the variable "a condition" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.json b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.json
index 67a488ec6..ab2098725 100644
--- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.json
+++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.json
@@ -43,7 +43,7 @@
"ori_name": "mandatory",
"access_control": false,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "rougail.condition"
},
diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.md b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.md
index c6226e7a2..6b5020355 100644
--- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.md
+++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
-| **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 "[a condition](#rougail.condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
+| **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 "[a condition](#rougail.condition)" (rougail.condition) has the value "true". |
diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.sh
index 73b38b904..357358e93 100644
--- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.sh
+++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mmandatory[0m[1;7m [0m β [1mMandatory[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (rougail.condition) has β
+β β the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.adoc b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.adoc
index c7791b78c..bafd10dcb 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.adoc
+++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.adoc
@@ -13,6 +13,6 @@
* value
| **rougail.leader.follower2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | The follower2. +
-**Default**: the value of the variable "the follower1"
+**Default**: the value of the variable "the follower1" (rougail.leader.follower1).
|====
diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.adoc b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.adoc
index ac75b8ef6..199f034d8 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.adoc
+++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.adoc
@@ -15,6 +15,6 @@
* value
| **rougail.leader.follower2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | The follower2. +
-**Default**: the value of the variable "the follower1"
+**Default**: the value of the variable "the follower1" (rougail.leader.follower1).
|====
diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.gitlab.md b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.gitlab.md
index e45bdc25c..89cbec529 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The leader.
**Default**:
β’ leader |
-| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower1.
**Default**:
β’ value |
-| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower2.
**Default**: the value of the variable "[the follower1](#rougail.leader.follower1)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The leader.
**Default**:
β’ leader |
+| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower1.
**Default**:
β’ value |
+| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower2.
**Default**: the value of the variable "[the follower1](#rougail.leader.follower1)" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.html b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.html
index dccd6b9c0..7882bd153 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.html
+++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
-rougail.leader.leader string multiple standard mandatory unique | The leader. Default: |
-rougail.leader.follower1 string multiple standard mandatory unique | The follower1. Default: |
-rougail.leader.follower2 string multiple standard mandatory unique | The follower2. Default: the value of the variable "the follower1" |
+rougail.leader.leader string multiple standard mandatory unique | The leader. Default: |
+rougail.leader.follower1 string multiple standard mandatory unique | The follower1. Default: |
+rougail.leader.follower2 string multiple standard mandatory unique | The follower2. Default: the value of the variable "the follower1" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.md b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.md
index ffc2f8d46..acfd1b999 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.md
+++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The leader.
**Default**:
β’ leader |
-| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower1.
**Default**:
β’ value |
-| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower2.
**Default**: the value of the variable "[the follower1](#rougail.leader.follower1)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The leader.
**Default**:
β’ leader |
+| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower1.
**Default**:
β’ value |
+| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower2.
**Default**: the value of the variable "[the follower1](#rougail.leader.follower1)" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.sh b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.sh
index 5141ff3ca..579152db0 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.sh
+++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.sh
@@ -14,5 +14,6 @@
β [1mrougail.leader.follower2[0m β The follower2. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "the follower1" β
+β β (rougail.leader.follower1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.gitlab.md
index 115b35302..8ce8f4196 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The leader.
**Default**:
β’ leader |
-| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower1.
**Default**:
β’ value |
-| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower2.
**Default**: the value of the variable "[the follower1](#rougail.leader.follower1)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The leader.
**Default**:
β’ leader |
+| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower1.
**Default**:
β’ value |
+| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower2.
**Default**: the value of the variable "[the follower1](#rougail.leader.follower1)" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.html b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.html
index 4af8e5c1a..6845f5e55 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.html
+++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.leader.leader string multiple standard mandatory unique | The leader. Default: |
-rougail.leader.follower1 string multiple standard mandatory unique | The follower1. Default: |
-rougail.leader.follower2 string multiple standard mandatory unique | The follower2. Default: the value of the variable "the follower1" |
+rougail.leader.leader string multiple standard mandatory unique | The leader. Default: |
+rougail.leader.follower1 string multiple standard mandatory unique | The follower1. Default: |
+rougail.leader.follower2 string multiple standard mandatory unique | The follower2. Default: the value of the variable "the follower1" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.json b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.json
index a509e675c..5d6f1d9b4 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.json
+++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.json
@@ -106,7 +106,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leader.follower1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.md b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.md
index 115b35302..8ce8f4196 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.md
+++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The leader.
**Default**:
β’ leader |
-| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower1.
**Default**:
β’ value |
-| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower2.
**Default**: the value of the variable "[the follower1](#rougail.leader.follower1)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The leader.
**Default**:
β’ leader |
+| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower1.
**Default**:
β’ value |
+| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | The follower2.
**Default**: the value of the variable "[the follower1](#rougail.leader.follower1)" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.sh
index a5fa209cb..30af8275d 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.sh
+++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.sh
@@ -12,4 +12,5 @@
β [1mrougail.leader.follower2[0m β The follower2. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "the follower1" β
+β β (rougail.leader.follower1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.adoc b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.adoc
index 837b16eaf..857c6b373 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.adoc
+++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.adoc
@@ -9,6 +9,6 @@
* value2
| **rougail.leadership.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (rougail.leadership.leader).
|====
diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.adoc b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.adoc
index 9f88f9969..f797d0c86 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.adoc
+++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.adoc
@@ -11,6 +11,6 @@
* value2
| **rougail.leadership.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (rougail.leadership.leader).
|====
diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.gitlab.md b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.gitlab.md
index 59cbc5410..1e0caa470 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------|
-| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leadership.leader)" (rougail.leadership.leader). |
diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.html b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.html
index b2ad9ea2c..b84c475cf 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.html
+++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.leadership.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leadership.follower string standard mandatory | A follower. Default: the value of the variable "a leader" |
+value2
+rougail.leadership.follower string standard mandatory | A follower. Default: the value of the variable "a leader" (rougail.leadership.leader). |
diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.md b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.md
index 8397a82c5..8f314b02d 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.md
+++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------|
-| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leadership.leader)" (rougail.leadership.leader). |
diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.sh b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.sh
index 18ed59eb6..7ed5ced5f 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.sh
+++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.sh
@@ -11,5 +11,6 @@
β [1mrougail.leadership.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "a leader" β
+β β (rougail.leadership.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.gitlab.md
index d6d33dd51..7fcc28bd2 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------|
-| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leadership.leader)" (rougail.leadership.leader). |
diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.html b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.html
index 88a64a20f..b0a35ce36 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.html
+++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
rougail.leadership.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leadership.follower string standard mandatory | A follower. Default: the value of the variable "a leader" |
+value2
+rougail.leadership.follower string standard mandatory | A follower. Default: the value of the variable "a leader" (rougail.leadership.leader). |
diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.json b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.json
index 77ed1b681..1d68134e0 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.json
+++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.json
@@ -72,7 +72,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leadership.leader",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.md b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.md
index d6d33dd51..7fcc28bd2 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.md
+++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------|
-| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leadership.leader)" (rougail.leadership.leader). |
diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.sh b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.sh
index a5ce6b06c..a2fe27f88 100644
--- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.sh
+++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.sh
@@ -9,4 +9,5 @@
β [1mrougail.leadership.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "a leader" β
+β β (rougail.leadership.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.adoc b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.adoc
index b2062451e..4d355e7ea 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.adoc
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.adoc
@@ -5,8 +5,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A first variable. +
**Default**:
-* the value of the variable "a second variable"
-* the value of the variable "a third variable"
+* the value of the variable "a second variable" (rougail.var2)
+* the value of the variable "a third variable" (rougail.var3)
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
**Default**: no
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.adoc b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.adoc
index 5304be11b..4ae9e7bf0 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.adoc
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.adoc
@@ -7,8 +7,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A first variable. +
**Default**:
-* the value of the variable "a second variable"
-* the value of the variable "a third variable"
+* the value of the variable "a second variable" (rougail.var2)
+* the value of the variable "a third variable" (rougail.var3)
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
**Default**: no
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.gitlab.md b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.gitlab.md
index 12c471b65..28bf65acb 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#rougail.var2)"
β’ the value of the variable "[a third variable](#rougail.var3)" |
-| **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 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#rougail.var2)" (rougail.var2)
β’ the value of the variable "[a third variable](#rougail.var3)" (rougail.var3) |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.html b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.html
index bfa4e666a..3a13841ad 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.html
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.html
@@ -5,8 +5,8 @@
| Variable | Description |
-rougail.var string multiple standard mandatory unique | A first variable. Default: - the value of the variable "a second variable"
-- the value of the variable "a third variable"
|
+rougail.var string multiple standard mandatory unique | A first variable. Default: - the value of the variable "a second variable" (rougail.var2)
+- the value of the variable "a third variable" (rougail.var3)
|
rougail.var2 string standard mandatory | A second variable. Default: no |
rougail.var3 string standard mandatory | A third variable. Default: yes |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.md b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.md
index c81a5d4bc..3a1954d59 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.md
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#rougail.var2)"
β’ the value of the variable "[a third variable](#rougail.var3)" |
-| **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 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#rougail.var2)" (rougail.var2)
β’ the value of the variable "[a third variable](#rougail.var3)" (rougail.var3) |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.sh b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.sh
index 71207d4c6..b0b07ada3 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.sh
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.sh
@@ -6,9 +6,9 @@
β [1mrougail.var[0m β A first variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
-β β second variable" β
+β β second variable" (rougail.var2) β
β β β’ the value of the variable "a third β
-β β variable" β
+β β variable" (rougail.var3) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: no β
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.gitlab.md
index d6b7b7126..a14805a29 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#rougail.var2)"
β’ the value of the variable "[a third variable](#rougail.var3)" |
-| **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 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#rougail.var2)" (rougail.var2)
β’ the value of the variable "[a third variable](#rougail.var3)" (rougail.var3) |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.html b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.html
index 84e53edee..a29ff3fbd 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.html
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.html
@@ -3,8 +3,8 @@
| Variable | Description |
-rougail.var string multiple standard mandatory unique | A first variable. Default: - the value of the variable "a second variable"
-- the value of the variable "a third variable"
|
+rougail.var string multiple standard mandatory unique | A first variable. Default: - the value of the variable "a second variable" (rougail.var2)
+- the value of the variable "a third variable" (rougail.var3)
|
rougail.var2 string standard mandatory | A second variable. Default: no |
rougail.var3 string standard mandatory | A third variable. Default: yes |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.json b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.json
index a7367cb57..4925c1bf2 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.json
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.json
@@ -36,7 +36,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.var2",
"type": "variable"
@@ -44,7 +44,7 @@
"description": "a second variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.var3",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.md b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.md
index d6b7b7126..a14805a29 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.md
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#rougail.var2)"
β’ the value of the variable "[a third variable](#rougail.var3)" |
-| **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 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#rougail.var2)" (rougail.var2)
β’ the value of the variable "[a third variable](#rougail.var3)" (rougail.var3) |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.sh b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.sh
index a2113b1a4..7fdd373b4 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.sh
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.sh
@@ -4,9 +4,9 @@
β [1mrougail.var[0m β A first variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
-β β second variable" β
+β β second variable" (rougail.var2) β
β β β’ the value of the variable "a third β
-β β variable" β
+β β variable" (rougail.var3) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: no β
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.adoc b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.adoc
index 0bfb41231..76dec24da 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.adoc
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.adoc
@@ -6,6 +6,6 @@
**Default**: no
| **rougail.fam1.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (rougail.var).
|====
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.adoc b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.adoc
index c803842c6..4387dc843 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.adoc
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: no
| **rougail.fam1.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (rougail.var).
|====
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.gitlab.md b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.gitlab.md
index ab1864b51..b245b83eb 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **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 "[a variable](#rougail.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **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 "[a variable](#rougail.var)" (rougail.var). |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.html b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.html
index f86d74499..6cc9009bf 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.html
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var string standard mandatory | A variable. Default: no |
-rougail.fam1.var string standard mandatory | A calculated variable. Default: the value of the variable "a variable" |
+rougail.var string standard mandatory | A variable. Default: no |
+rougail.fam1.var string standard mandatory | A calculated variable. Default: the value of the variable "a variable" (rougail.var). |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.md b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.md
index e5f5dc65d..a95d9f6db 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.md
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **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 "[a variable](#rougail.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **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 "[a variable](#rougail.var)" (rougail.var). |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.sh b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.sh
index 341ca4160..a11ffa9ba 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.sh
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.sh
@@ -8,6 +8,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.fam1.var[0m β A calculated variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (rougail.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.gitlab.md
index b5e44ea8b..8eded0488 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **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 "[a variable](#rougail.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **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 "[a variable](#rougail.var)" (rougail.var). |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.html b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.html
index 3a9e8754b..2227b580d 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.html
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var string standard mandatory | A variable. Default: no |
-rougail.fam1.var string standard mandatory | A calculated variable. Default: the value of the variable "a variable" |
+rougail.var string standard mandatory | A variable. Default: no |
+rougail.fam1.var string standard mandatory | A calculated variable. Default: the value of the variable "a variable" (rougail.var). |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.json b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.json
index 507ca815f..16de265c7 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.json
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.json
@@ -59,7 +59,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.md b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.md
index b5e44ea8b..8eded0488 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.md
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **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 "[a variable](#rougail.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **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 "[a variable](#rougail.var)" (rougail.var). |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.sh
index ab3637ceb..41d19b241 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.sh
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.sh
@@ -6,5 +6,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.fam1.var[0m β A calculated variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (rougail.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.adoc b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.adoc
index f9188d283..b3d11a4ae 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.adoc
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.adoc
@@ -6,6 +6,6 @@
**Default**: no
| **rougail.fam2.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (rougail.fam1.var).
|====
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.adoc b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.adoc
index b28ca935a..12eba7176 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.adoc
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: no
| **rougail.fam2.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (rougail.fam1.var).
|====
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.gitlab.md b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.gitlab.md
index 13c6ec25f..167fa9392 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
-| **rougail.fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **rougail.fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#rougail.fam1.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **rougail.fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **rougail.fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#rougail.fam1.var)" (rougail.fam1.var). |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.html b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.html
index 98c549779..d908d069c 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.html
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.fam1.var string standard mandatory | A variable. Default: no |
-rougail.fam2.var string standard mandatory | A variable. Default: the value of the variable "a variable" |
+rougail.fam1.var string standard mandatory | A variable. Default: no |
+rougail.fam2.var string standard mandatory | A variable. Default: the value of the variable "a variable" (rougail.fam1.var). |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.md b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.md
index 169831283..868b27530 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.md
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
-| **rougail.fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **rougail.fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#rougail.fam1.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **rougail.fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **rougail.fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#rougail.fam1.var)" (rougail.fam1.var). |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.sh b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.sh
index 8c4ee0cab..7f9b89f35 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.sh
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.sh
@@ -8,6 +8,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.fam2.var[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (rougail.fam1.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.gitlab.md
index 1a60aef1c..24b241c2c 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
-| **rougail.fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **rougail.fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#rougail.fam1.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **rougail.fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **rougail.fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#rougail.fam1.var)" (rougail.fam1.var). |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.html b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.html
index 03a8b64db..1bcec6e4b 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.html
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.fam1.var string standard mandatory | A variable. Default: no |
-rougail.fam2.var string standard mandatory | A variable. Default: the value of the variable "a variable" |
+rougail.fam1.var string standard mandatory | A variable. Default: no |
+rougail.fam2.var string standard mandatory | A variable. Default: the value of the variable "a variable" (rougail.fam1.var). |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.json b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.json
index d7f706ed7..0a254eb44 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.json
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.json
@@ -71,7 +71,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.fam1.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.md b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.md
index 1a60aef1c..24b241c2c 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.md
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
-| **rougail.fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **rougail.fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#rougail.fam1.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **rougail.fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **rougail.fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#rougail.fam1.var)" (rougail.fam1.var). |
diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.sh
index ec360063b..5fb2ae079 100644
--- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.sh
+++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.sh
@@ -6,5 +6,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.fam2.var[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (rougail.fam1.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc
index d4633abe4..f819d86fe 100644
--- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc
+++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc
@@ -11,6 +11,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A follower. +
**Default**:
-* the value of the variable "a leader"
+* the value of the variable "a leader" (rougail.leadership.leader)
|====
diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc
index 7c76b06b5..8e8760216 100644
--- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc
+++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc
@@ -13,6 +13,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A follower. +
**Default**:
-* the value of the variable "a leader"
+* the value of the variable "a leader" (rougail.leadership.leader)
|====
diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.gitlab.md b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.gitlab.md
index 5ab81f089..032999e7a 100644
--- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#rougail.leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#rougail.leadership.leader)" (rougail.leadership.leader) |
diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.html b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.html
index 286b3ac44..1c54dc822 100644
--- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.html
+++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.leadership.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leadership.follower string multiple standard mandatory unique | A follower. Default: - the value of the variable "a leader"
|
+value2
+rougail.leadership.follower string multiple standard mandatory unique | A follower. Default: - the value of the variable "a leader" (rougail.leadership.leader)
|
diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.md b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.md
index 96df2f628..9932a2daf 100644
--- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.md
+++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#rougail.leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#rougail.leadership.leader)" (rougail.leadership.leader) |
diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh
index 1d3705dfe..309a3f41b 100644
--- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh
+++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh
@@ -11,6 +11,6 @@
β [1mrougail.leadership.follower[0m β A follower. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
-β β leader" β
+β β leader" (rougail.leadership.leader) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 5f82f092a..cb09a147e 100644
--- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#rougail.leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#rougail.leadership.leader)" (rougail.leadership.leader) |
diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.html b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.html
index 6df215dd3..81864efe7 100644
--- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.html
+++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
rougail.leadership.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leadership.follower string multiple standard mandatory unique | A follower. Default: - the value of the variable "a leader"
|
+value2
+rougail.leadership.follower string multiple standard mandatory unique | A follower. Default: - the value of the variable "a leader" (rougail.leadership.leader)
|
diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.json b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.json
index 9bffd1004..27a47f55d 100644
--- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.json
+++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.json
@@ -79,7 +79,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.leadership.leader",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.md
index 5f82f092a..cb09a147e 100644
--- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.md
+++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#rougail.leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#rougail.leadership.leader)" (rougail.leadership.leader) |
diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.sh
index 483a71d0a..9fee29504 100644
--- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.sh
+++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.sh
@@ -9,5 +9,5 @@
β [1mrougail.leadership.follower[0m β A follower. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
-β β leader" β
+β β leader" (rougail.leadership.leader) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc
index 3f2f0d129..22e4d3a40 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc
@@ -1,14 +1,14 @@
[cols="1a,1a"]
|====
-| Variable | Description
+| Variable | Description
| **rougail.leader.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
* a
-* b
+* b
| **rougail.leader.follower** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
| **rougail.variable** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | **Default**: the value of the variable "follower"
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | **Default**: the value of the variable "follower" (rougail.leader.follower).
|====
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc
index b8bc6c9fb..f153a422b 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc
@@ -2,15 +2,15 @@
[cols="1a,1a"]
|====
-| Variable | Description
+| Variable | Description
| **rougail.leader.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
* a
-* b
+* b
| **rougail.leader.follower** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
| **rougail.variable** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | **Default**: the value of the variable "follower"
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | **Default**: the value of the variable "follower" (rougail.leader.follower).
|====
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.gitlab.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.gitlab.md
index 84b258261..16ccdd886 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
-| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#rougail.leader.follower)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
+| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#rougail.leader.follower)" (rougail.leader.follower). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.html b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.html
index 6033706b5..964fc9b60 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.html
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.leader.leader string multiple standard mandatory unique | Default: |
-rougail.leader.follower string standard | |
-rougail.variable string multiple standard unique | Default: the value of the variable "follower" |
+b
+rougail.leader.follower string standard | |
+rougail.variable string multiple standard unique | Default: the value of the variable "follower" (rougail.leader.follower). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.md
index d02249ab8..f10a0dc96 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
-| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#rougail.leader.follower)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
+| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#rougail.leader.follower)" (rougail.leader.follower). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh
index bb8ab8d85..7e502cb35 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh
@@ -12,6 +12,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β [1mDefault[0m: the value of the variable β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "follower" β
-β [1;7munique [0m β β
+β [1;7munique [0m β (rougail.leader.follower). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index e78dd0269..c69a7f506 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
-| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#rougail.leader.follower)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
+| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#rougail.leader.follower)" (rougail.leader.follower). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.html b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.html
index 20461cf0c..0778d3c74 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.html
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.leader.leader string multiple standard mandatory unique | Default: |
-rougail.leader.follower string standard | |
-rougail.variable string multiple standard unique | Default: the value of the variable "follower" |
+b
+rougail.leader.follower string standard | |
+rougail.variable string multiple standard unique | Default: the value of the variable "follower" (rougail.leader.follower). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.json b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.json
index 24bc2654d..631eb9442 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.json
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.json
@@ -79,7 +79,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leader.follower",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.md
index e78dd0269..c69a7f506 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
-| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
-| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#rougail.leader.follower)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
+| **rougail.leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
+| **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#rougail.leader.follower)" (rougail.leader.follower). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh
index d1f5a6cea..f52d5826e 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh
@@ -10,5 +10,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.variable[0m β [1mDefault[0m: the value of the variable β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "follower" β
-β [1;7munique [0m β β
+β [1;7munique [0m β (rougail.leader.follower). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.adoc
index 3c4f3dff9..3d416c28f 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.adoc
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.adoc
@@ -15,6 +15,6 @@
**Default**: val21
| **rougail.calculate** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A calculated variable. +
-**Default**: the value of the variable "a follower"
+**Default**: the value of the variable "a follower" (rougail.leader.follower1).
|====
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.adoc
index c4d33203d..508c8a36a 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.adoc
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.adoc
@@ -17,6 +17,6 @@
**Default**: val21
| **rougail.calculate** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A calculated variable. +
-**Default**: the value of the variable "a follower"
+**Default**: the value of the variable "a follower" (rougail.leader.follower1).
|====
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.gitlab.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.gitlab.md
index a99219821..531693a97 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#rougail.leader.follower1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#rougail.leader.follower1)" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.html b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.html
index 7fcd2dbd2..ce80ea16e 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.html
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.html
@@ -2,14 +2,14 @@
-| Variable | Description |
+| Variable | Description |
rougail.leader.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leader.follower1 string standard mandatory | A follower. Default: val11 |
-rougail.leader.follower2 string standard mandatory | An other follower. Default: val21 |
-rougail.calculate string multiple standard mandatory | A calculated variable. Default: the value of the variable "a follower" |
+value2
+rougail.leader.follower1 string standard mandatory | A follower. Default: val11 |
+rougail.leader.follower2 string standard mandatory | An other follower. Default: val21 |
+rougail.calculate string multiple standard mandatory | A calculated variable. Default: the value of the variable "a follower" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.md
index 3f0d5491b..db7ff1237 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#rougail.leader.follower1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#rougail.leader.follower1)" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.sh
index e5d7f4f88..b9402b66a 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.sh
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.sh
@@ -17,5 +17,6 @@
β [1mrougail.calculate[0m β A calculated variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m β "a follower" β
+β β (rougail.leader.follower1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.gitlab.md
index c17cf48a8..06992f2d9 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#rougail.leader.follower1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#rougail.leader.follower1)" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.html b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.html
index dbe73477b..a9f69bcf4 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.html
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.html
@@ -1,13 +1,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.leader.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leader.follower1 string standard mandatory | A follower. Default: val11 |
-rougail.leader.follower2 string standard mandatory | An other follower. Default: val21 |
-rougail.calculate string multiple standard mandatory | A calculated variable. Default: the value of the variable "a follower" |
+value2
+rougail.leader.follower1 string standard mandatory | A follower. Default: val11 |
+rougail.leader.follower2 string standard mandatory | An other follower. Default: val21 |
+rougail.calculate string multiple standard mandatory | A calculated variable. Default: the value of the variable "a follower" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.json b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.json
index f1509c0c1..0f7a65536 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.json
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.json
@@ -114,7 +114,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leader.follower1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.md
index c17cf48a8..06992f2d9 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#rougail.leader.follower1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#rougail.leader.follower1)" (rougail.leader.follower1). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.sh
index f0a9aff14..2cdd2aafb 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.sh
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.sh
@@ -15,4 +15,5 @@
β [1mrougail.calculate[0m β A calculated variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m β "a follower" β
+β β (rougail.leader.follower1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.adoc
index ef8d13a8d..2897e482d 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.adoc
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.adoc
@@ -15,6 +15,6 @@
**Default**: val21
| **rougail.calculate** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A calculated variable. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (rougail.leader.leader).
|====
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.adoc
index 414b4b192..371ba790a 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.adoc
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.adoc
@@ -17,6 +17,6 @@
**Default**: val21
| **rougail.calculate** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A calculated variable. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (rougail.leader.leader).
|====
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.gitlab.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.gitlab.md
index bea6682fc..d8787c362 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#rougail.leader.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#rougail.leader.leader)" (rougail.leader.leader). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.html b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.html
index 419fdcf11..82ec6757c 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.html
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.html
@@ -2,14 +2,14 @@
-| Variable | Description |
+| Variable | Description |
rougail.leader.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leader.follower1 string standard mandatory | A follower. Default: val11 |
-rougail.leader.follower2 string standard mandatory | An other follower. Default: val21 |
-rougail.calculate string multiple standard mandatory unique | A calculated variable. Default: the value of the variable "a leader" |
+value2
+rougail.leader.follower1 string standard mandatory | A follower. Default: val11 |
+rougail.leader.follower2 string standard mandatory | An other follower. Default: val21 |
+rougail.calculate string multiple standard mandatory unique | A calculated variable. Default: the value of the variable "a leader" (rougail.leader.leader). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.md
index 6e267565d..b8d96ad6b 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#rougail.leader.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#rougail.leader.leader)" (rougail.leader.leader). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.sh
index f9d81c435..d9ab0735f 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.sh
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.sh
@@ -16,6 +16,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.calculate[0m β A calculated variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "a leader" β
+β [1;7mmandatory [0m [1;7m unique [0m β "a leader" (rougail.leader.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.gitlab.md
index 515f4e287..2fc17d0a9 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#rougail.leader.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#rougail.leader.leader)" (rougail.leader.leader). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.html b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.html
index ea38a89d0..7bca5f3ee 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.html
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.html
@@ -1,13 +1,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.leader.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leader.follower1 string standard mandatory | A follower. Default: val11 |
-rougail.leader.follower2 string standard mandatory | An other follower. Default: val21 |
-rougail.calculate string multiple standard mandatory unique | A calculated variable. Default: the value of the variable "a leader" |
+value2
+rougail.leader.follower1 string standard mandatory | A follower. Default: val11 |
+rougail.leader.follower2 string standard mandatory | An other follower. Default: val21 |
+rougail.calculate string multiple standard mandatory unique | A calculated variable. Default: the value of the variable "a leader" (rougail.leader.leader). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.json b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.json
index 21dbc3917..c795696c4 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.json
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.json
@@ -120,7 +120,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leader.leader",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.md
index 515f4e287..2fc17d0a9 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#rougail.leader.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#rougail.leader.leader)" (rougail.leader.leader). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.sh
index ab028d5f0..9d61c7270 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.sh
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.sh
@@ -14,5 +14,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.calculate[0m β A calculated variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "a leader" β
+β [1;7mmandatory [0m [1;7m unique [0m β "a leader" (rougail.leader.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.adoc
index 146904ef1..e6776cb7d 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.adoc
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.adoc
@@ -9,7 +9,7 @@
* value2
| **rougail.leader.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A leader. +
-**Default**: the value of the variable "a calculated variable"
+**Default**: the value of the variable "a calculated variable" (rougail.calculate).
| **rougail.leader.follower1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
**Default**: val11
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.adoc
index 8c50af56d..f78dcd088 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.adoc
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.adoc
@@ -11,7 +11,7 @@
* value2
| **rougail.leader.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A leader. +
-**Default**: the value of the variable "a calculated variable"
+**Default**: the value of the variable "a calculated variable" (rougail.calculate).
| **rougail.leader.follower1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
**Default**: val11
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.gitlab.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.gitlab.md
index a03e3b1d2..ef2d64587 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#rougail.calculate)" |
-| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
-| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#rougail.calculate)" (rougail.calculate). |
+| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
+| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.html b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.html
index d0946bfe0..af1251c9e 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.html
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.html
@@ -2,14 +2,14 @@
-| Variable | Description |
+| Variable | Description |
rougail.calculate string multiple standard mandatory unique | A calculated variable. Default: |
-rougail.leader.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a calculated variable" |
-rougail.leader.follower1 string standard mandatory | A follower. Default: val11 |
-rougail.leader.follower2 string standard mandatory | An other follower. Default: val21 |
+value2
+rougail.leader.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a calculated variable" (rougail.calculate). |
+rougail.leader.follower1 string standard mandatory | A follower. Default: val11 |
+rougail.leader.follower2 string standard mandatory | An other follower. Default: val21 |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.md
index dbf4d1fb6..96bbb5bda 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#rougail.calculate)" |
-| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
-| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#rougail.calculate)" (rougail.calculate). |
+| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
+| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.sh
index 72041427c..32d33a8de 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.sh
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.sh
@@ -11,6 +11,7 @@
β [1mrougail.leader.leader[0m β A leader. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "a calculated variable" β
+β β (rougail.calculate). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.leader.follower1[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: val11 β
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.gitlab.md
index a6346b6f8..be80fe49b 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#rougail.calculate)" |
-| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
-| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#rougail.calculate)" (rougail.calculate). |
+| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
+| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.html b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.html
index 3165b19bf..0756325f3 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.html
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.html
@@ -1,13 +1,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.calculate string multiple standard mandatory unique | A calculated variable. Default: |
-rougail.leader.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a calculated variable" |
-rougail.leader.follower1 string standard mandatory | A follower. Default: val11 |
-rougail.leader.follower2 string standard mandatory | An other follower. Default: val21 |
+value2
+rougail.leader.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a calculated variable" (rougail.calculate). |
+rougail.leader.follower1 string standard mandatory | A follower. Default: val11 |
+rougail.leader.follower2 string standard mandatory | An other follower. Default: val21 |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.json b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.json
index ab4c4ceec..6051cb44f 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.json
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.json
@@ -78,7 +78,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.calculate",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.md
index a6346b6f8..be80fe49b 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
-| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#rougail.calculate)" |
-| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
-| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **rougail.calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#rougail.calculate)" (rougail.calculate). |
+| **rougail.leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
+| **rougail.leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.sh
index b611dda28..ba1b5735b 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.sh
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.sh
@@ -9,6 +9,7 @@
β [1mrougail.leader.leader[0m β A leader. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "a calculated variable" β
+β β (rougail.calculate). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.leader.follower1[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: val11 β
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.adoc
index 091416ec7..ca9c3bd5e 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.adoc
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.adoc
@@ -11,7 +11,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower.
| **rougail.leadership_2.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A leader. +
-**Default**: the value of the variable "a follower"
+**Default**: the value of the variable "a follower" (rougail.leadership_1.follower).
| **rougail.leadership_2.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
**Default**: val
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc
index 54d7fca68..de45094dc 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc
@@ -13,7 +13,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower.
| **rougail.leadership_2.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A leader. +
-**Default**: the value of the variable "a follower"
+**Default**: the value of the variable "a follower" (rougail.leadership_1.follower).
| **rougail.leadership_2.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
**Default**: val
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.gitlab.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.gitlab.md
index 6246ba83d..d43b645c2 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#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 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#rougail.leadership_1.follower)" (rougail.leadership_1.follower). |
+| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.html b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.html
index f1925f7dd..5a0790482 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.html
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.html
@@ -2,14 +2,14 @@
-| Variable | Description |
+| Variable | Description |
rougail.leadership_1.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leadership_1.follower string basic mandatory | A follower. |
-rougail.leadership_2.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a follower" |
-rougail.leadership_2.follower string standard mandatory | A follower. Default: val |
+value2
+rougail.leadership_1.follower string basic mandatory | A follower. |
+rougail.leadership_2.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a follower" (rougail.leadership_1.follower). |
+rougail.leadership_2.follower string standard mandatory | A follower. Default: val |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.md
index 3d6126f66..1db467856 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#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 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#rougail.leadership_1.follower)" (rougail.leadership_1.follower). |
+| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh
index 756e9853c..ce7a57d6c 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh
@@ -14,6 +14,7 @@
β [1mrougail.leadership_2.leader[0m β A leader. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "a follower" β
+β β (rougail.leadership_1.follower). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.leadership_2.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: val β
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.gitlab.md
index b74294a4a..02c65bb09 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#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 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#rougail.leadership_1.follower)" (rougail.leadership_1.follower). |
+| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.html b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.html
index 415c2fd72..8b9c45aea 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.html
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.html
@@ -1,13 +1,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.leadership_1.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leadership_1.follower string basic mandatory | A follower. |
-rougail.leadership_2.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a follower" |
-rougail.leadership_2.follower string standard mandatory | A follower. Default: val |
+value2
+rougail.leadership_1.follower string basic mandatory | A follower. |
+rougail.leadership_2.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a follower" (rougail.leadership_1.follower). |
+rougail.leadership_2.follower string standard mandatory | A follower. Default: val |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.json b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.json
index a3ca9b3b5..3f8a9ca2f 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.json
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.json
@@ -109,7 +109,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leadership_1.follower",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.md
index b74294a4a..02c65bb09 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#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 |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#rougail.leadership_1.follower)" (rougail.leadership_1.follower). |
+| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.sh
index 3940ebf5b..ea844150c 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.sh
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.sh
@@ -12,6 +12,7 @@
β [1mrougail.leadership_2.leader[0m β A leader. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "a follower" β
+β β (rougail.leadership_1.follower). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.leadership_2.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: val β
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc
index 727e98cee..4a54d2a5d 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc
@@ -17,6 +17,6 @@
* value2
| **rougail.leadership_2.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A follower. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (rougail.leadership_1.leader).
|====
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc
index acab73655..4e23919e4 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc
@@ -19,6 +19,6 @@
* value2
| **rougail.leadership_2.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A follower. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (rougail.leadership_1.leader).
|====
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.gitlab.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.gitlab.md
index 952a570ed..d7221f79e 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#rougail.leadership_1.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#rougail.leadership_1.leader)" (rougail.leadership_1.leader). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.html b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.html
index 1cc4ec9c7..65943f8fd 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.html
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.html
@@ -2,15 +2,15 @@
-| Variable | Description |
+| Variable | Description |
rougail.leadership_1.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leadership_1.follower string basic mandatory | A follower. |
+value2
+rougail.leadership_1.follower string basic mandatory | A follower. |
rougail.leadership_2.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leadership_2.follower string multiple standard mandatory unique | A follower. Default: the value of the variable "a leader" |
+value2
+rougail.leadership_2.follower string multiple standard mandatory unique | A follower. Default: the value of the variable "a leader" (rougail.leadership_1.leader). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.md
index c2ab742af..74190b6e1 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#rougail.leadership_1.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#rougail.leadership_1.leader)" (rougail.leadership_1.leader). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh
index ed5743aa4..89a4c6a61 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh
@@ -19,5 +19,6 @@
β [1mrougail.leadership_2.follower[0m β A follower. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "a leader" β
+β β (rougail.leadership_1.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index 5d2b9a562..f1bb0ef0b 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#rougail.leadership_1.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#rougail.leadership_1.leader)" (rougail.leadership_1.leader). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.html b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.html
index 6a890484b..dd883e2c5 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.html
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.html
@@ -1,14 +1,14 @@
-| Variable | Description |
+| Variable | Description |
rougail.leadership_1.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leadership_1.follower string basic mandatory | A follower. |
+value2
+rougail.leadership_1.follower string basic mandatory | A follower. |
rougail.leadership_2.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leadership_2.follower string multiple standard mandatory unique | A follower. Default: the value of the variable "a leader" |
+value2
+rougail.leadership_2.follower string multiple standard mandatory unique | A follower. Default: the value of the variable "a leader" (rougail.leadership_1.leader). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.json b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.json
index d71e06aee..890a1fa3d 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.json
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.json
@@ -139,7 +139,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leadership_1.leader",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.md
index 5d2b9a562..f1bb0ef0b 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.md
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#rougail.leadership_1.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **rougail.leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#rougail.leadership_1.leader)" (rougail.leadership_1.leader). |
diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh
index 07479b303..e612aeba5 100644
--- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh
+++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh
@@ -17,4 +17,5 @@
β [1mrougail.leadership_2.follower[0m β A follower. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "a leader" β
+β β (rougail.leadership_1.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.adoc b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.adoc
index cb1c69c2e..ac6b07f9f 100644
--- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.adoc
+++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.adoc
@@ -9,7 +9,7 @@
* b
| **rougail.leader.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A follower. +
-**Default**: the value of the variable "a leader" +
-**Disabled**: if the value of "a leader" is "a".
+**Default**: the value of the variable "a leader" (rougail.leader.leader). +
+**Disabled**: if the value of "a leader" (rougail.leader.leader) is "a".
|====
diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.adoc b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.adoc
index 46d76c753..dbfd0d197 100644
--- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.adoc
+++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.adoc
@@ -11,7 +11,7 @@
* b
| **rougail.leader.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A follower. +
-**Default**: the value of the variable "a leader" +
-**Disabled**: if the value of "a leader" is "a".
+**Default**: the value of the variable "a leader" (rougail.leader.leader). +
+**Disabled**: if the value of "a leader" (rougail.leader.leader) is "a".
|====
diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.gitlab.md b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.gitlab.md
index fcd1e36dd..aa9d55d06 100644
--- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leader.leader)"
**Disabled**: if the value of "[a leader](#rougail.leader.leader)" is "a". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leader.leader)" (rougail.leader.leader).
**Disabled**: if the value of "[a leader](#rougail.leader.leader)" (rougail.leader.leader) is "a". |
diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.html b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.html
index b8e5905d9..2fd50f5d1 100644
--- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.html
+++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.leader.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leader.follower string standard mandatory disabled | A follower. Default: the value of the variable "a leader" Disabled: if the value of "a leader" is "a". |
+b
+rougail.leader.follower string standard mandatory disabled | A follower. Default: the value of the variable "a leader" (rougail.leader.leader). Disabled: if the value of "a leader" (rougail.leader.leader) is "a". |
diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.md b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.md
index 5587d7b07..0bcc9cb68 100644
--- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.md
+++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leader.leader)"
**Disabled**: if the value of "[a leader](#rougail.leader.leader)" is "a". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leader.leader)" (rougail.leader.leader).
**Disabled**: if the value of "[a leader](#rougail.leader.leader)" (rougail.leader.leader) is "a". |
diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.sh b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.sh
index 7dfa97de6..db801c0e8 100644
--- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.sh
+++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.sh
@@ -10,8 +10,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.leader.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;3;7mdisabled[0m[1;7m [0m β "a leader" β
+β [1;3;7mdisabled[0m[1;7m [0m β "a leader" (rougail.leader.leader). β
β β [1mDisabled[0m: if the value of "a leader" β
-β β is "a". β
+β β (rougail.leader.leader) is "a". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.gitlab.md
index fdb79cc09..bc905b4d7 100644
--- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.gitlab.md
+++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leader.leader)"
**Disabled**: if the value of "[a leader](#rougail.leader.leader)" is "a". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leader.leader)" (rougail.leader.leader).
**Disabled**: if the value of "[a leader](#rougail.leader.leader)" (rougail.leader.leader) is "a". |
diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.html b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.html
index 4c5184e01..19e93506d 100644
--- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.html
+++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
rougail.leader.leader string multiple standard mandatory unique | A leader. Default: |
-rougail.leader.follower string standard mandatory disabled | A follower. Default: the value of the variable "a leader" Disabled: if the value of "a leader" is "a". |
+b
+rougail.leader.follower string standard mandatory disabled | A follower. Default: the value of the variable "a leader" (rougail.leader.leader). Disabled: if the value of "a leader" (rougail.leader.leader) is "a". |
diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.json b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.json
index 36c48392f..2aa684f6b 100644
--- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.json
+++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.json
@@ -72,7 +72,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "description": "if the value of \"{0}\" is \"a\".",
+ "description": "if the value of {0} is \"a\".",
"variables": [
{
"path": "rougail.leader.leader",
@@ -87,7 +87,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.leader.leader",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.md b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.md
index fdb79cc09..bc905b4d7 100644
--- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.md
+++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leader.leader)"
**Disabled**: if the value of "[a leader](#rougail.leader.leader)" is "a". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#rougail.leader.leader)" (rougail.leader.leader).
**Disabled**: if the value of "[a leader](#rougail.leader.leader)" (rougail.leader.leader) is "a". |
diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.sh
index 890ad7931..ea006ecc4 100644
--- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.sh
+++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.sh
@@ -8,7 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.leader.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;3;7mdisabled[0m[1;7m [0m β "a leader" β
+β [1;3;7mdisabled[0m[1;7m [0m β "a leader" (rougail.leader.leader). β
β β [1mDisabled[0m: if the value of "a leader" β
-β β is "a". β
+β β (rougail.leader.leader) is "a". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic.json b/tests/results/test_namespace_without_family/60_0family_dynamic.json
index 4bd6ec1a2..7828de91f 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.json b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.json
index 19fdb3d2d..3843eedc6 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.json
@@ -62,7 +62,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.json b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.json
index 3c0887ee6..d16d8d274 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.json
@@ -56,7 +56,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.json b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.json
index a874c2e5f..b5fae7240 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.json
@@ -62,7 +62,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.json b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.json
index a7e918e23..84ea564ee 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.json
@@ -56,7 +56,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.json b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.json
index e84d5ac08..a3f689ddd 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.json b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.json
index fdb76f23d..ee3436994 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_empty.json b/tests/results/test_namespace_without_family/60_0family_dynamic_empty.json
index ca0a82b86..180258ef3 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_empty.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_empty.json
@@ -47,7 +47,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.json b/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.json
index eca8c34fc..762c4139e 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.adoc
index d1b90e9a1..11ad14fa5 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.adoc
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.adoc
@@ -13,6 +13,6 @@
**Default**: val
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: get the value of "a variable inside dynamic family".
+**Default**: get the value of "a variable inside dynamic family" (rougail.dyn__1__.var).
|====
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.adoc
index 39d2f1563..fc2035fc3 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.adoc
@@ -15,6 +15,6 @@
**Default**: val
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: get the value of "a variable inside dynamic family".
+**Default**: get the value of "a variable inside dynamic family" (rougail.dyn__1__.var).
|====
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.gitlab.md
index d12ddc952..3183cdb65 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ 1
β’ 2 |
-| **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 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ 1
β’ 2 |
+| **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 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)" (rougail.dyn*1*.var). |
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.html b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.html
index 6fb9b64e6..beecfc9f9 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.html
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.var integer multiple standard unique | A suffix variable. Examples: |
-rougail.dyn1.var rougail.dyn2.var string standard mandatory | A variable inside dynamic family. Default: val |
-rougail.var2 string standard mandatory | A variable. Default: get the value of "a variable inside dynamic family". |
+2
+rougail.dyn1.var rougail.dyn2.var string standard mandatory | A variable inside dynamic family. Default: val |
+rougail.var2 string standard mandatory | A variable. Default: get the value of "a variable inside dynamic family" (rougail.dyn1.var). |
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.md b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.md
index 0385d92aa..732b1e20b 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.md
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ 1
β’ 2 |
-| **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 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ 1
β’ 2 |
+| **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 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)" (rougail.dyn*1*.var). |
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.sh
index 059e87b7c..2d569ed1a 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.sh
@@ -14,6 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: get the value of "a β
-β β variable inside dynamic family". β
+β β variable inside dynamic family" β
+β β (rougail.dyn[3m1[0m.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.gitlab.md
index fa72ca96c..3f7a8ac33 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ 1
β’ 2 |
-| **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 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ 1
β’ 2 |
+| **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 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)" (rougail.dyn*1*.var). |
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.html b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.html
index 6d9569887..a3cc67204 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.html
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.var integer multiple standard unique | A suffix variable. Examples: |
-rougail.dyn1.var rougail.dyn2.var string standard mandatory | A variable inside dynamic family. Default: val |
-rougail.var2 string standard mandatory | A variable. Default: get the value of "a variable inside dynamic family". |
+2
+rougail.dyn1.var rougail.dyn2.var string standard mandatory | A variable inside dynamic family. Default: val |
+rougail.var2 string standard mandatory | A variable. Default: get the value of "a variable inside dynamic family" (rougail.dyn1.var). |
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.json b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.json
index 86d03c5c5..ef4953514 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -114,7 +114,7 @@
"default": {
"name": "Default",
"values": {
- "description": "get the value of \"{0}\".",
+ "description": "get the value of {0}.",
"variables": [
{
"path": "rougail.dyn{{ identifier }}.var",
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.md b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.md
index fa72ca96c..3f7a8ac33 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.md
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ 1
β’ 2 |
-| **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 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ 1
β’ 2 |
+| **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 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)" (rougail.dyn*1*.var). |
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.sh
index 737ac2933..2b711b44f 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.sh
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.sh
@@ -12,5 +12,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: get the value of "a β
-β β variable inside dynamic family". β
+β β variable inside dynamic family" β
+β β (rougail.dyn[3m1[0m.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.adoc
index 681ac7c14..cac8e3b7b 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.adoc
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.adoc
@@ -13,6 +13,6 @@
**Default**: val
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: get the value of "a variable inside dynamic family".
+**Default**: get the value of "a variable inside dynamic family" (rougail.dyn__1__.var).
|====
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.adoc
index 08bee2208..0c474b246 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.adoc
@@ -15,6 +15,6 @@
**Default**: val
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: get the value of "a variable inside dynamic family".
+**Default**: get the value of "a variable inside dynamic family" (rougail.dyn__1__.var).
|====
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.gitlab.md
index 58b3ba2d5..4bafeeb05 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ 1
β’ 2 |
-| **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 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ 1
β’ 2 |
+| **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 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)" (rougail.dyn*1*.var). |
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.html b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.html
index 350a5bfc4..c975a1145 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.html
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.var integer multiple standard mandatory unique | A suffix variable. Default: |
-rougail.dyn1.var rougail.dyn2.var string standard mandatory | A variable inside dynamic family. Default: val |
-rougail.var2 string standard mandatory | A variable. Default: get the value of "a variable inside dynamic family". |
+2
+rougail.dyn1.var rougail.dyn2.var string standard mandatory | A variable inside dynamic family. Default: val |
+rougail.var2 string standard mandatory | A variable. Default: get the value of "a variable inside dynamic family" (rougail.dyn1.var). |
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.md b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.md
index b35cd09a6..592cb556e 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.md
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ 1
β’ 2 |
-| **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 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ 1
β’ 2 |
+| **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 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)" (rougail.dyn*1*.var). |
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.sh
index b2809a907..0fb31a8a3 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.sh
@@ -14,6 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: get the value of "a β
-β β variable inside dynamic family". β
+β β variable inside dynamic family" β
+β β (rougail.dyn[3m1[0m.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.gitlab.md
index d15cd16f9..893bd1f1f 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ 1
β’ 2 |
-| **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 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ 1
β’ 2 |
+| **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 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)" (rougail.dyn*1*.var). |
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.html b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.html
index db0ec5d9a..bd69bcee4 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.html
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.var integer multiple standard mandatory unique | A suffix variable. Default: |
-rougail.dyn1.var rougail.dyn2.var string standard mandatory | A variable inside dynamic family. Default: val |
-rougail.var2 string standard mandatory | A variable. Default: get the value of "a variable inside dynamic family". |
+2
+rougail.dyn1.var rougail.dyn2.var string standard mandatory | A variable inside dynamic family. Default: val |
+rougail.var2 string standard mandatory | A variable. Default: get the value of "a variable inside dynamic family" (rougail.dyn1.var). |
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.json b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.json
index e7252d254..06c5ff0e9 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -120,7 +120,7 @@
"default": {
"name": "Default",
"values": {
- "description": "get the value of \"{0}\".",
+ "description": "get the value of {0}.",
"variables": [
{
"path": "rougail.dyn{{ identifier }}.var",
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.md b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.md
index d15cd16f9..893bd1f1f 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.md
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ 1
β’ 2 |
-| **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 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ 1
β’ 2 |
+| **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 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: get the value of "[a variable inside dynamic family](#rougail.dyn:::identifier:::.var)" (rougail.dyn*1*.var). |
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.sh
index 08add8d09..f37a313c5 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.sh
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.sh
@@ -12,5 +12,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: get the value of "a β
-β β variable inside dynamic family". β
+β β variable inside dynamic family" β
+β β (rougail.dyn[3m1[0m.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.json b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.json
index 90f307aa7..48c337199 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.json b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.json
index 4b97ec9f8..f5b6a371a 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_test.json b/tests/results/test_namespace_without_family/60_0family_dynamic_test.json
index 18ff20bf4..3b3ed9771 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_test.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_test.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.json b/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.json
index a4431ec91..8c4232369 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.json b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.json
index f125f9c8e..6033509c8 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.json
@@ -53,7 +53,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.json b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.json
index f47bbc05b..bc566195e 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.json b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.json
index bb3530a2f..a17433ce5 100644
--- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.json
+++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc
index 4b1581243..622f9d40f 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc
@@ -12,6 +12,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of "with a variable".
+**Default**: the value of "with a variable" (rougail.dyn__val1__.family.var).
|====
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc
index b1de9d4aa..3c6eefa63 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc
@@ -14,6 +14,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of "with a variable".
+**Default**: the value of "with a variable" (rougail.dyn__val1__.family.var).
|====
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.gitlab.md
index a439a4a79..d4ba7eb3a 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#rougail.dyn:::identifier:::.family.var)". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#rougail.dyn:::identifier:::.family.var)" (rougail.dyn*val1*.family.var). |
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.html b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.html
index f68bcca8e..8d69a496a 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.html
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A suffix variable. Default: |
-rougail.dynval1.family.var rougail.dynval2.family.var string basic mandatory | With a variable. |
-rougail.var2 string standard mandatory | A second variable. Default: the value of "with a variable". |
+val2
+rougail.dynval1.family.var rougail.dynval2.family.var string basic mandatory | With a variable. |
+rougail.var2 string standard mandatory | A second variable. Default: the value of "with a variable" (rougail.dynval1.family.var). |
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.md b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.md
index 9b8c4e95e..4c801f871 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.md
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#rougail.dyn:::identifier:::.family.var)". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#rougail.dyn:::identifier:::.family.var)" (rougail.dyn*val1*.family.var). |
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh
index 2fb3cf7a7..8130e78b6 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh
@@ -14,6 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of "with a β
-β β variable". β
+β β variable" β
+β β (rougail.dyn[3mval1[0m.family.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 6bd8ceae2..535e7c8e5 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#rougail.dyn:::identifier:::.family.var)". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#rougail.dyn:::identifier:::.family.var)" (rougail.dyn*val1*.family.var). |
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.html b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.html
index 09494f8d7..c0c20ac75 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.html
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A suffix variable. Default: |
-rougail.dynval1.family.var rougail.dynval2.family.var string basic mandatory | With a variable. |
-rougail.var2 string standard mandatory | A second variable. Default: the value of "with a variable". |
+val2
+rougail.dynval1.family.var rougail.dynval2.family.var string basic mandatory | With a variable. |
+rougail.var2 string standard mandatory | A second variable. Default: the value of "with a variable" (rougail.dynval1.family.var). |
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.json b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.json
index 52d5d13b8..a38732212 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.json
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -136,7 +136,7 @@
"default": {
"name": "Default",
"values": {
- "description": "the value of \"{0}\".",
+ "description": "the value of {0}.",
"variables": [
{
"path": "rougail.dyn{{ identifier }}.family.var",
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.md
index 6bd8ceae2..535e7c8e5 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.md
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#rougail.dyn:::identifier:::.family.var)". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#rougail.dyn:::identifier:::.family.var)" (rougail.dyn*val1*.family.var). |
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.sh
index 1b923f1d3..81db85186 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.sh
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.sh
@@ -12,5 +12,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of "with a β
-β β variable". β
+β β variable" β
+β β (rougail.dyn[3mval1[0m.family.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.json b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.json
index 19c6aed9f..8199bf69a 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.json
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.json b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.json
index c9bb2f15c..88681e7a7 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.json
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.json b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.json
index 959d5725b..93559ea12 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.json
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.json b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.json
index 439d5cd9c..bee9b372e 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.json
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.json b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.json
index 6ff94275d..826cddc64 100644
--- a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.json
+++ b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.json
index e17656294..e600fc3b6 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.json
@@ -89,7 +89,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.json
index 72b9ed82d..8ea3c38f7 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.json
@@ -83,7 +83,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.adoc
index 35097c877..e7f58ed46 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.adoc
@@ -6,12 +6,12 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable for __val1__ or __val2__.
| **rougail.var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
-**Disabled**: when the variable "a dynamic variable for __val1__" has the value "val".
+**Disabled**: when the variable "a dynamic variable for __val1__" (rougail.dyn__val1__.var) has the value "val".
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A new variable. +
**Default**:
-* the value of the variable "a dynamic variable for __val1__"
-* the value of the variable "a dynamic variable for __val2__"
+* the value of the variable "a dynamic variable for __val1__" (rougail.dyn__val1__.var)
+* the value of the variable "a dynamic variable for __val2__" (rougail.dyn__val2__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.adoc
index eb47163ac..a8eceffcd 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.adoc
@@ -8,12 +8,12 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable for __val1__ or __val2__.
| **rougail.var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
-**Disabled**: when the variable "a dynamic variable for __val1__" has the value "val".
+**Disabled**: when the variable "a dynamic variable for __val1__" (rougail.dyn__val1__.var) has the value "val".
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A new variable. +
**Default**:
-* the value of the variable "a dynamic variable for __val1__"
-* the value of the variable "a dynamic variable for __val2__"
+* the value of the variable "a dynamic variable for __val1__" (rougail.dyn__val1__.var)
+* the value of the variable "a dynamic variable for __val2__" (rougail.dyn__val2__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.gitlab.md
index b338ec34e..ceca14f7f 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" has the value "val". |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[a dynamic variable for *val2*](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) has the value "val". |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[a dynamic variable for *val2*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.html
index 9e49e5c74..38a8702ac 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
-rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable for val1 or val2. |
-rougail.var1 string basic mandatory disabled | A new variable. Disabled: when the variable "a dynamic variable for val1" has the value "val". |
-rougail.var2 string multiple standard mandatory | A new variable. Default: - the value of the variable "a dynamic variable for val1"
-- the value of the variable "a dynamic variable for val2"
|
+rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable for val1 or val2. |
+rougail.var1 string basic mandatory disabled | A new variable. Disabled: when the variable "a dynamic variable for val1" (rougail.dynval1.var) has the value "val". |
+rougail.var2 string multiple standard mandatory | A new variable. Default: - the value of the variable "a dynamic variable for val1" (rougail.dynval1.var)
+- the value of the variable "a dynamic variable for val2" (rougail.dynval2.var)
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.md
index 5dff7e7b0..1c8772f69 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" has the value "val". |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[a dynamic variable for *val2*](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) has the value "val". |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[a dynamic variable for *val2*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.sh
index 116cc65dd..8c55e721e 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.changelog.sh
@@ -9,14 +9,17 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var1[0m β A new variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable for [3mval1[0m" has the β
-β β value "val". β
+β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable for [3mval1[0m" β
+β β (rougail.dyn[3mval1[0m.var) has the value β
+β β "val". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A new variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m β β’ the value of the variable "a β
β β dynamic variable for [3mval1[0m" β
+β β (rougail.dyn[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β dynamic variable for [3mval2[0m" β
+β β (rougail.dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.gitlab.md
index e70fb8f2d..92ebccdfb 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" has the value "val". |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[a dynamic variable for *val2*](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) has the value "val". |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[a dynamic variable for *val2*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.html
index 14f12b73c..63a37526a 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
-rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable for val1 or val2. |
-rougail.var1 string basic mandatory disabled | A new variable. Disabled: when the variable "a dynamic variable for val1" has the value "val". |
-rougail.var2 string multiple standard mandatory | A new variable. Default: - the value of the variable "a dynamic variable for val1"
-- the value of the variable "a dynamic variable for val2"
|
+rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable for val1 or val2. |
+rougail.var1 string basic mandatory disabled | A new variable. Disabled: when the variable "a dynamic variable for val1" (rougail.dynval1.var) has the value "val". |
+rougail.var2 string multiple standard mandatory | A new variable. Default: - the value of the variable "a dynamic variable for val1" (rougail.dynval1.var)
+- the value of the variable "a dynamic variable for val2" (rougail.dynval2.var)
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.json
index dde562019..56eda37bb 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.json
@@ -80,7 +80,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"val\".",
+ "message": "when the variable {0} has the value \"val\".",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -113,7 +113,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -123,7 +123,7 @@
"description": "a dynamic variable for {{ identifier }}"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.md
index e70fb8f2d..92ebccdfb 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" has the value "val". |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[a dynamic variable for *val2*](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) has the value "val". |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[a dynamic variable for *val2*](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.sh
index 42f3a7e24..e74b1ca5c 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_description.sh
@@ -7,13 +7,16 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var1[0m β A new variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable for [3mval1[0m" has the β
-β β value "val". β
+β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable for [3mval1[0m" β
+β β (rougail.dyn[3mval1[0m.var) has the value β
+β β "val". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A new variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m β β’ the value of the variable "a β
β β dynamic variable for [3mval1[0m" β
+β β (rougail.dyn[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β dynamic variable for [3mval2[0m" β
+β β (rougail.dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.adoc
index 582c0a2d4..bd5135ea0 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.adoc
@@ -18,7 +18,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val2__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.adoc
index dcbdc33db..4462c0774 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.adoc
@@ -20,7 +20,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val2__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.gitlab.md
index 02226579d..aa0a3bf32 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **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**: the value of the identifier. |
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **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**: the value of the identifier. |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.html
index 440fc972a..75af72c53 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.html
@@ -9,8 +9,8 @@
val2
rougail.var2 string standard mandatory | A suffix variable2. Default: val1 |
rougail.dynval1.var rougail.dynval2.var string standard mandatory | A dynamic variable. Default: the value of the identifier. |
-rougail.var3 string standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+rougail.var3 string standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable" (rougail.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval2.var)
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.md
index 5eeffad2c..b34a7e5ac 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **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**: the value of the identifier. |
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **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**: the value of the identifier. |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.sh
index fcaad3852..ac9cbb881 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.changelog.sh
@@ -19,7 +19,9 @@
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.gitlab.md
index 42f4f08bc..af599b734 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **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**: the value of the identifier. |
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **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**: the value of the identifier. |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.html
index d534d6f5a..ff7c7c5da 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.html
@@ -7,8 +7,8 @@
val2
rougail.var2 string standard mandatory | A suffix variable2. Default: val1 |
rougail.dynval1.var rougail.dynval2.var string standard mandatory | A dynamic variable. Default: the value of the identifier. |
-rougail.var3 string standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+rougail.var3 string standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable" (rougail.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval2.var)
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.json
index bd18d1651..9f4e2f62e 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.json
@@ -82,7 +82,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -140,7 +140,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -150,7 +150,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.md
index 42f4f08bc..af599b734 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **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**: the value of the identifier. |
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **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**: the value of the identifier. |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.sh
index f251047fb..8bbbc9768 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier.sh
@@ -17,6 +17,8 @@
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.adoc
index 7316717d2..45d68321d 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.adoc
@@ -20,7 +20,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val2__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.adoc
index 643790ac4..4a38c3dca 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.adoc
@@ -22,7 +22,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val2__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.gitlab.md
index ed5118526..9e386810e 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.html
index f3b5a1a83..a4633994a 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.html
@@ -9,8 +9,8 @@
val2
rougail.var2 string standard mandatory | A suffix variable2. Default: val1 |
rougail.dynval1.var rougail.dynval2.var string multiple standard mandatory unique | A dynamic variable. Default: - the value of the identifier
|
-rougail.var3 string multiple standard mandatory unique | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+rougail.var3 string multiple standard mandatory unique | A variable calculated. Default: - the value of the variable "A dynamic variable" (rougail.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval2.var)
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.md
index f4c6b1161..423fdd0e4 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.sh
index 59a880158..85ec28c63 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.changelog.sh
@@ -20,7 +20,9 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.gitlab.md
index 7f7198c12..eb7806507 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.html
index f6d422e37..43cb74487 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.html
@@ -7,8 +7,8 @@
val2
rougail.var2 string standard mandatory | A suffix variable2. Default: val1 |
rougail.dynval1.var rougail.dynval2.var string multiple standard mandatory unique | A dynamic variable. Default: - the value of the identifier
|
-rougail.var3 string multiple standard mandatory unique | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+rougail.var3 string multiple standard mandatory unique | A variable calculated. Default: - the value of the variable "A dynamic variable" (rougail.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval2.var)
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.json
index 7804716be..4cd09f7fd 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.json
@@ -82,7 +82,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -155,7 +155,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -165,7 +165,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.md
index 7f7198c12..eb7806507 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
-| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
+| **rougail.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.sh
index 46963d5e7..a99c488c0 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_identifier_multi.sh
@@ -18,6 +18,8 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.adoc
index 2ed0256b9..6f33dd436 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.adoc
@@ -12,6 +12,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable"
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.adoc
index 4684785a5..87b5a8af4 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.adoc
@@ -14,6 +14,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable"
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.gitlab.md
index 832229a2f..c7e03ff2d 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.html
index cecf11afb..691738735 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A suffix variable. Default: |
-rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" |
+val2
+rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.md
index fb3c17d06..3f07ba5bc 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.sh
index 40100cf18..20b45babc 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.sh
@@ -15,5 +15,6 @@
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.gitlab.md
index c37b1d16b..7b57ed2a6 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.html
index 134656b6b..9379fa02f 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A suffix variable. Default: |
-rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" |
+val2
+rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.json
index 81db67f41..86cf0b434 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.json
@@ -62,7 +62,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -115,7 +115,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.md
index c37b1d16b..7b57ed2a6 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.sh
index 02732668b..ce0bc93a9 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.sh
@@ -13,4 +13,5 @@
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.json
index 64672b39c..f894e28b9 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.json
index d21325712..13eda9cf7 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.adoc
index 880f291b9..f1177f9db 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.adoc
@@ -12,6 +12,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var) if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.adoc
index c35c786b0..1a7cf0b10 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.adoc
@@ -14,6 +14,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var) if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.gitlab.md
index ed3ab65ed..feba8acc1 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.html
index b76b5812a..655dbe24a 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard unique | A suffix variable. Examples: |
-rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+val2
+rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.md
index 6c40f32a2..ecc0ad54c 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.sh
index 905a1ddc2..75b1fbcbb 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.sh
@@ -14,7 +14,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
+β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) if it is β
β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.gitlab.md
index 688e2dbbf..87f08ae06 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.html
index 26833ba46..0e1644dfd 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard unique | A suffix variable. Examples: |
-rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+val2
+rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.json
index b504926e3..6b27a8a3c 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.json
@@ -56,7 +56,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -109,7 +109,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.md
index 688e2dbbf..87f08ae06 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.sh
index 2a76ed0f1..27c849a79 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.sh
@@ -12,6 +12,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
+β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) if it is β
β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.adoc
index 47e2f7bb9..53fc59c6e 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.adoc
@@ -8,6 +8,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var) if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.adoc
index 59464ec0d..ed7875570 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.adoc
@@ -10,6 +10,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var) if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.gitlab.md
index a55b405e0..70ea30b08 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Example**: val1 |
-| **rougail.dyn*val1*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Example**: val1 |
+| **rougail.dyn*val1*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.html
index 4709b2082..f8c58a79b 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string multiple standard unique | A suffix variable. Example: val1 |
-rougail.dynval1.var string basic mandatory | A dynamic variable. |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+rougail.var1 string multiple standard unique | A suffix variable. Example: val1 |
+rougail.dynval1.var string basic mandatory | A dynamic variable. |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.md
index 334240fd5..889203a43 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Example**: val1 |
-| **rougail.dyn*val1*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Example**: val1 |
+| **rougail.dyn*val1*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.sh
index 9a9ac56e3..a97eed597 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.sh
@@ -12,7 +12,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
+β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) if it is β
β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
index 690790e6c..70fecddce 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Example**: val1 |
-| **rougail.dyn*val1*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Example**: val1 |
+| **rougail.dyn*val1*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.html
index dc80bd226..31c5aa037 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var1 string multiple standard unique | A suffix variable. Example: val1 |
-rougail.dynval1.var string basic mandatory | A dynamic variable. |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+rougail.var1 string multiple standard unique | A suffix variable. Example: val1 |
+rougail.dynval1.var string basic mandatory | A dynamic variable. |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.json
index 25cd93c63..21235db53 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -100,7 +100,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.md
index 690790e6c..70fecddce 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Example**: val1 |
-| **rougail.dyn*val1*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Example**: val1 |
+| **rougail.dyn*val1*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.sh
index 1a1d366f2..b71e1541c 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.sh
@@ -10,6 +10,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
+β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) if it is β
β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.adoc
index b2df82920..7ea66b14a 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.adoc
@@ -3,7 +3,7 @@
| Variable | Description
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var) if it is defined
| **rougail.var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | A suffix variable. +
**Examples**:
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.adoc
index da7636364..b7237d26a 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.adoc
@@ -5,7 +5,7 @@
| Variable | Description
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var) if it is defined
| **rougail.var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | A suffix variable. +
**Examples**:
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.gitlab.md
index 8c3ce919e..3e35c4035 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.html
index 4c4fd0fbd..9f70e72ad 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) if it is defined |
rougail.var1 string multiple standard unique | A suffix variable. Examples: |
-rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
+val2
+rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.md
index 5860d86b6..772c913bf 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.sh
index 2a4fb9028..89290492b 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.sh
@@ -5,7 +5,8 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
+β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) if it is β
β β defined β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var1[0m β A suffix variable. β
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
index 8bdf2b2fc..c79c00270 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
@@ -1,6 +1,6 @@
-| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.html
index 9ae5a8757..cc7f6d124 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) if it is defined |
rougail.var1 string multiple standard unique | A suffix variable. Examples: |
-rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
+val2
+rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.json
index 8b1dc03a9..f049f684a 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.json
@@ -29,7 +29,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -85,7 +85,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.md
index 8bdf2b2fc..c79c00270 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.md
@@ -1,6 +1,6 @@
-| 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 "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.sh
index 4b11c695a..069882539 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.sh
@@ -3,7 +3,8 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
+β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) if it is β
β β defined β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var1[0m β A suffix variable. β
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.json
index 793a1db71..9ecd303b9 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.json
index ac7fc8641..abf190c49 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.adoc
index 2ed0256b9..6f33dd436 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.adoc
@@ -12,6 +12,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable"
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.adoc
index 4684785a5..87b5a8af4 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.adoc
@@ -14,6 +14,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable"
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.gitlab.md
index 832229a2f..c7e03ff2d 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.html
index cecf11afb..691738735 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A suffix variable. Default: |
-rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" |
+val2
+rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.md
index fb3c17d06..3f07ba5bc 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.sh
index 40100cf18..20b45babc 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.sh
@@ -15,5 +15,6 @@
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.gitlab.md
index c37b1d16b..7b57ed2a6 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.html
index 134656b6b..9379fa02f 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard mandatory unique | A suffix variable. Default: |
-rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" |
+val2
+rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.json
index 81db67f41..86cf0b434 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.json
@@ -62,7 +62,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -115,7 +115,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.md
index c37b1d16b..7b57ed2a6 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.sh
index 02732668b..ce0bc93a9 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.sh
@@ -13,4 +13,5 @@
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.adoc
index df1722298..76cd97b55 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.adoc
@@ -9,7 +9,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
**Disabled**:
-* when the variable "A dynamic variable" has the value "val1".
-* when the variable "A dynamic variable" has the value "val1".
+* when the variable "A dynamic variable" (rougail.dyn__val1__.var1) has the value "val1".
+* when the variable "A dynamic variable" (rougail.dyn__val2__.var1) has the value "val1".
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc
index 39930c4ce..87e583824 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc
@@ -11,7 +11,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
**Disabled**:
-* when the variable "A dynamic variable" has the value "val1".
-* when the variable "A dynamic variable" has the value "val1".
+* when the variable "A dynamic variable" (rougail.dyn__val1__.var1) has the value "val1".
+* when the variable "A dynamic variable" (rougail.dyn__val2__.var1) has the value "val1".
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.gitlab.md
index a77dbfbc1..c016ce4f1 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.dyn*val1*.var2**
**rougail.dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1".
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.dyn*val1*.var2**
**rougail.dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val1*.var1) has the value "val1".
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val2*.var1) has the value "val1". |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.html
index 977e62188..8d0df8a84 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.html
@@ -6,8 +6,10 @@
rougail.dynval1.var1 rougail.dynval2.var1 string basic mandatory | A dynamic variable. |
-rougail.dynval1.var2 rougail.dynval2.var2 string basic mandatory disabled | A new variable. Disabled: - when the variable "A dynamic variable" has the value "val1".
-- when the variable "A dynamic variable" has the value "val1".
|
+rougail.dynval1.var2 rougail.dynval2.var2 string basic mandatory disabled | A new variable. Disabled: - when the variable "A dynamic variable" (rougail.dynval1.var1) has the value
+"val1".
+- when the variable "A dynamic variable" (rougail.dynval2.var1) has the value
+"val1".
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.md
index d9b097a30..473ac31f8 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.dyn*val1*.var2**
**rougail.dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1".
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.dyn*val1*.var2**
**rougail.dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val1*.var1) has the value "val1".
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val2*.var1) has the value "val1". |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh
index 3c33c7e79..9b7e98bcb 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh
@@ -10,8 +10,10 @@
β [1mrougail.dyn[0m[1;3mval1[0m[1m.var2[0m β A new variable. β
β [1mrougail.dyn[0m[1;3mval2[0m[1m.var2[0m β [1mDisabled[0m: β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β β’ when the variable "A dynamic β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "val1". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.dyn[3mval1[0m.var1) has β
+β β the value "val1". β
β β β’ when the variable "A dynamic β
-β β variable" has the value "val1". β
+β β variable" (rougail.dyn[3mval2[0m.var1) has β
+β β the value "val1". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 9ea711ca2..afbeee86d 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.dyn*val1*.var2**
**rougail.dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1".
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.dyn*val1*.var2**
**rougail.dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val1*.var1) has the value "val1".
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val2*.var1) has the value "val1". |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.html
index 9c9ba753b..163b85071 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.html
@@ -4,8 +4,10 @@
rougail.dynval1.var1 rougail.dynval2.var1 string basic mandatory | A dynamic variable. |
-rougail.dynval1.var2 rougail.dynval2.var2 string basic mandatory disabled | A new variable. Disabled: - when the variable "A dynamic variable" has the value "val1".
-- when the variable "A dynamic variable" has the value "val1".
|
+rougail.dynval1.var2 rougail.dynval2.var2 string basic mandatory disabled | A new variable. Disabled: - when the variable "A dynamic variable" (rougail.dynval1.var1) has the value
+"val1".
+- when the variable "A dynamic variable" (rougail.dynval2.var1) has the value
+"val1".
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.json
index 3833b72b2..3fe52cda4 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.json
@@ -79,7 +79,7 @@
"access_control": true,
"annotation": [
{
- "message": "when the variable \"{0}\" has the value \"val1\".",
+ "message": "when the variable {0} has the value \"val1\".",
"path": {
"path": "rougail.dyn{{ identifier }}.var1",
"identifiers": [
@@ -89,7 +89,7 @@
"description": "A dynamic variable"
},
{
- "message": "when the variable \"{0}\" has the value \"val1\".",
+ "message": "when the variable {0} has the value \"val1\".",
"path": {
"path": "rougail.dyn{{ identifier }}.var1",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.md
index 9ea711ca2..afbeee86d 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.dyn*val1*.var2**
**rougail.dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1".
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.dyn*val1*.var2**
**rougail.dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val1*.var1) has the value "val1".
β’ when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val2*.var1) has the value "val1". |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.sh
index 40eb076a0..a98388a6b 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.sh
@@ -8,7 +8,9 @@
β [1mrougail.dyn[0m[1;3mval1[0m[1m.var2[0m β A new variable. β
β [1mrougail.dyn[0m[1;3mval2[0m[1m.var2[0m β [1mDisabled[0m: β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β β’ when the variable "A dynamic β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "val1". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (rougail.dyn[3mval1[0m.var1) has β
+β β the value "val1". β
β β β’ when the variable "A dynamic β
-β β variable" has the value "val1". β
+β β variable" (rougail.dyn[3mval2[0m.var1) has β
+β β the value "val1". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc
index ef1032982..d4fc4d54b 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc
@@ -6,6 +6,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
-**Disabled**: when the variable "A dynamic variable" has the value "val1".
+**Disabled**: when the variable "A dynamic variable" (rougail.dyn__val1__.var1) has the value "val1".
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc
index 371beff8e..30eaecfc8 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc
@@ -8,6 +8,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
-**Disabled**: when the variable "A dynamic variable" has the value "val1".
+**Disabled**: when the variable "A dynamic variable" (rougail.dyn__val1__.var1) has the value "val1".
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.gitlab.md
index 5136a2393..377303ea4 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val1*.var1) has the value "val1". |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.html
index 54d90aa25..45f1bb90c 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-rougail.dynval1.var1 rougail.dynval2.var1 string basic mandatory | A dynamic variable. |
-rougail.var2 string basic mandatory disabled | A new variable. Disabled: when the variable "A dynamic variable" has the value "val1". |
+rougail.dynval1.var1 rougail.dynval2.var1 string basic mandatory | A dynamic variable. |
+rougail.var2 string basic mandatory disabled | A new variable. Disabled: when the variable "A dynamic variable" (rougail.dynval1.var1) has the value "val1". |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.md
index d084555af..15427b3f9 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val1*.var1) has the value "val1". |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh
index 35ab46984..200cba0b3 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh
@@ -9,7 +9,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A new variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "A β
-β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable" has the value β
+β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var1) has the value β
β β "val1". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 19abe4b31..80f282269 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val1*.var1) has the value "val1". |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.html
index f350b701d..7eab1225b 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-rougail.dynval1.var1 rougail.dynval2.var1 string basic mandatory | A dynamic variable. |
-rougail.var2 string basic mandatory disabled | A new variable. Disabled: when the variable "A dynamic variable" has the value "val1". |
+rougail.dynval1.var1 rougail.dynval2.var1 string basic mandatory | A dynamic variable. |
+rougail.var2 string basic mandatory disabled | A new variable. Disabled: when the variable "A dynamic variable" (rougail.dynval1.var1) has the value "val1". |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.json
index 562774f55..eb86a4563 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.json
@@ -80,7 +80,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"val1\".",
+ "message": "when the variable {0} has the value \"val1\".",
"path": {
"path": "rougail.dyn{{ identifier }}.var1",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.md
index 19abe4b31..80f282269 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var1)" (rougail.dyn*val1*.var1) has the value "val1". |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.sh
index ef8d6a947..e3f92aa0b 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.sh
@@ -7,6 +7,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A new variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "A β
-β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable" has the value β
+β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var1) has the value β
β β "val1". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.adoc
index 880f291b9..f1177f9db 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.adoc
@@ -12,6 +12,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var) if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc
index c35c786b0..1a7cf0b10 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc
@@ -14,6 +14,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (rougail.dyn__val1__.var) if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.gitlab.md
index ed3ab65ed..feba8acc1 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.html
index b76b5812a..655dbe24a 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard unique | A suffix variable. Examples: |
-rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+val2
+rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.md
index 6c40f32a2..ecc0ad54c 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh
index 905a1ddc2..75b1fbcbb 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh
@@ -14,7 +14,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
+β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) if it is β
β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.gitlab.md
index 688e2dbbf..87f08ae06 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.html b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.html
index 26833ba46..0e1644dfd 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.var1 string multiple standard unique | A suffix variable. Examples: |
-rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
-rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+val2
+rougail.dynval1.var rougail.dynval2.var string basic mandatory | A dynamic variable. |
+rougail.var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (rougail.dynval1.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.json b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.json
index b504926e3..6b27a8a3c 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.json
@@ -56,7 +56,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -109,7 +109,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.md
index 688e2dbbf..87f08ae06 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.var)" (rougail.dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.sh
index 2a76ed0f1..27c849a79 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.sh
@@ -12,6 +12,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
+β β "A dynamic variable" β
+β β (rougail.dyn[3mval1[0m.var) if it is β
β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.adoc
new file mode 100644
index 000000000..0ba18ae8d
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.adoc
@@ -0,0 +1,41 @@
+[cols="1a,1a"]
+|====
+| Variable | Description
+| **rougail.var** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A suffix variable. +
+**Default**:
+
+* val1
+* val2
+
+**Examples**:
+
+* val1
+* val2
+* val3
+* val4
+| **rougail.__val1___dyn.var1** +
+**rougail.__val2___dyn.var1** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 1. +
+**Default**: the value of the identifier.
+| **rougail.__val1___dyn.var2** +
+**rougail.__val2___dyn.var2** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 2. +
+**Default**:
+
+* the value of the variable "a variable 1" (rougail.__val1___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val2___dyn.var1)
+| **rougail.__val1___dyn.var3** +
+**rougail.__val2___dyn.var3** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 3. +
+**Default**:
+
+* the value of the variable "a variable 1" (rougail.__val1___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val2___dyn.var1)
+| **rougail.__val1___dyn.var4** +
+**rougail.__val2___dyn.var4** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable 4. +
+**Default**: the value of the variable "a variable 1" (rougail.__val4___dyn.var1) +
+**Disabled**: depends on a calculation.
+|====
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.adoc
new file mode 100644
index 000000000..b75cfe7f9
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.adoc
@@ -0,0 +1,43 @@
+== New variables
+
+[cols="1a,1a"]
+|====
+| Variable | Description
+| **rougail.var** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A suffix variable. +
+**Default**:
+
+* val1
+* val2
+
+**Examples**:
+
+* val1
+* val2
+* val3
+* val4
+| **rougail.__val1___dyn.var1** +
+**rougail.__val2___dyn.var1** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 1. +
+**Default**: the value of the identifier.
+| **rougail.__val1___dyn.var2** +
+**rougail.__val2___dyn.var2** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 2. +
+**Default**:
+
+* the value of the variable "a variable 1" (rougail.__val1___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val2___dyn.var1)
+| **rougail.__val1___dyn.var3** +
+**rougail.__val2___dyn.var3** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 3. +
+**Default**:
+
+* the value of the variable "a variable 1" (rougail.__val1___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val2___dyn.var1)
+| **rougail.__val1___dyn.var4** +
+**rougail.__val2___dyn.var4** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable 4. +
+**Default**: the value of the variable "a variable 1" (rougail.__val4___dyn.var1) +
+**Disabled**: depends on a calculation.
+|====
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.gitlab.md
new file mode 100644
index 000000000..57fd7eb28
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.gitlab.md
@@ -0,0 +1,12 @@
+New variables
+
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2
**Examples**:
β’ val1
β’ val2
β’ val3
β’ val4 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **rougail.*val1*_dyn.var3**
**rougail.*val2*_dyn.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 3.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (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` *`disabled`* | A variable 4.
**Default**: the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1)
**Disabled**: depends on a calculation. |
+
+
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.html
new file mode 100644
index 000000000..0aca694d5
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.html
@@ -0,0 +1,21 @@
+New variables
+
+
+
+| Variable | Description |
+
+
+rougail.var string multiple standard mandatory unique | A suffix variable. Default: Examples: |
+rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | A variable 1. Default: the value of the identifier. |
+rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | A variable 2. Default: - the value of the variable "a variable 1" (rougail.val1_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | A variable 3. Default: - the value of the variable "a variable 1" (rougail.val1_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory disabled | A variable 4. Default: the value of the variable "a variable 1" (rougail.val4_dyn.var1) Disabled: depends on a calculation. |
+
+
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.md
new file mode 100644
index 000000000..999b5638d
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.md
@@ -0,0 +1,10 @@
+# New variables
+
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2
**Examples**:
β’ val1
β’ val2
β’ val3
β’ val4 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **rougail.*val1*_dyn.var3**
**rougail.*val2*_dyn.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 3.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (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` *`disabled`* | A variable 4.
**Default**: the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1)
**Disabled**: depends on a calculation. |
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.sh
new file mode 100644
index 000000000..1a8a45e8e
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.changelog.sh
@@ -0,0 +1,40 @@
+[1;4;96mNew variables[0m
+
+βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
+β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
+β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
+β [1mrougail.var[0m β A suffix variable. β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
+β [1;7mmandatory [0m [1;7m unique [0m β β’ val1 β
+β β β’ val2 β
+β β [1mExamples[0m: β
+β β β’ val1 β
+β β β’ val2 β
+β β β’ val3 β
+β β β’ val4 β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var1[0m β A variable 1. β
+β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var1[0m β [1mDefault[0m: the value of the β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β identifier. β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var2[0m β A variable 2. β
+β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var2[0m β [1mDefault[0m: β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "a β
+β β variable 1" (rougail.[3mval1[0m_dyn.var1) β
+β β β’ the value of the variable "a β
+β β variable 1" (rougail.[3mval2[0m_dyn.var1) β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var3[0m β A variable 3. β
+β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var3[0m β [1mDefault[0m: β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "a β
+β β variable 1" (rougail.[3mval1[0m_dyn.var1) β
+β β β’ the value of the variable "a β
+β β variable 1" (rougail.[3mval2[0m_dyn.var1) β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var4[0m β A variable 4. β
+β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var4[0m β [1mDefault[0m: the value of the variable β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β "a variable 1" β
+β [1;3;7mdisabled[0m[1;7m [0m β (rougail.[3mval4[0m_dyn.var1) β
+β β [1mDisabled[0m: depends on a calculation. β
+βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.gitlab.md
new file mode 100644
index 000000000..092f86a0f
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.gitlab.md
@@ -0,0 +1,8 @@
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2
**Examples**:
β’ val1
β’ val2
β’ val3
β’ val4 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **rougail.*val1*_dyn.var3**
**rougail.*val2*_dyn.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 3.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (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` *`disabled`* | A variable 4.
**Default**: the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1)
**Disabled**: depends on a calculation. |
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.html b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.html
new file mode 100644
index 000000000..2703b9d13
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.html
@@ -0,0 +1,19 @@
+
+
+| Variable | Description |
+
+
+rougail.var string multiple standard mandatory unique | A suffix variable. Default: Examples: |
+rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | A variable 1. Default: the value of the identifier. |
+rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | A variable 2. Default: - the value of the variable "a variable 1" (rougail.val1_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | A variable 3. Default: - the value of the variable "a variable 1" (rougail.val1_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory disabled | A variable 4. Default: the value of the variable "a variable 1" (rougail.val4_dyn.var1) Disabled: depends on a calculation. |
+
+
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.json b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.json
new file mode 100644
index 000000000..5d927f395
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.json
@@ -0,0 +1,259 @@
+{
+ "rougail": {
+ "type": "namespace",
+ "informations": {
+ "path": "rougail",
+ "name": "rougail",
+ "description": "Rougail",
+ "properties": [],
+ "mode": "standard",
+ "help": [
+ "This family is a namespace"
+ ]
+ },
+ "children": {
+ "var": {
+ "path": "rougail.var",
+ "name": "var",
+ "description": "A suffix variable.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "mandatory",
+ "ori_name": "mandatory",
+ "access_control": false
+ },
+ {
+ "type": "property",
+ "name": "unique",
+ "ori_name": "unique",
+ "access_control": false
+ }
+ ],
+ "mode": "standard",
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": [
+ "val1",
+ "val2"
+ ]
+ },
+ "variable_type": "string",
+ "multiple": true,
+ "examples": {
+ "name": "Examples",
+ "values": [
+ "val1",
+ "val2",
+ "val3",
+ "val4"
+ ]
+ }
+ },
+ "{{ identifier }}_dyn": {
+ "type": "dynamic",
+ "informations": {
+ "path": "rougail.{{ identifier }}_dyn",
+ "name": "{{ identifier }}_dyn",
+ "description": "A dynamic family",
+ "properties": [],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1"
+ ],
+ [
+ "val2"
+ ]
+ ],
+ "help": [
+ "This family builds families dynamically"
+ ],
+ "identifier": [
+ {
+ "message": "the value of the variable {0}.",
+ "path": {
+ "path": "rougail.var",
+ "type": "variable"
+ },
+ "description": "a suffix variable"
+ }
+ ]
+ },
+ "children": {
+ "var1": {
+ "path": "rougail.{{ identifier }}_dyn.var1",
+ "name": "var1",
+ "description": "A variable 1.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "mandatory",
+ "ori_name": "mandatory",
+ "access_control": false
+ }
+ ],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1"
+ ],
+ [
+ "val2"
+ ]
+ ],
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": "the value of the identifier."
+ },
+ "variable_type": "string"
+ },
+ "var2": {
+ "path": "rougail.{{ identifier }}_dyn.var2",
+ "name": "var2",
+ "description": "A variable 2.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "mandatory",
+ "ori_name": "mandatory",
+ "access_control": false
+ }
+ ],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1"
+ ],
+ [
+ "val2"
+ ]
+ ],
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": [
+ {
+ "message": "the value of the variable {0}",
+ "path": {
+ "path": "rougail.{{ identifier }}_dyn.var1",
+ "identifiers": [
+ "val1"
+ ]
+ },
+ "description": "a variable 1"
+ },
+ {
+ "message": "the value of the variable {0}",
+ "path": {
+ "path": "rougail.{{ identifier }}_dyn.var1",
+ "identifiers": [
+ "val2"
+ ]
+ },
+ "description": "a variable 1"
+ }
+ ]
+ },
+ "variable_type": "string"
+ },
+ "var3": {
+ "path": "rougail.{{ identifier }}_dyn.var3",
+ "name": "var3",
+ "description": "A variable 3.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "mandatory",
+ "ori_name": "mandatory",
+ "access_control": false
+ }
+ ],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1"
+ ],
+ [
+ "val2"
+ ]
+ ],
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": [
+ {
+ "message": "the value of the variable {0}",
+ "path": {
+ "path": "rougail.{{ identifier }}_dyn.var1",
+ "identifiers": [
+ "val1"
+ ]
+ },
+ "description": "a variable 1"
+ },
+ {
+ "message": "the value of the variable {0}",
+ "path": {
+ "path": "rougail.{{ identifier }}_dyn.var1",
+ "identifiers": [
+ "val2"
+ ]
+ },
+ "description": "a variable 1"
+ }
+ ]
+ },
+ "variable_type": "string"
+ },
+ "var4": {
+ "path": "rougail.{{ identifier }}_dyn.var4",
+ "name": "var4",
+ "description": "A variable 4.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "mandatory",
+ "ori_name": "mandatory",
+ "access_control": false
+ },
+ {
+ "type": "property",
+ "name": "disabled",
+ "ori_name": "disabled",
+ "access_control": true,
+ "annotation": "depends on a calculation."
+ }
+ ],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1"
+ ],
+ [
+ "val2"
+ ]
+ ],
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": {
+ "message": "the value of the variable {0}",
+ "path": {
+ "path": "rougail.{{ identifier }}_dyn.var1",
+ "identifiers": [
+ "val4"
+ ]
+ },
+ "description": "a variable 1"
+ }
+ },
+ "variable_type": "string"
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.md b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.md
new file mode 100644
index 000000000..092f86a0f
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.md
@@ -0,0 +1,8 @@
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2
**Examples**:
β’ val1
β’ val2
β’ val3
β’ val4 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **rougail.*val1*_dyn.var3**
**rougail.*val2*_dyn.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 3.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (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` *`disabled`* | A variable 4.
**Default**: the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1)
**Disabled**: depends on a calculation. |
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.sh
new file mode 100644
index 000000000..ccbced7c6
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix.sh
@@ -0,0 +1,37 @@
+βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
+β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
+β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
+β [1mrougail.var[0m β A suffix variable. β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
+β [1;7mmandatory [0m [1;7m unique [0m β β’ val1 β
+β β β’ val2 β
+β β [1mExamples[0m: β
+β β β’ val1 β
+β β β’ val2 β
+β β β’ val3 β
+β β β’ val4 β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var1[0m β A variable 1. β
+β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var1[0m β [1mDefault[0m: the value of the β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β identifier. β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var2[0m β A variable 2. β
+β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var2[0m β [1mDefault[0m: β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "a β
+β β variable 1" (rougail.[3mval1[0m_dyn.var1) β
+β β β’ the value of the variable "a β
+β β variable 1" (rougail.[3mval2[0m_dyn.var1) β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var3[0m β A variable 3. β
+β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var3[0m β [1mDefault[0m: β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "a β
+β β variable 1" (rougail.[3mval1[0m_dyn.var1) β
+β β β’ the value of the variable "a β
+β β variable 1" (rougail.[3mval2[0m_dyn.var1) β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var4[0m β A variable 4. β
+β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var4[0m β [1mDefault[0m: the value of the variable β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β "a variable 1" β
+β [1;3;7mdisabled[0m[1;7m [0m β (rougail.[3mval4[0m_dyn.var1) β
+β β [1mDisabled[0m: depends on a calculation. β
+βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.adoc
index d8da65684..c824dd537 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.adoc
@@ -22,10 +22,10 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 2. +
**Default**:
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
+* the value of the variable "a variable 1" (rougail.__val1___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val2___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val3___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val4___dyn.var1)
| **rougail.__val1___dyn.var3** +
**rougail.__val2___dyn.var3** +
**rougail.__val3___dyn.var3** +
@@ -33,16 +33,16 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 3. +
**Default**:
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
+* the value of the variable "a variable 1" (rougail.__val1___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val2___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val3___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val4___dyn.var1)
| **rougail.__val1___dyn.var4** +
**rougail.__val2___dyn.var4** +
**rougail.__val3___dyn.var4** +
**rougail.__val4___dyn.var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable 4. +
-**Default**: the value of the variable "a variable 1" +
+**Default**: the value of the variable "a variable 1" (rougail.__val4___dyn.var1) +
**Disabled**: depends on a calculation.
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.adoc
index d87a88a3c..4851ec0ee 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.adoc
@@ -24,10 +24,10 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 2. +
**Default**:
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
+* the value of the variable "a variable 1" (rougail.__val1___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val2___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val3___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val4___dyn.var1)
| **rougail.__val1___dyn.var3** +
**rougail.__val2___dyn.var3** +
**rougail.__val3___dyn.var3** +
@@ -35,16 +35,16 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 3. +
**Default**:
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
-* the value of the variable "a variable 1"
+* the value of the variable "a variable 1" (rougail.__val1___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val2___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val3___dyn.var1)
+* the value of the variable "a variable 1" (rougail.__val4___dyn.var1)
| **rougail.__val1___dyn.var4** +
**rougail.__val2___dyn.var4** +
**rougail.__val3___dyn.var4** +
**rougail.__val4___dyn.var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable 4. +
-**Default**: the value of the variable "a variable 1" +
+**Default**: the value of the variable "a variable 1" (rougail.__val4___dyn.var1) +
**Disabled**: depends on a calculation.
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.gitlab.md
index 8b7159ee3..6d0a689be 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.gitlab.md
@@ -1,12 +1,12 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2
β’ val3
β’ val4 |
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
**rougail.*val3*_dyn.var1**
**rougail.*val4*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
**rougail.*val3*_dyn.var2**
**rougail.*val4*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
**Disabled**: depends on a calculation. |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2
β’ val3
β’ val4 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
**rougail.*val3*_dyn.var1**
**rougail.*val4*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
**rougail.*val3*_dyn.var2**
**rougail.*val4*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val3*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1) |
+| **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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val3*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1)
**Disabled**: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.html
index f70df5030..41e6d3ae9 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.html
@@ -2,23 +2,23 @@
-| Variable | Description |
+| Variable | Description |
rougail.var string multiple standard unique | A suffix variable. Examples: |
-rougail.val1_dyn.var1 rougail.val2_dyn.var1 rougail.val3_dyn.var1 rougail.val4_dyn.var1 string standard mandatory | A variable 1. Default: the value of the identifier. |
-rougail.val1_dyn.var2 rougail.val2_dyn.var2 rougail.val3_dyn.var2 rougail.val4_dyn.var2 string standard mandatory | A variable 2. Default: - the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
|
-rougail.val1_dyn.var3 rougail.val2_dyn.var3 rougail.val3_dyn.var3 rougail.val4_dyn.var3 string standard mandatory | A variable 3. Default: - the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
|
-rougail.val1_dyn.var4 rougail.val2_dyn.var4 rougail.val3_dyn.var4 rougail.val4_dyn.var4 string standard mandatory disabled | A variable 4. Default: the value of the variable "a variable 1" Disabled: depends on a calculation. |
+val4
+rougail.val1_dyn.var1 rougail.val2_dyn.var1 rougail.val3_dyn.var1 rougail.val4_dyn.var1 string standard mandatory | A variable 1. Default: the value of the identifier. |
+rougail.val1_dyn.var2 rougail.val2_dyn.var2 rougail.val3_dyn.var2 rougail.val4_dyn.var2 string standard mandatory | A variable 2. Default: - the value of the variable "a variable 1" (rougail.val1_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val2_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val3_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val4_dyn.var1)
|
+rougail.val1_dyn.var3 rougail.val2_dyn.var3 rougail.val3_dyn.var3 rougail.val4_dyn.var3 string standard mandatory | A variable 3. Default: - the value of the variable "a variable 1" (rougail.val1_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val2_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val3_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val4_dyn.var1)
|
+rougail.val1_dyn.var4 rougail.val2_dyn.var4 rougail.val3_dyn.var4 rougail.val4_dyn.var4 string standard mandatory disabled | A variable 4. Default: the value of the variable "a variable 1" (rougail.val4_dyn.var1) Disabled: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.md
index af0cbc108..c88f77b72 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.md
@@ -1,10 +1,10 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2
β’ val3
β’ val4 |
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
**rougail.*val3*_dyn.var1**
**rougail.*val4*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
**rougail.*val3*_dyn.var2**
**rougail.*val4*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
**Disabled**: depends on a calculation. |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2
β’ val3
β’ val4 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
**rougail.*val3*_dyn.var1**
**rougail.*val4*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
**rougail.*val3*_dyn.var2**
**rougail.*val4*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val3*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1) |
+| **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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val3*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1)
**Disabled**: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.sh
index ab469eda9..a51364fec 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.sh
@@ -19,30 +19,30 @@
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var2[0m β A variable 2. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var2[0m β [1mDefault[0m: β
β [1mrougail.[0m[1;3mval3[0m[1m_dyn.var2[0m β β’ the value of the variable "a β
-β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var2[0m β variable 1" β
+β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var2[0m β variable 1" (rougail.[3mval1[0m_dyn.var1) β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval2[0m_dyn.var1) β
β β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval3[0m_dyn.var1) β
β β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval4[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var3[0m β A variable 3. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var3[0m β [1mDefault[0m: β
β [1mrougail.[0m[1;3mval3[0m[1m_dyn.var3[0m β β’ the value of the variable "a β
-β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var3[0m β variable 1" β
+β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var3[0m β variable 1" (rougail.[3mval1[0m_dyn.var1) β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval2[0m_dyn.var1) β
β β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval3[0m_dyn.var1) β
β β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval4[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var4[0m β A variable 4. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var4[0m β [1mDefault[0m: the value of the variable β
β [1mrougail.[0m[1;3mval3[0m[1m_dyn.var4[0m β "a variable 1" β
-β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var4[0m β [1mDisabled[0m: depends on a calculation. β
-β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β β
+β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var4[0m β (rougail.[3mval4[0m_dyn.var1) β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: depends on a calculation. β
β [1;3;7mdisabled[0m[1;7m [0m β β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.gitlab.md
index 4a81e2432..a3604cb75 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.gitlab.md
@@ -1,8 +1,8 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2
β’ val3
β’ val4 |
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
**rougail.*val3*_dyn.var1**
**rougail.*val4*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
**rougail.*val3*_dyn.var2**
**rougail.*val4*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
**Disabled**: depends on a calculation. |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2
β’ val3
β’ val4 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
**rougail.*val3*_dyn.var1**
**rougail.*val4*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
**rougail.*val3*_dyn.var2**
**rougail.*val4*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val3*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1) |
+| **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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val3*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1)
**Disabled**: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.html b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.html
index be22b8c73..6cad66404 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.html
@@ -1,22 +1,22 @@
-| Variable | Description |
+| Variable | Description |
rougail.var string multiple standard unique | A suffix variable. Examples: |
-rougail.val1_dyn.var1 rougail.val2_dyn.var1 rougail.val3_dyn.var1 rougail.val4_dyn.var1 string standard mandatory | A variable 1. Default: the value of the identifier. |
-rougail.val1_dyn.var2 rougail.val2_dyn.var2 rougail.val3_dyn.var2 rougail.val4_dyn.var2 string standard mandatory | A variable 2. Default: - the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
|
-rougail.val1_dyn.var3 rougail.val2_dyn.var3 rougail.val3_dyn.var3 rougail.val4_dyn.var3 string standard mandatory | A variable 3. Default: - the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
-- the value of the variable "a variable 1"
|
-rougail.val1_dyn.var4 rougail.val2_dyn.var4 rougail.val3_dyn.var4 rougail.val4_dyn.var4 string standard mandatory disabled | A variable 4. Default: the value of the variable "a variable 1" Disabled: depends on a calculation. |
+val4
+rougail.val1_dyn.var1 rougail.val2_dyn.var1 rougail.val3_dyn.var1 rougail.val4_dyn.var1 string standard mandatory | A variable 1. Default: the value of the identifier. |
+rougail.val1_dyn.var2 rougail.val2_dyn.var2 rougail.val3_dyn.var2 rougail.val4_dyn.var2 string standard mandatory | A variable 2. Default: - the value of the variable "a variable 1" (rougail.val1_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val2_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val3_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val4_dyn.var1)
|
+rougail.val1_dyn.var3 rougail.val2_dyn.var3 rougail.val3_dyn.var3 rougail.val4_dyn.var3 string standard mandatory | A variable 3. Default: - the value of the variable "a variable 1" (rougail.val1_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val2_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val3_dyn.var1)
+- the value of the variable "a variable 1" (rougail.val4_dyn.var1)
|
+rougail.val1_dyn.var4 rougail.val2_dyn.var4 rougail.val3_dyn.var4 rougail.val4_dyn.var4 string standard mandatory disabled | A variable 4. Default: the value of the variable "a variable 1" (rougail.val4_dyn.var1) Disabled: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.json b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.json
index 5d81b22a0..d2fae91f4 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.json
@@ -65,7 +65,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -141,7 +141,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -151,7 +151,7 @@
"description": "a variable 1"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -161,7 +161,7 @@
"description": "a variable 1"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -171,7 +171,7 @@
"description": "a variable 1"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -216,7 +216,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -226,7 +226,7 @@
"description": "a variable 1"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -236,7 +236,7 @@
"description": "a variable 1"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -246,7 +246,7 @@
"description": "a variable 1"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -297,7 +297,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.md b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.md
index 4a81e2432..a3604cb75 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.md
@@ -1,8 +1,8 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2
β’ val3
β’ val4 |
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
**rougail.*val3*_dyn.var1**
**rougail.*val4*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
**rougail.*val3*_dyn.var2**
**rougail.*val4*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)"
**Disabled**: depends on a calculation. |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2
β’ val3
β’ val4 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
**rougail.*val3*_dyn.var1**
**rougail.*val4*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
**rougail.*val3*_dyn.var2**
**rougail.*val4*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 2.
**Default**:
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val3*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1) |
+| **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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val3*_dyn.var1)
β’ the value of the variable "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (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 "[a variable 1](#rougail.:::identifier:::_dyn.var1)" (rougail.*val4*_dyn.var1)
**Disabled**: depends on a calculation. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.sh
index 0926b3c03..0f7cecb4a 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.sh
@@ -17,29 +17,29 @@
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var2[0m β A variable 2. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var2[0m β [1mDefault[0m: β
β [1mrougail.[0m[1;3mval3[0m[1m_dyn.var2[0m β β’ the value of the variable "a β
-β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var2[0m β variable 1" β
+β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var2[0m β variable 1" (rougail.[3mval1[0m_dyn.var1) β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval2[0m_dyn.var1) β
β β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval3[0m_dyn.var1) β
β β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval4[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var3[0m β A variable 3. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var3[0m β [1mDefault[0m: β
β [1mrougail.[0m[1;3mval3[0m[1m_dyn.var3[0m β β’ the value of the variable "a β
-β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var3[0m β variable 1" β
+β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var3[0m β variable 1" (rougail.[3mval1[0m_dyn.var1) β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval2[0m_dyn.var1) β
β β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval3[0m_dyn.var1) β
β β β’ the value of the variable "a β
-β β variable 1" β
+β β variable 1" (rougail.[3mval4[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var4[0m β A variable 4. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var4[0m β [1mDefault[0m: the value of the variable β
β [1mrougail.[0m[1;3mval3[0m[1m_dyn.var4[0m β "a variable 1" β
-β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var4[0m β [1mDisabled[0m: depends on a calculation. β
-β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β β
+β [1mrougail.[0m[1;3mval4[0m[1m_dyn.var4[0m β (rougail.[3mval4[0m_dyn.var1) β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: depends on a calculation. β
β [1;3;7mdisabled[0m[1;7m [0m β β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.adoc
index 15a062139..84c44c20b 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.adoc
@@ -15,7 +15,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.adoc
index 5e9bb04c2..8205e517f 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.adoc
@@ -17,7 +17,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.gitlab.md
index e2c59d570..9b46b5de3 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.html
index 0905d9e90..f9ffb18cd 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.html
@@ -8,8 +8,8 @@
rougail.var string multiple standard mandatory unique | A suffix variable. Default: |
rougail.my_dyn_family_val1.var rougail.my_dyn_family_val2.var string standard | A variable inside a dynamic family. Default: the value of the identifier. |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.md
index bc7f500a3..84da25859 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.sh
index 554a50115..ed73357f1 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.sh
@@ -16,7 +16,9 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.gitlab.md
index d3f26dbad..3ccc3be71 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.html
index 71586ca43..3bbdcebba 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.html
@@ -6,8 +6,8 @@
rougail.var string multiple standard mandatory unique | A suffix variable. Default: |
rougail.my_dyn_family_val1.var rougail.my_dyn_family_val2.var string standard | A variable inside a dynamic family. Default: the value of the identifier. |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.json b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.json
index 9a579a24c..894976d7a 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -120,7 +120,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
@@ -130,7 +130,7 @@
"description": "a variable inside a dynamic family"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.md
index d3f26dbad..3ccc3be71 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.sh
index 3a9cb3b76..8a591cfe7 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.sh
@@ -14,6 +14,8 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.adoc
index 5b7f05b2e..688ee7753 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.adoc
@@ -5,8 +5,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
| **rougail.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A suffix variable. +
**Default**:
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.adoc
index 49f312b29..055500342 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.adoc
@@ -7,8 +7,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
| **rougail.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A suffix variable. +
**Default**:
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.gitlab.md
index b4cee09e1..299ec08dd 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.html
index a86829132..be8f5d64d 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.html
@@ -5,8 +5,8 @@
| Variable | Description |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
rougail.var string multiple standard mandatory unique | A suffix variable. Default: |
rougail.my_dyn_family_val1.var rougail.my_dyn_family_val2.var string standard | A variable inside a dynamic family. Default: the value of the identifier. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.md
index d4dfbadfb..d4b4a5738 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.sh
index d619d13c4..97b1dda2e 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.sh
@@ -7,8 +7,10 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var[0m β A suffix variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.gitlab.md
index 153efbb1d..2061e9fd8 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.html
index a3d434565..70de7edb4 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.html
@@ -3,8 +3,8 @@
| Variable | Description |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
rougail.var string multiple standard mandatory unique | A suffix variable. Default: |
rougail.my_dyn_family_val1.var rougail.my_dyn_family_val2.var string standard | A variable inside a dynamic family. Default: the value of the identifier. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.json b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.json
index db024bd63..6811c9fbe 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.json
@@ -36,7 +36,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
@@ -46,7 +46,7 @@
"description": "a variable inside a dynamic family"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
@@ -111,7 +111,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.md
index 153efbb1d..2061e9fd8 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.sh
index 702a5e65b..7b4f3e28e 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.sh
@@ -5,8 +5,10 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var[0m β A suffix variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.adoc
index 62d2c8675..28b335b37 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.adoc
@@ -5,8 +5,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
| **rougail.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | A suffix variable. +
**Examples**:
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.adoc
index 166654198..08a0cf9a1 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.adoc
@@ -7,8 +7,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
| **rougail.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | A suffix variable. +
**Examples**:
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.gitlab.md
index 61cc7eccd..5ad1b7f9f 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.html
index 70db7a29a..cbf4ca649 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.html
@@ -5,8 +5,8 @@
| Variable | Description |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
rougail.var string multiple standard unique | A suffix variable. Examples: |
rougail.my_dyn_family_val1.var rougail.my_dyn_family_val2.var string standard | A variable inside a dynamic family. Default: the value of the identifier. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.md
index 69650f9e3..4e738db6a 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.sh
index 4f7065b0e..b486045ab 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.sh
@@ -7,8 +7,10 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var[0m β A suffix variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mExamples[0m: β
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.gitlab.md
index d82d14834..33efbe4ad 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.html
index 003310403..571028e4f 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.html
@@ -3,8 +3,8 @@
| Variable | Description |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
rougail.var string multiple standard unique | A suffix variable. Examples: |
rougail.my_dyn_family_val1.var rougail.my_dyn_family_val2.var string standard | A variable inside a dynamic family. Default: the value of the identifier. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.json b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.json
index 6911f138d..a230b483c 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.json
@@ -36,7 +36,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
@@ -46,7 +46,7 @@
"description": "a variable inside a dynamic family"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
@@ -105,7 +105,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.md
index d82d14834..33efbe4ad 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier. |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.sh
index a5b671b7b..df0dea044 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.sh
@@ -5,8 +5,10 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.var[0m β A suffix variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mExamples[0m: β
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.adoc
index 15a062139..84c44c20b 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.adoc
@@ -15,7 +15,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.adoc
index 5e9bb04c2..8205e517f 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.adoc
@@ -17,7 +17,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.gitlab.md
index e2c59d570..9b46b5de3 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.html
index 0905d9e90..f9ffb18cd 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.html
@@ -8,8 +8,8 @@
rougail.var string multiple standard mandatory unique | A suffix variable. Default: |
rougail.my_dyn_family_val1.var rougail.my_dyn_family_val2.var string standard | A variable inside a dynamic family. Default: the value of the identifier. |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.md
index bc7f500a3..84da25859 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.sh
index 554a50115..ed73357f1 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.sh
@@ -16,7 +16,9 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.gitlab.md
index d3f26dbad..3ccc3be71 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.html
index 71586ca43..3bbdcebba 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.html
@@ -6,8 +6,8 @@
rougail.var string multiple standard mandatory unique | A suffix variable. Default: |
rougail.my_dyn_family_val1.var rougail.my_dyn_family_val2.var string standard | A variable inside a dynamic family. Default: the value of the identifier. |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.json b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.json
index 9a579a24c..894976d7a 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -120,7 +120,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
@@ -130,7 +130,7 @@
"description": "a variable inside a dynamic family"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.md
index d3f26dbad..3ccc3be71 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.sh
index 3a9cb3b76..8a591cfe7 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.sh
@@ -14,6 +14,8 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.adoc
index 46de349c1..8362c6006 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.adoc
@@ -15,7 +15,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.adoc
index cf87a93b1..660fab4ec 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.adoc
@@ -17,7 +17,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a dynamic family"
-* the value of the variable "a variable inside a dynamic family"
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val1__.var)
+* the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family___val2__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.gitlab.md
index 15737a98d..6dfe2914a 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.html
index 7a4388012..44482284e 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.html
@@ -8,8 +8,8 @@
rougail.var string multiple standard unique | A suffix variable. Examples: |
rougail.my_dyn_family_val1.var rougail.my_dyn_family_val2.var string standard | A variable inside a dynamic family. Default: the value of the identifier. |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.md
index 1c9a2508a..5b19a0a81 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.sh
index 32c01cb30..d8297abb0 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.sh
@@ -16,7 +16,9 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.gitlab.md
index 7543a3c3e..ae0817818 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.html
index 28faea8e6..69fca2dd8 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.html
@@ -6,8 +6,8 @@
rougail.var string multiple standard unique | A suffix variable. Examples: |
rougail.my_dyn_family_val1.var rougail.my_dyn_family_val2.var string standard | A variable inside a dynamic family. Default: the value of the identifier. |
-rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family"
-- the value of the variable "a variable inside a dynamic family"
|
+rougail.var2 string multiple standard mandatory unique | A variable. Default: - the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val1.var)
+- the value of the variable "a variable inside a dynamic family" (rougail.my_dyn_family_val2.var)
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.json b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.json
index 7befdc199..a1ffaf38e 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -114,7 +114,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
@@ -124,7 +124,7 @@
"description": "a variable inside a dynamic family"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.md
index 7543a3c3e..ae0817818 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)"
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.var)
β’ the value of the variable "[a variable inside a dynamic family](#rougail.my_dyn_family_:::identifier:::.var)" (rougail.my_dyn_family_*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.sh
index 86b4357ff..5d9fcc85f 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.sh
@@ -14,6 +14,8 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β variable inside a dynamic family" β
+β β (rougail.my_dyn_family_[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.json b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.json
index d24b89b06..fe731de0c 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.json b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.json
index 0569d55c3..11d83a3df 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.adoc
new file mode 100644
index 000000000..9691dc46f
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.adoc
@@ -0,0 +1,23 @@
+[cols="1a,1a"]
+|====
+| Variable | Description
+| **rougail.var** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A suffix variable. +
+**Default**:
+
+* val1
+* val2
+| **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** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside a sub dynamic family. +
+**Default**: the value of the identifier.
+| **rougail.var2** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | A variable. +
+**Default**:
+
+* the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family___val1__.subdyn___val1__.var)
+* the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family___val1__.subdyn___val2__.var)
+|====
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.adoc
new file mode 100644
index 000000000..9730a3469
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.adoc
@@ -0,0 +1,25 @@
+== New variables
+
+[cols="1a,1a"]
+|====
+| Variable | Description
+| **rougail.var** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A suffix variable. +
+**Default**:
+
+* val1
+* val2
+| **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** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside a sub dynamic family. +
+**Default**: the value of the identifier.
+| **rougail.var2** +
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | A variable. +
+**Default**:
+
+* the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family___val1__.subdyn___val1__.var)
+* the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family___val1__.subdyn___val2__.var)
+|====
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.gitlab.md
new file mode 100644
index 000000000..0081a15d5
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.gitlab.md
@@ -0,0 +1,10 @@
+New variables
+
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val1*.var)
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val2*.var) |
+
+
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.html
new file mode 100644
index 000000000..b29dbd67b
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.html
@@ -0,0 +1,15 @@
+New variables
+
+
+
+| Variable | Description |
+
+
+rougail.var string multiple standard mandatory unique | A suffix variable. Default: |
+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 standard mandatory | A variable inside a sub dynamic family. Default: the value of the identifier. |
+rougail.var2 string multiple standard unique | A variable. Default: - the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family_val1.subdyn_val1.var)
+- the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family_val1.subdyn_val2.var)
|
+
+
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.md
new file mode 100644
index 000000000..71d9fc0d6
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.md
@@ -0,0 +1,8 @@
+# New variables
+
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val1*.var)
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val2*.var) |
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.sh
new file mode 100644
index 000000000..b9fa32e90
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.changelog.sh
@@ -0,0 +1,28 @@
+[1;4;96mNew variables[0m
+
+βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
+β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
+β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
+β [1mrougail.var[0m β A suffix variable. β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
+β [1;7mmandatory [0m [1;7m unique [0m β β’ val1 β
+β β β’ val2 β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.my_dyn_family_[0m[1;3mval1[0m[1m.subdyn_[0m[1;3mvaβ¦[0m β A variable inside a sub dynamic β
+β [1mrougail.my_dyn_family_[0m[1;3mval1[0m[1m.subdyn_[0m[1;3mvaβ¦[0m β family. β
+β [1mrougail.my_dyn_family_[0m[1;3mval2[0m[1m.subdyn_[0m[1;3mvaβ¦[0m β [1mDefault[0m: the value of the β
+β [1mrougail.my_dyn_family_[0m[1;3mval2[0m[1m.subdyn_[0m[1;3mvaβ¦[0m β identifier. β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.var2[0m β A variable. β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
+β [1;7munique [0m β β’ the value of the variable "a β
+β β variable inside a sub dynamic β
+β β family" β
+β β (rougail.my_dyn_family_[3mval1[0m.subdyn_[3mβ¦[0m β
+β β β’ the value of the variable "a β
+β β variable inside a sub dynamic β
+β β family" β
+β β (rougail.my_dyn_family_[3mval1[0m.subdyn_[3mβ¦[0m β
+βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
new file mode 100644
index 000000000..6cc62a653
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
@@ -0,0 +1,6 @@
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val1*.var)
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val2*.var) |
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.html
new file mode 100644
index 000000000..d282a2b6e
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.html
@@ -0,0 +1,13 @@
+
+
+| Variable | Description |
+
+
+rougail.var string multiple standard mandatory unique | A suffix variable. Default: |
+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 standard mandatory | A variable inside a sub dynamic family. Default: the value of the identifier. |
+rougail.var2 string multiple standard unique | A variable. Default: - the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family_val1.subdyn_val1.var)
+- the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family_val1.subdyn_val2.var)
|
+
+
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.json b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.json
new file mode 100644
index 000000000..51761a474
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.json
@@ -0,0 +1,205 @@
+{
+ "rougail": {
+ "type": "namespace",
+ "informations": {
+ "path": "rougail",
+ "name": "rougail",
+ "description": "Rougail",
+ "properties": [],
+ "mode": "standard",
+ "help": [
+ "This family is a namespace"
+ ]
+ },
+ "children": {
+ "var": {
+ "path": "rougail.var",
+ "name": "var",
+ "description": "A suffix variable.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "mandatory",
+ "ori_name": "mandatory",
+ "access_control": false
+ },
+ {
+ "type": "property",
+ "name": "unique",
+ "ori_name": "unique",
+ "access_control": false
+ }
+ ],
+ "mode": "standard",
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": [
+ "val1",
+ "val2"
+ ]
+ },
+ "variable_type": "string",
+ "multiple": true
+ },
+ "my_dyn_family_{{ identifier }}": {
+ "type": "dynamic",
+ "informations": {
+ "path": "rougail.my_dyn_family_{{ identifier }}",
+ "name": "my_dyn_family_{{ identifier }}",
+ "description": "A dynamic family",
+ "properties": [],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1"
+ ],
+ [
+ "val2"
+ ]
+ ],
+ "help": [
+ "This family builds families dynamically"
+ ],
+ "identifier": [
+ {
+ "message": "the value of the variable {0}.",
+ "path": {
+ "path": "rougail.var",
+ "type": "variable"
+ },
+ "description": "a suffix variable"
+ }
+ ]
+ },
+ "children": {
+ "subdyn_{{ identifier }}": {
+ "type": "dynamic",
+ "informations": {
+ "path": "rougail.my_dyn_family_{{ identifier }}.subdyn_{{ identifier }}",
+ "name": "subdyn_{{ identifier }}",
+ "description": "A sub dynamic family",
+ "properties": [],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1",
+ "val1"
+ ],
+ [
+ "val1",
+ "val2"
+ ],
+ [
+ "val2",
+ "val1"
+ ],
+ [
+ "val2",
+ "val2"
+ ]
+ ],
+ "help": [
+ "This family builds families dynamically"
+ ],
+ "identifier": [
+ {
+ "message": "the value of the variable {0}.",
+ "path": {
+ "path": "rougail.var",
+ "type": "variable"
+ },
+ "description": "a suffix variable"
+ }
+ ]
+ },
+ "children": {
+ "var": {
+ "path": "rougail.my_dyn_family_{{ identifier }}.subdyn_{{ identifier }}.var",
+ "name": "var",
+ "description": "A variable inside a sub dynamic family.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "mandatory",
+ "ori_name": "mandatory",
+ "access_control": false
+ }
+ ],
+ "mode": "standard",
+ "identifiers": [
+ [
+ "val1",
+ "val1"
+ ],
+ [
+ "val1",
+ "val2"
+ ],
+ [
+ "val2",
+ "val1"
+ ],
+ [
+ "val2",
+ "val2"
+ ]
+ ],
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": "the value of the identifier."
+ },
+ "variable_type": "string"
+ }
+ }
+ }
+ }
+ },
+ "var2": {
+ "path": "rougail.var2",
+ "name": "var2",
+ "description": "A variable.",
+ "properties": [
+ {
+ "type": "property",
+ "name": "unique",
+ "ori_name": "unique",
+ "access_control": false
+ }
+ ],
+ "mode": "standard",
+ "type": "variable",
+ "default": {
+ "name": "Default",
+ "values": [
+ {
+ "message": "the value of the variable {0}",
+ "path": {
+ "path": "rougail.my_dyn_family_{{ identifier }}.subdyn_{{ identifier }}.var",
+ "identifiers": [
+ "val1",
+ "val1"
+ ]
+ },
+ "description": "a variable inside a sub dynamic family"
+ },
+ {
+ "message": "the value of the variable {0}",
+ "path": {
+ "path": "rougail.my_dyn_family_{{ identifier }}.subdyn_{{ identifier }}.var",
+ "identifiers": [
+ "val1",
+ "val2"
+ ]
+ },
+ "description": "a variable inside a sub dynamic family"
+ }
+ ]
+ },
+ "variable_type": "string",
+ "multiple": true
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.md
new file mode 100644
index 000000000..6cc62a653
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.md
@@ -0,0 +1,6 @@
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val1*.var)
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val2*.var) |
+
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.sh
new file mode 100644
index 000000000..c4e35eaeb
--- /dev/null
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix.sh
@@ -0,0 +1,25 @@
+βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
+β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
+β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
+β [1mrougail.var[0m β A suffix variable. β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
+β [1;7mmandatory [0m [1;7m unique [0m β β’ val1 β
+β β β’ val2 β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.my_dyn_family_[0m[1;3mval1[0m[1m.subdyn_[0m[1;3mvaβ¦[0m β A variable inside a sub dynamic β
+β [1mrougail.my_dyn_family_[0m[1;3mval1[0m[1m.subdyn_[0m[1;3mvaβ¦[0m β family. β
+β [1mrougail.my_dyn_family_[0m[1;3mval2[0m[1m.subdyn_[0m[1;3mvaβ¦[0m β [1mDefault[0m: the value of the β
+β [1mrougail.my_dyn_family_[0m[1;3mval2[0m[1m.subdyn_[0m[1;3mvaβ¦[0m β identifier. β
+β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β
+βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
+β [1mrougail.var2[0m β A variable. β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
+β [1;7munique [0m β β’ the value of the variable "a β
+β β variable inside a sub dynamic β
+β β family" β
+β β (rougail.my_dyn_family_[3mval1[0m.subdyn_[3mβ¦[0m β
+β β β’ the value of the variable "a β
+β β variable inside a sub dynamic β
+β β family" β
+β β (rougail.my_dyn_family_[3mval1[0m.subdyn_[3mβ¦[0m β
+βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc
index bedae425b..261182c0d 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc
@@ -17,7 +17,9 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a sub dynamic family" if it is defined
-* the value of the variable "a variable inside a sub dynamic family" if it is defined
+* the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family___val1__.subdyn___val1__.var)
+if it is defined
+* the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family___val1__.subdyn___val2__.var)
+if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.adoc
index addd00f1a..9b2896784 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.adoc
@@ -19,7 +19,9 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | A variable. +
**Default**:
-* the value of the variable "a variable inside a sub dynamic family" if it is defined
-* the value of the variable "a variable inside a sub dynamic family" if it is defined
+* the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family___val1__.subdyn___val1__.var)
+if it is defined
+* the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family___val1__.subdyn___val2__.var)
+if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.gitlab.md
index 92e7c7a0b..2f5047a54 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" if it is defined
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val1*.var) if it is defined
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val2*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.html
index ae5ff520b..0459cc805 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.html
@@ -8,8 +8,10 @@
rougail.var string multiple standard unique | A suffix variable. Examples: |
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 standard mandatory | A variable inside a sub dynamic family. Default: the value of the identifier. |
-rougail.var2 string multiple standard unique | A variable. Default: - the value of the variable "a variable inside a sub dynamic family" if it is defined
-- the value of the variable "a variable inside a sub dynamic family" if it is defined
|
+rougail.var2 string multiple standard unique | A variable. Default: - the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family_val1.subdyn_val1.var)
+if it is defined
+- the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family_val1.subdyn_val2.var)
+if it is defined
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.md
index 83af31029..34735abd1 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" if it is defined
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val1*.var) if it is defined
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val2*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.sh
index 40e7c6f18..d8fd2ad92 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.sh
@@ -18,9 +18,13 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7munique [0m β β’ the value of the variable "a β
β β variable inside a sub dynamic β
-β β family" if it is defined β
+β β family" β
+β β (rougail.my_dyn_family_[3mval1[0m.subdyn_[3mβ¦[0m β
+β β if it is defined β
β β β’ the value of the variable "a β
β β variable inside a sub dynamic β
-β β family" if it is defined β
+β β family" β
+β β (rougail.my_dyn_family_[3mval1[0m.subdyn_[3mβ¦[0m β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
index b00a20a3c..df90d5601 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" if it is defined
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val1*.var) if it is defined
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val2*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.html
index 9e691ae1a..f35c242d0 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.html
@@ -6,8 +6,10 @@
rougail.var string multiple standard unique | A suffix variable. Examples: |
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 standard mandatory | A variable inside a sub dynamic family. Default: the value of the identifier. |
-rougail.var2 string multiple standard unique | A variable. Default: - the value of the variable "a variable inside a sub dynamic family" if it is defined
-- the value of the variable "a variable inside a sub dynamic family" if it is defined
|
+rougail.var2 string multiple standard unique | A variable. Default: - the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family_val1.subdyn_val1.var)
+if it is defined
+- the value of the variable "a variable inside a sub dynamic family" (rougail.my_dyn_family_val1.subdyn_val2.var)
+if it is defined
|
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.json b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.json
index a8efa7399..22beba626 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -98,7 +98,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -168,7 +168,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.subdyn_{{ identifier }}.var",
"identifiers": [
@@ -179,7 +179,7 @@
"description": "a variable inside a sub dynamic family"
},
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.my_dyn_family_{{ identifier }}.subdyn_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.md
index b00a20a3c..df90d5601 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" if it is defined
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A variable.
**Default**:
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val1*.var) if it is defined
β’ the value of the variable "[a variable inside a sub dynamic family](#rougail.my_dyn_family_:::identifier:::.subdyn_:::identifier:::.var)" (rougail.my_dyn_family_*val1*.subdyn_*val2*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.sh
index dc1050e21..a936c259e 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.sh
@@ -16,8 +16,12 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7munique [0m β β’ the value of the variable "a β
β β variable inside a sub dynamic β
-β β family" if it is defined β
+β β family" β
+β β (rougail.my_dyn_family_[3mval1[0m.subdyn_[3mβ¦[0m β
+β β if it is defined β
β β β’ the value of the variable "a β
β β variable inside a sub dynamic β
-β β family" if it is defined β
+β β family" β
+β β (rougail.my_dyn_family_[3mval1[0m.subdyn_[3mβ¦[0m β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.adoc
index 203a1e802..9e37a11a1 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.adoc
@@ -13,6 +13,6 @@
**Default**: the value of the identifier.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable inside dynamic family"
+**Default**: the value of the variable "a variable inside dynamic family" (rougail.dyn___val1__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc
index 3adb87fdd..2f8c9976f 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc
@@ -15,6 +15,6 @@
**Default**: the value of the identifier.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable inside dynamic family"
+**Default**: the value of the variable "a variable inside dynamic family" (rougail.dyn___val1__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.gitlab.md
index 41483c30b..39487f06a 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" (rougail.dyn_*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.html
index ead6c80f7..f53a489f3 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.var string multiple standard mandatory unique | A suffix variable. Default: |
-rougail.dyn_val1.var rougail.dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
-rougail.var2 string standard mandatory | A variable. Default: the value of the variable "a variable inside dynamic family" |
+val2
+rougail.dyn_val1.var rougail.dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
+rougail.var2 string standard mandatory | A variable. Default: the value of the variable "a variable inside dynamic family" (rougail.dyn_val1.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.md
index 3d7feee2d..2abb82f2e 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" (rougail.dyn_*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh
index c53bce909..ff8387c39 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh
@@ -15,5 +15,6 @@
β [1mrougail.var2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "a variable inside dynamic family" β
+β β (rougail.dyn_[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.gitlab.md
index d6effd3f8..80b5f04b4 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" (rougail.dyn_*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.html
index 1e9de67f5..849e38399 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.var string multiple standard mandatory unique | A suffix variable. Default: |
-rougail.dyn_val1.var rougail.dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
-rougail.var2 string standard mandatory | A variable. Default: the value of the variable "a variable inside dynamic family" |
+val2
+rougail.dyn_val1.var rougail.dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
+rougail.var2 string standard mandatory | A variable. Default: the value of the variable "a variable inside dynamic family" (rougail.dyn_val1.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.json b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.json
index e9062ad68..7c2eda9bd 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -120,7 +120,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.md
index d6effd3f8..80b5f04b4 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" (rougail.dyn_*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.sh
index 9a2baa5c8..a0bbc68fa 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.sh
@@ -13,4 +13,5 @@
β [1mrougail.var2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "a variable inside dynamic family" β
+β β (rougail.dyn_[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc
index 2523f551d..1e348064c 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc
@@ -13,6 +13,6 @@
**Default**: the value of the identifier.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. +
-**Default**: the value of the variable "a variable inside dynamic family" if it is defined
+**Default**: the value of the variable "a variable inside dynamic family" (rougail.dyn___val1__.var) if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc
index 9ec09a0f8..5d92c1bd1 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc
@@ -15,6 +15,6 @@
**Default**: the value of the identifier.
| **rougail.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. +
-**Default**: the value of the variable "a variable inside dynamic family" if it is defined
+**Default**: the value of the variable "a variable inside dynamic family" (rougail.dyn___val1__.var) if it is defined
|====
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.gitlab.md
index 6becec048..9366a3a99 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" (rougail.dyn_*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.html
index a1547fb73..7750ced99 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
rougail.var string multiple standard unique | Asuffix variable. Examples: |
-rougail.dyn_val1.var rougail.dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
-rougail.var2 string standard | A variable. Default: the value of the variable "a variable inside dynamic family" if it is defined |
+val2
+rougail.dyn_val1.var rougail.dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
+rougail.var2 string standard | A variable. Default: the value of the variable "a variable inside dynamic family" (rougail.dyn_val1.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.md
index 8fd4e2114..661c08d91 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" (rougail.dyn_*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh
index 56246f2ae..c125aca9f 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh
@@ -15,6 +15,7 @@
β [1mrougail.var2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m β [1mDefault[0m: the value of the variable β
β β "a variable inside dynamic family" β
-β β if it is defined β
+β β (rougail.dyn_[3mval1[0m.var) if it is β
+β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index db69573e4..f52661a69 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" (rougail.dyn_*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.html b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.html
index 98539b04b..a3654f7d5 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.html
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
rougail.var string multiple standard unique | Asuffix variable. Examples: |
-rougail.dyn_val1.var rougail.dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
-rougail.var2 string standard | A variable. Default: the value of the variable "a variable inside dynamic family" if it is defined |
+val2
+rougail.dyn_val1.var rougail.dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
+rougail.var2 string standard | A variable. Default: the value of the variable "a variable inside dynamic family" (rougail.dyn_val1.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.json b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.json
index e7b6a4825..32e427f73 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.json
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -107,7 +107,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "rougail.dyn_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.md
index db69573e4..f52661a69 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.md
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#rougail.dyn_:::identifier:::.var)" (rougail.dyn_*val1*.var) if it is defined |
diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh
index 407631235..fef9c1d30 100644
--- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh
+++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh
@@ -13,5 +13,6 @@
β [1mrougail.var2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m β [1mDefault[0m: the value of the variable β
β β "a variable inside dynamic family" β
-β β if it is defined β
+β β (rougail.dyn_[3mval1[0m.var) if it is β
+β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.adoc
index d5b86a493..bce602035 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.adoc
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.adoc
@@ -16,18 +16,18 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable. +
**Default**:
-* the value of the variable "value is suffix"
-* the value of the variable "value is suffix"
+* the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
+* the value of the variable "value is suffix" (rougail.__val2___dyn.var1)
| **rougail.__val1___dyn.var3** +
**rougail.__val2___dyn.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is relative first variable. +
**Default**:
-* the value of the variable "value is suffix"
-* the value of the variable "value is suffix"
+* the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
+* the value of the variable "value is suffix" (rougail.__val2___dyn.var1)
| **rougail.__val1___dyn.var4** +
**rougail.__val2___dyn.var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable of val1. +
-**Default**: the value of the variable "value is suffix"
+**Default**: the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
|====
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.adoc
index 0a6a291da..fa804b57d 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.adoc
@@ -18,18 +18,18 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable. +
**Default**:
-* the value of the variable "value is suffix"
-* the value of the variable "value is suffix"
+* the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
+* the value of the variable "value is suffix" (rougail.__val2___dyn.var1)
| **rougail.__val1___dyn.var3** +
**rougail.__val2___dyn.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is relative first variable. +
**Default**:
-* the value of the variable "value is suffix"
-* the value of the variable "value is suffix"
+* the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
+* the value of the variable "value is suffix" (rougail.__val2___dyn.var1)
| **rougail.__val1___dyn.var4** +
**rougail.__val2___dyn.var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable of val1. +
-**Default**: the value of the variable "value is suffix"
+**Default**: the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
|====
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.gitlab.md
index 2923154bc..6bcf5b38d 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.gitlab.md
@@ -1,12 +1,12 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.html b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.html
index 52e9ce3a4..be6f59eee 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.html
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.html
@@ -2,17 +2,17 @@
-| Variable | Description |
+| Variable | Description |
rougail.var string multiple standard mandatory unique | A suffix variable. Default: |
-rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | Value is suffix. Default: the value of the identifier. |
-rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | Value is first variable. Default: - the value of the variable "value is suffix"
-- the value of the variable "value is suffix"
|
-rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | Value is relative first variable. Default: - the value of the variable "value is suffix"
-- the value of the variable "value is suffix"
|
-rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory | Value is first variable of val1. Default: the value of the variable "value is suffix" |
+val2
+rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | Value is suffix. Default: the value of the identifier. |
+rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | Value is first variable. Default: - the value of the variable "value is suffix" (rougail.val1_dyn.var1)
+- the value of the variable "value is suffix" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | Value is relative first variable. Default: - the value of the variable "value is suffix" (rougail.val1_dyn.var1)
+- the value of the variable "value is suffix" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory | Value is first variable of val1. Default: the value of the variable "value is suffix" (rougail.val1_dyn.var1) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.md b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.md
index 7bba293de..36fb8b4bd 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.md
@@ -1,10 +1,10 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.sh
index 4ae6171e1..70b92eba2 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.sh
@@ -15,19 +15,20 @@
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var2[0m β Value is first variable. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var2[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval1[0m_dyn.var1) β
β β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval2[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var3[0m β Value is relative first variable. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var3[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval1[0m_dyn.var1) β
β β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval2[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var4[0m β Value is first variable of val1. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var4[0m β [1mDefault[0m: the value of the variable β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β "value is suffix" β
+β β (rougail.[3mval1[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.gitlab.md
index 3cf648f2e..93aa1b99b 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.gitlab.md
@@ -1,8 +1,8 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.html b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.html
index 59ad33f37..6aef2fa64 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.html
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.html
@@ -1,16 +1,16 @@
-| Variable | Description |
+| Variable | Description |
rougail.var string multiple standard mandatory unique | A suffix variable. Default: |
-rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | Value is suffix. Default: the value of the identifier. |
-rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | Value is first variable. Default: - the value of the variable "value is suffix"
-- the value of the variable "value is suffix"
|
-rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | Value is relative first variable. Default: - the value of the variable "value is suffix"
-- the value of the variable "value is suffix"
|
-rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory | Value is first variable of val1. Default: the value of the variable "value is suffix" |
+val2
+rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | Value is suffix. Default: the value of the identifier. |
+rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | Value is first variable. Default: - the value of the variable "value is suffix" (rougail.val1_dyn.var1)
+- the value of the variable "value is suffix" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | Value is relative first variable. Default: - the value of the variable "value is suffix" (rougail.val1_dyn.var1)
+- the value of the variable "value is suffix" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory | Value is first variable of val1. Default: the value of the variable "value is suffix" (rougail.val1_dyn.var1) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.json b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.json
index ba3a5dfbc..308d5465b 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.json
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -127,7 +127,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -137,7 +137,7 @@
"description": "value is suffix"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -176,7 +176,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -186,7 +186,7 @@
"description": "value is suffix"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -224,7 +224,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.md b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.md
index 3cf648f2e..93aa1b99b 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.md
@@ -1,8 +1,8 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.sh
index a54697723..a11036944 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.sh
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.sh
@@ -13,18 +13,19 @@
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var2[0m β Value is first variable. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var2[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval1[0m_dyn.var1) β
β β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval2[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var3[0m β Value is relative first variable. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var3[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval1[0m_dyn.var1) β
β β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval2[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var4[0m β Value is first variable of val1. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var4[0m β [1mDefault[0m: the value of the variable β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β "value is suffix" β
+β β (rougail.[3mval1[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.adoc
index 5b8c850f1..6b030081d 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.adoc
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.adoc
@@ -16,18 +16,18 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable. +
**Default**:
-* the value of the variable "value is suffix"
-* the value of the variable "value is suffix"
+* the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
+* the value of the variable "value is suffix" (rougail.__val2___dyn.var1)
| **rougail.__val1___dyn.var3** +
**rougail.__val2___dyn.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is relative first variable. +
**Default**:
-* the value of the variable "value is suffix"
-* the value of the variable "value is suffix"
+* the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
+* the value of the variable "value is suffix" (rougail.__val2___dyn.var1)
| **rougail.__val1___dyn.var4** +
**rougail.__val2___dyn.var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable of val1. +
-**Default**: the value of the variable "value is suffix"
+**Default**: the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
|====
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.adoc
index ab838bb77..e35d6b838 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.adoc
@@ -18,18 +18,18 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable. +
**Default**:
-* the value of the variable "value is suffix"
-* the value of the variable "value is suffix"
+* the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
+* the value of the variable "value is suffix" (rougail.__val2___dyn.var1)
| **rougail.__val1___dyn.var3** +
**rougail.__val2___dyn.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is relative first variable. +
**Default**:
-* the value of the variable "value is suffix"
-* the value of the variable "value is suffix"
+* the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
+* the value of the variable "value is suffix" (rougail.__val2___dyn.var1)
| **rougail.__val1___dyn.var4** +
**rougail.__val2___dyn.var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable of val1. +
-**Default**: the value of the variable "value is suffix"
+**Default**: the value of the variable "value is suffix" (rougail.__val1___dyn.var1)
|====
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.gitlab.md
index 7bc65113f..e13e7a07c 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.gitlab.md
@@ -1,12 +1,12 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.html b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.html
index 3d24903f1..7543d7d65 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.html
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.html
@@ -2,17 +2,17 @@
-| Variable | Description |
+| Variable | Description |
rougail.var string multiple standard unique | A suffix variable. Examples: |
-rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | Value is suffix. Default: the value of the identifier. |
-rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | Value is first variable. Default: - the value of the variable "value is suffix"
-- the value of the variable "value is suffix"
|
-rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | Value is relative first variable. Default: - the value of the variable "value is suffix"
-- the value of the variable "value is suffix"
|
-rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory | Value is first variable of val1. Default: the value of the variable "value is suffix" |
+val2
+rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | Value is suffix. Default: the value of the identifier. |
+rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | Value is first variable. Default: - the value of the variable "value is suffix" (rougail.val1_dyn.var1)
+- the value of the variable "value is suffix" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | Value is relative first variable. Default: - the value of the variable "value is suffix" (rougail.val1_dyn.var1)
+- the value of the variable "value is suffix" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory | Value is first variable of val1. Default: the value of the variable "value is suffix" (rougail.val1_dyn.var1) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.md b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.md
index 93d6a863a..f2f0e3068 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.md
@@ -1,10 +1,10 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.sh
index 40d7188b9..7f56b0985 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.sh
@@ -15,19 +15,20 @@
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var2[0m β Value is first variable. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var2[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval1[0m_dyn.var1) β
β β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval2[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var3[0m β Value is relative first variable. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var3[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval1[0m_dyn.var1) β
β β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval2[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var4[0m β Value is first variable of val1. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var4[0m β [1mDefault[0m: the value of the variable β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β "value is suffix" β
+β β (rougail.[3mval1[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.gitlab.md
index 652951409..553127394 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.gitlab.md
@@ -1,8 +1,8 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.html b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.html
index f08ff49ba..2816ef36c 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.html
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.html
@@ -1,16 +1,16 @@
-| Variable | Description |
+| Variable | Description |
rougail.var string multiple standard unique | A suffix variable. Examples: |
-rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | Value is suffix. Default: the value of the identifier. |
-rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | Value is first variable. Default: - the value of the variable "value is suffix"
-- the value of the variable "value is suffix"
|
-rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | Value is relative first variable. Default: - the value of the variable "value is suffix"
-- the value of the variable "value is suffix"
|
-rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory | Value is first variable of val1. Default: the value of the variable "value is suffix" |
+val2
+rougail.val1_dyn.var1 rougail.val2_dyn.var1 string standard mandatory | Value is suffix. Default: the value of the identifier. |
+rougail.val1_dyn.var2 rougail.val2_dyn.var2 string standard mandatory | Value is first variable. Default: - the value of the variable "value is suffix" (rougail.val1_dyn.var1)
+- the value of the variable "value is suffix" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var3 rougail.val2_dyn.var3 string standard mandatory | Value is relative first variable. Default: - the value of the variable "value is suffix" (rougail.val1_dyn.var1)
+- the value of the variable "value is suffix" (rougail.val2_dyn.var1)
|
+rougail.val1_dyn.var4 rougail.val2_dyn.var4 string standard mandatory | Value is first variable of val1. Default: the value of the variable "value is suffix" (rougail.val1_dyn.var1) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.json b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.json
index f0211d2d0..39f5dde3c 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.json
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -121,7 +121,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -131,7 +131,7 @@
"description": "value is suffix"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -170,7 +170,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -180,7 +180,7 @@
"description": "value is suffix"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
@@ -218,7 +218,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.{{ identifier }}_dyn.var1",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.md b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.md
index 652951409..553127394 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.md
@@ -1,8 +1,8 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
-| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
-| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)"
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier. |
+| **rougail.*val1*_dyn.var2**
**rougail.*val2*_dyn.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is first variable.
**Default**:
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val2*_dyn.var1) |
+| **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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1)
β’ the value of the variable "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (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 "[value is suffix](#rougail.:::identifier:::_dyn.var1)" (rougail.*val1*_dyn.var1) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.sh
index 644d53471..89819a616 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.sh
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.sh
@@ -13,18 +13,19 @@
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var2[0m β Value is first variable. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var2[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval1[0m_dyn.var1) β
β β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval2[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var3[0m β Value is relative first variable. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var3[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval1[0m_dyn.var1) β
β β β’ the value of the variable "value β
-β β is suffix" β
+β β is suffix" (rougail.[3mval2[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mrougail.[0m[1;3mval1[0m[1m_dyn.var4[0m β Value is first variable of val1. β
β [1mrougail.[0m[1;3mval2[0m[1m_dyn.var4[0m β [1mDefault[0m: the value of the variable β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β "value is suffix" β
+β β (rougail.[3mval1[0m_dyn.var1) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.json b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.json
index 6fec0a521..4106b0598 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.json
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.json b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.json
index 9260c4264..5b1f99b6e 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.json
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.json b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.json
index 803aea125..2c346e716 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.json
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -141,7 +141,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -151,7 +151,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.json b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.json
index 803aea125..2c346e716 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.json
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -141,7 +141,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -151,7 +151,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.json b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.json
index c0f3d4480..fabb71046 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.json
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.json
@@ -63,7 +63,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -104,7 +104,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.json b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.json
index f3424cdd0..d88a6a7f1 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.json
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -135,7 +135,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -145,7 +145,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.json b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.json
index 22f0927c7..7cfd64939 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.json
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.json
@@ -57,7 +57,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
@@ -115,7 +115,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
@@ -125,7 +125,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.adoc
index 5fe25218b..9a85dabb4 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.adoc
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.adoc
@@ -16,7 +16,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val2__.dyn__val1__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.adoc
index 4305932e3..f62339f54 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.adoc
@@ -18,7 +18,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val2__.dyn__val1__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.gitlab.md
index e73cd93e2..6fe6e2881 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val2*.dyn*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.html b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.html
index e4b25ede7..8b3547373 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.html
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.html
@@ -8,8 +8,8 @@
rougail.var1 string multiple standard mandatory unique | A suffix variable. Default: |
rougail.dynval1.dynval1.var rougail.dynval1.dynval2.var rougail.dynval2.dynval1.var rougail.dynval2.dynval2.var string basic mandatory | A dynamic variable. |
-rougail.var2 string multiple standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+rougail.var2 string multiple standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable" (rougail.dynval1.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval2.dynval1.var)
|
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.md b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.md
index 40e2b8b9b..bbe4bfe49 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val2*.dyn*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.sh
index 6a27e004e..bc18a1b42 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.sh
@@ -18,7 +18,9 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval2[0m.dyn[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.gitlab.md
index f206d8b4c..45388bb18 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val2*.dyn*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.html b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.html
index 73e3bf5ab..bf3f9314c 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.html
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.html
@@ -6,8 +6,8 @@
rougail.var1 string multiple standard mandatory unique | A suffix variable. Default: |
rougail.dynval1.dynval1.var rougail.dynval1.dynval2.var rougail.dynval2.dynval1.var rougail.dynval2.dynval2.var string basic mandatory | A dynamic variable. |
-rougail.var2 string multiple standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+rougail.var2 string multiple standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable" (rougail.dynval1.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval2.dynval1.var)
|
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.json b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.json
index 43e1081d4..636fb12d8 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.json
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.json
@@ -62,7 +62,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -102,7 +102,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -168,7 +168,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.dyn{{ identifier }}.var",
"identifiers": [
@@ -179,7 +179,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.md b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.md
index f206d8b4c..45388bb18 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val2*.dyn*val1*.var) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.sh
index 84979d8ac..0b53e58f3 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.sh
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.sh
@@ -16,6 +16,8 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval2[0m.dyn[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.adoc
index 5fe25218b..b748213aa 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.adoc
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.adoc
@@ -16,7 +16,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.dyn__val2__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.adoc
index 4305932e3..4611f1288 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.adoc
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.adoc
@@ -18,7 +18,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.dyn__val1__.var)
+* the value of the variable "A dynamic variable" (rougail.dyn__val1__.dyn__val2__.var)
|====
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.gitlab.md b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.gitlab.md
index e73cd93e2..901b7a29f 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.html b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.html
index e4b25ede7..9ecb0e680 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.html
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.html
@@ -8,8 +8,8 @@
rougail.var1 string multiple standard mandatory unique | A suffix variable. Default: |
rougail.dynval1.dynval1.var rougail.dynval1.dynval2.var rougail.dynval2.dynval1.var rougail.dynval2.dynval2.var string basic mandatory | A dynamic variable. |
-rougail.var2 string multiple standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+rougail.var2 string multiple standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable" (rougail.dynval1.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval1.dynval2.var)
|
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.md b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.md
index 40e2b8b9b..ed05414d2 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.sh
index 6a27e004e..a2c5ef153 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.sh
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.sh
@@ -18,7 +18,9 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.gitlab.md
index f206d8b4c..da45abbd7 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.gitlab.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.html b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.html
index 73e3bf5ab..252dfe82f 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.html
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.html
@@ -6,8 +6,8 @@
rougail.var1 string multiple standard mandatory unique | A suffix variable. Default: |
rougail.dynval1.dynval1.var rougail.dynval1.dynval2.var rougail.dynval2.dynval1.var rougail.dynval2.dynval2.var string basic mandatory | A dynamic variable. |
-rougail.var2 string multiple standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+rougail.var2 string multiple standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable" (rougail.dynval1.dynval1.var)
+- the value of the variable "A dynamic variable" (rougail.dynval1.dynval2.var)
|
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.json b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.json
index 886216513..17af4ed18 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.json
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.json
@@ -62,7 +62,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -102,7 +102,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var1",
"type": "variable"
@@ -168,7 +168,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.dyn{{ identifier }}.var",
"identifiers": [
@@ -179,7 +179,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.dyn{{ identifier }}.dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.md b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.md
index f206d8b4c..da45abbd7 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.md
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **rougail.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#rougail.dyn:::identifier:::.dyn:::identifier:::.var)" (rougail.dyn*val1*.dyn*val2*.var) |
diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.sh
index 84979d8ac..fbb17d8ab 100644
--- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.sh
+++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.sh
@@ -16,6 +16,8 @@
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
β β dynamic variable" β
+β β (rougail.dyn[3mval1[0m.dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_namespace_without_family/60_9extra_dynamic.json b/tests/results/test_namespace_without_family/60_9extra_dynamic.json
index e2e6f6e67..6f4f3d6bd 100644
--- a/tests/results/test_namespace_without_family/60_9extra_dynamic.json
+++ b/tests/results/test_namespace_without_family/60_9extra_dynamic.json
@@ -73,7 +73,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.json b/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.json
index dcd4ca4d6..7cb99e40d 100644
--- a/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.json
+++ b/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.json
@@ -114,7 +114,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "extra.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.json b/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.json
index 295a22342..8038d7fa2 100644
--- a/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.json
+++ b/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.json
@@ -54,7 +54,7 @@
"identifier": [
"val1",
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "rougail.var",
"type": "variable"
diff --git a/tests/results/test_namespace_without_family/warnings_60_5family_dynamic_unknown_suffix b/tests/results/test_namespace_without_family/warnings_60_5family_dynamic_unknown_suffix
new file mode 100644
index 000000000..ea487b0b5
--- /dev/null
+++ b/tests/results/test_namespace_without_family/warnings_60_5family_dynamic_unknown_suffix
@@ -0,0 +1 @@
+["\"disabled\" is a calculation for rougail.{{ identifier }}_dyn.var4 but has no description in \"../../rougail-tests/structures/60_5family_dynamic_unknown_suffix/rougail/00-base.yml\""]
\ No newline at end of file
diff --git a/tests/results/test_namespace_without_family/warnings_60_5family_dynamic_variable_outside_sub_suffix b/tests/results/test_namespace_without_family/warnings_60_5family_dynamic_variable_outside_sub_suffix
new file mode 100644
index 000000000..0637a088a
--- /dev/null
+++ b/tests/results/test_namespace_without_family/warnings_60_5family_dynamic_variable_outside_sub_suffix
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/tests/results/test_without_family/00_2default_calculated_multi.adoc b/tests/results/test_without_family/00_2default_calculated_multi.adoc
index 72661fad4..d056a8c9b 100644
--- a/tests/results/test_without_family/00_2default_calculated_multi.adoc
+++ b/tests/results/test_without_family/00_2default_calculated_multi.adoc
@@ -10,6 +10,6 @@
* maybe
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A second variable. +
-**Default**: the value of "a first variable".
+**Default**: the value of "a first variable" (var1).
|====
diff --git a/tests/results/test_without_family/00_2default_calculated_multi.changelog.adoc b/tests/results/test_without_family/00_2default_calculated_multi.changelog.adoc
index 7f4e9a0ae..f2cbc5a0c 100644
--- a/tests/results/test_without_family/00_2default_calculated_multi.changelog.adoc
+++ b/tests/results/test_without_family/00_2default_calculated_multi.changelog.adoc
@@ -12,6 +12,6 @@
* maybe
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A second variable. +
-**Default**: the value of "a first variable".
+**Default**: the value of "a first variable" (var1).
|====
diff --git a/tests/results/test_without_family/00_2default_calculated_multi.changelog.gitlab.md b/tests/results/test_without_family/00_2default_calculated_multi.changelog.gitlab.md
index 79e0a835f..6c1ef3230 100644
--- a/tests/results/test_without_family/00_2default_calculated_multi.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_2default_calculated_multi.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#var1)". |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_multi.changelog.html b/tests/results/test_without_family/00_2default_calculated_multi.changelog.html
index 0ae00e9d6..8f16bbae9 100644
--- a/tests/results/test_without_family/00_2default_calculated_multi.changelog.html
+++ b/tests/results/test_without_family/00_2default_calculated_multi.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A first variable. Default: |
-var2 string multiple standard mandatory unique | A second variable. Default: the value of "a first variable". |
+maybe
+var2 string multiple standard mandatory unique | A second variable. Default: the value of "a first variable" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_multi.changelog.md b/tests/results/test_without_family/00_2default_calculated_multi.changelog.md
index 8a9620d61..8f8116a2f 100644
--- a/tests/results/test_without_family/00_2default_calculated_multi.changelog.md
+++ b/tests/results/test_without_family/00_2default_calculated_multi.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#var1)". |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_multi.changelog.sh b/tests/results/test_without_family/00_2default_calculated_multi.changelog.sh
index 296267b91..b430082c2 100644
--- a/tests/results/test_without_family/00_2default_calculated_multi.changelog.sh
+++ b/tests/results/test_without_family/00_2default_calculated_multi.changelog.sh
@@ -11,6 +11,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of "a first β
-β [1;7mmandatory [0m [1;7m unique [0m β variable". β
+β [1;7mmandatory [0m [1;7m unique [0m β variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_2default_calculated_multi.gitlab.md b/tests/results/test_without_family/00_2default_calculated_multi.gitlab.md
index e0e1d4047..1f4822a27 100644
--- a/tests/results/test_without_family/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_without_family/00_2default_calculated_multi.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#var1)". |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_multi.html b/tests/results/test_without_family/00_2default_calculated_multi.html
index 502f2d952..6533d698c 100644
--- a/tests/results/test_without_family/00_2default_calculated_multi.html
+++ b/tests/results/test_without_family/00_2default_calculated_multi.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A first variable. Default: |
-var2 string multiple standard mandatory unique | A second variable. Default: the value of "a first variable". |
+maybe
+var2 string multiple standard mandatory unique | A second variable. Default: the value of "a first variable" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_multi.json b/tests/results/test_without_family/00_2default_calculated_multi.json
index b7cd433e8..bb1a60244 100644
--- a/tests/results/test_without_family/00_2default_calculated_multi.json
+++ b/tests/results/test_without_family/00_2default_calculated_multi.json
@@ -53,7 +53,7 @@
"default": {
"name": "Default",
"values": {
- "description": "the value of \"{0}\".",
+ "description": "the value of {0}.",
"variables": [
{
"path": "var1",
diff --git a/tests/results/test_without_family/00_2default_calculated_multi.md b/tests/results/test_without_family/00_2default_calculated_multi.md
index e0e1d4047..1f4822a27 100644
--- a/tests/results/test_without_family/00_2default_calculated_multi.md
+++ b/tests/results/test_without_family/00_2default_calculated_multi.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#var1)". |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ no
β’ yes
β’ maybe |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Default**: the value of "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_multi.sh b/tests/results/test_without_family/00_2default_calculated_multi.sh
index 82a770854..8b01315f7 100644
--- a/tests/results/test_without_family/00_2default_calculated_multi.sh
+++ b/tests/results/test_without_family/00_2default_calculated_multi.sh
@@ -9,5 +9,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of "a first β
-β [1;7mmandatory [0m [1;7m unique [0m β variable". β
+β [1;7mmandatory [0m [1;7m unique [0m β variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_2default_calculated_variable.adoc b/tests/results/test_without_family/00_2default_calculated_variable.adoc
index d47b812a7..1e8ffea04 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable.adoc
+++ b/tests/results/test_without_family/00_2default_calculated_variable.adoc
@@ -10,6 +10,6 @@
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `multiple` `standard` `mandatory` `unique` | A second variable. +
**Validator**: type domainname +
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test_without_family/00_2default_calculated_variable.changelog.adoc b/tests/results/test_without_family/00_2default_calculated_variable.changelog.adoc
index f3fa3328f..a9073a528 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable.changelog.adoc
+++ b/tests/results/test_without_family/00_2default_calculated_variable.changelog.adoc
@@ -12,6 +12,6 @@
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `multiple` `standard` `mandatory` `unique` | A second variable. +
**Validator**: type domainname +
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test_without_family/00_2default_calculated_variable.changelog.gitlab.md b/tests/results/test_without_family/00_2default_calculated_variable.changelog.gitlab.md
index c1e0e495e..404fd12a9 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_2default_calculated_variable.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_variable.changelog.html b/tests/results/test_without_family/00_2default_calculated_variable.changelog.html
index 49d72a1df..2dd32bac2 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable.changelog.html
+++ b/tests/results/test_without_family/00_2default_calculated_variable.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
var1 domainname multiple basic mandatory unique | A first variable. Validators: - type domainname
-- the domain name can be an IP
|
-var2 domainname multiple standard mandatory unique | A second variable. Validator: type domainname Default: the value of the variable "a first variable" |
+the domain name can be an IP
+var2 domainname multiple standard mandatory unique | A second variable. Validator: type domainname Default: the value of the variable "a first variable" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_variable.changelog.md b/tests/results/test_without_family/00_2default_calculated_variable.changelog.md
index 404d3ccea..75a872e0c 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable.changelog.md
+++ b/tests/results/test_without_family/00_2default_calculated_variable.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_variable.changelog.sh b/tests/results/test_without_family/00_2default_calculated_variable.changelog.sh
index adfb621eb..0d6f54ba1 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable.changelog.sh
+++ b/tests/results/test_without_family/00_2default_calculated_variable.changelog.sh
@@ -11,6 +11,6 @@
β [1mvar2[0m β A second variable. β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mValidator[0m: type domainname β
β [1;7mmandatory [0m [1;7m unique [0m β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_2default_calculated_variable.gitlab.md b/tests/results/test_without_family/00_2default_calculated_variable.gitlab.md
index db918542a..b62d7fb91 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_without_family/00_2default_calculated_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_variable.html b/tests/results/test_without_family/00_2default_calculated_variable.html
index f382f304e..eb8bc88bd 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable.html
+++ b/tests/results/test_without_family/00_2default_calculated_variable.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
var1 domainname multiple basic mandatory unique | A first variable. Validators: - type domainname
-- the domain name can be an IP
|
-var2 domainname multiple standard mandatory unique | A second variable. Validator: type domainname Default: the value of the variable "a first variable" |
+the domain name can be an IP
+var2 domainname multiple standard mandatory unique | A second variable. Validator: type domainname Default: the value of the variable "a first variable" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_variable.json b/tests/results/test_without_family/00_2default_calculated_variable.json
index 4c6410f2e..5a35bfb64 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable.json
+++ b/tests/results/test_without_family/00_2default_calculated_variable.json
@@ -52,7 +52,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test_without_family/00_2default_calculated_variable.md b/tests/results/test_without_family/00_2default_calculated_variable.md
index db918542a..b62d7fb91 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable.md
+++ b/tests/results/test_without_family/00_2default_calculated_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validator**: type domainname
**Default**: the value of the variable "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_variable.sh b/tests/results/test_without_family/00_2default_calculated_variable.sh
index c182b27e3..205f490e5 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable.sh
+++ b/tests/results/test_without_family/00_2default_calculated_variable.sh
@@ -9,5 +9,5 @@
β [1mvar2[0m β A second variable. β
β [1;7m domainname [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mValidator[0m: type domainname β
β [1;7mmandatory [0m [1;7m unique [0m β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_2default_calculated_variable_transitive.adoc b/tests/results/test_without_family/00_2default_calculated_variable_transitive.adoc
index 32bc11c9e..1d1f9bee5 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable_transitive.adoc
+++ b/tests/results/test_without_family/00_2default_calculated_variable_transitive.adoc
@@ -14,6 +14,6 @@
* type domainname
* the domain name can be an IP
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.adoc b/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.adoc
index 1b56fcbc5..557b16a2a 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.adoc
+++ b/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.adoc
@@ -16,6 +16,6 @@
* type domainname
* the domain name can be an IP
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.gitlab.md b/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.gitlab.md
index 9675f9377..f1523e96f 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.html b/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.html
index 4356ada5f..8d5f64a26 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.html
+++ b/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.html
@@ -8,7 +8,7 @@
var1 domainname multiple basic mandatory unique | A first variable. Validators: - type domainname
- the domain name can be an IP
|
var2 domainname multiple standard mandatory unique | A second variable. Validators: - type domainname
-- the domain name can be an IP
Default: the value of the variable "a first variable" |
+the domain name can be an IP
Default: the value of the variable "a first variable" (var1).
diff --git a/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.md b/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.md
index 40ba9e32f..06533ec17 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.md
+++ b/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.sh b/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.sh
index c81ef6adc..85ab88da5 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.sh
+++ b/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.sh
@@ -13,6 +13,6 @@
β [1;7mmandatory [0m [1;7m unique [0m β β’ type domainname β
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_without_family/00_2default_calculated_variable_transitive.gitlab.md
index d339e6d4e..47dd559f6 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_without_family/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_variable_transitive.html b/tests/results/test_without_family/00_2default_calculated_variable_transitive.html
index 78727414c..87fb2dbed 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable_transitive.html
+++ b/tests/results/test_without_family/00_2default_calculated_variable_transitive.html
@@ -6,7 +6,7 @@
var1 domainname multiple basic mandatory unique | A first variable. Validators: - type domainname
- the domain name can be an IP
|
var2 domainname multiple standard mandatory unique | A second variable. Validators: - type domainname
-- the domain name can be an IP
Default: the value of the variable "a first variable" |
+the domain name can be an IP
Default: the value of the variable "a first variable" (var1).
diff --git a/tests/results/test_without_family/00_2default_calculated_variable_transitive.json b/tests/results/test_without_family/00_2default_calculated_variable_transitive.json
index 25dd3a1d9..fa84916c3 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable_transitive.json
+++ b/tests/results/test_without_family/00_2default_calculated_variable_transitive.json
@@ -52,7 +52,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test_without_family/00_2default_calculated_variable_transitive.md b/tests/results/test_without_family/00_2default_calculated_variable_transitive.md
index d339e6d4e..47dd559f6 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable_transitive.md
+++ b/tests/results/test_without_family/00_2default_calculated_variable_transitive.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
-| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` `unique` | A first variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP |
+| **var2**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A second variable.
**Validators**:
β’ type domainname
β’ the domain name can be an IP
**Default**: the value of the variable "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_2default_calculated_variable_transitive.sh b/tests/results/test_without_family/00_2default_calculated_variable_transitive.sh
index 201e3f886..33799337a 100644
--- a/tests/results/test_without_family/00_2default_calculated_variable_transitive.sh
+++ b/tests/results/test_without_family/00_2default_calculated_variable_transitive.sh
@@ -11,5 +11,5 @@
β [1;7mmandatory [0m [1;7m unique [0m β β’ type domainname β
β β β’ the domain name can be an IP β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_6choice_link.adoc b/tests/results/test_without_family/00_6choice_link.adoc
index 110a30132..bae418302 100644
--- a/tests/results/test_without_family/00_6choice_link.adoc
+++ b/tests/results/test_without_family/00_6choice_link.adoc
@@ -16,6 +16,6 @@
* b
* c
-**Default**: the value of the variable "the first variable"
+**Default**: the value of the variable "the first variable" (var1).
|====
diff --git a/tests/results/test_without_family/00_6choice_link.changelog.adoc b/tests/results/test_without_family/00_6choice_link.changelog.adoc
index 6cc9b8f2e..c8dc0849e 100644
--- a/tests/results/test_without_family/00_6choice_link.changelog.adoc
+++ b/tests/results/test_without_family/00_6choice_link.changelog.adoc
@@ -18,6 +18,6 @@
* b
* c
-**Default**: the value of the variable "the first variable"
+**Default**: the value of the variable "the first variable" (var1).
|====
diff --git a/tests/results/test_without_family/00_6choice_link.changelog.gitlab.md b/tests/results/test_without_family/00_6choice_link.changelog.gitlab.md
index 67ffef541..bcbed848c 100644
--- a/tests/results/test_without_family/00_6choice_link.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_6choice_link.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
β’ a
β’ b
β’ c |
-| **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 "[the first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
β’ a
β’ b
β’ c |
+| **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 "[the first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_6choice_link.changelog.html b/tests/results/test_without_family/00_6choice_link.changelog.html
index 24fe45743..61b5f0c0b 100644
--- a/tests/results/test_without_family/00_6choice_link.changelog.html
+++ b/tests/results/test_without_family/00_6choice_link.changelog.html
@@ -10,7 +10,7 @@
c
var2 choice standard mandatory | The second variable. Choices: Default: the value of the variable "the first variable" |
+c
Default: the value of the variable "the first variable" (var1).
diff --git a/tests/results/test_without_family/00_6choice_link.changelog.md b/tests/results/test_without_family/00_6choice_link.changelog.md
index 8db67b80a..43915119e 100644
--- a/tests/results/test_without_family/00_6choice_link.changelog.md
+++ b/tests/results/test_without_family/00_6choice_link.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
β’ a
β’ b
β’ c |
-| **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 "[the first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
β’ a
β’ b
β’ c |
+| **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 "[the first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_6choice_link.changelog.sh b/tests/results/test_without_family/00_6choice_link.changelog.sh
index 3b328c694..e6a7112c4 100644
--- a/tests/results/test_without_family/00_6choice_link.changelog.sh
+++ b/tests/results/test_without_family/00_6choice_link.changelog.sh
@@ -15,6 +15,6 @@
β β β’ b β
β β β’ c β
β β [1mDefault[0m: the value of the variable β
-β β "the first variable" β
+β β "the first variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_6choice_link.gitlab.md b/tests/results/test_without_family/00_6choice_link.gitlab.md
index 20c2cf2fe..aace81625 100644
--- a/tests/results/test_without_family/00_6choice_link.gitlab.md
+++ b/tests/results/test_without_family/00_6choice_link.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
β’ a
β’ b
β’ c |
-| **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 "[the first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
β’ a
β’ b
β’ c |
+| **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 "[the first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_6choice_link.html b/tests/results/test_without_family/00_6choice_link.html
index a7d2f4047..d7b76cf66 100644
--- a/tests/results/test_without_family/00_6choice_link.html
+++ b/tests/results/test_without_family/00_6choice_link.html
@@ -8,7 +8,7 @@
c
var2 choice standard mandatory | The second variable. Choices: Default: the value of the variable "the first variable" |
+c
Default: the value of the variable "the first variable" (var1).
diff --git a/tests/results/test_without_family/00_6choice_link.json b/tests/results/test_without_family/00_6choice_link.json
index 8b6842740..63f2af163 100644
--- a/tests/results/test_without_family/00_6choice_link.json
+++ b/tests/results/test_without_family/00_6choice_link.json
@@ -40,7 +40,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test_without_family/00_6choice_link.md b/tests/results/test_without_family/00_6choice_link.md
index 20c2cf2fe..aace81625 100644
--- a/tests/results/test_without_family/00_6choice_link.md
+++ b/tests/results/test_without_family/00_6choice_link.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
β’ a
β’ b
β’ c |
-| **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 "[the first variable](#var1)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
β’ a
β’ b
β’ c |
+| **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 "[the first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_6choice_link.sh b/tests/results/test_without_family/00_6choice_link.sh
index e1091655c..0fc1d94f7 100644
--- a/tests/results/test_without_family/00_6choice_link.sh
+++ b/tests/results/test_without_family/00_6choice_link.sh
@@ -13,5 +13,5 @@
β β β’ b β
β β β’ c β
β β [1mDefault[0m: the value of the variable β
-β β "the first variable" β
+β β "the first variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_6choice_variable.adoc b/tests/results/test_without_family/00_6choice_variable.adoc
index 6af801ffa..1a43870be 100644
--- a/tests/results/test_without_family/00_6choice_variable.adoc
+++ b/tests/results/test_without_family/00_6choice_variable.adoc
@@ -10,7 +10,7 @@
* c
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (var1). +
**Default**: a
|====
diff --git a/tests/results/test_without_family/00_6choice_variable.changelog.adoc b/tests/results/test_without_family/00_6choice_variable.changelog.adoc
index f45391d54..5ae89fe64 100644
--- a/tests/results/test_without_family/00_6choice_variable.changelog.adoc
+++ b/tests/results/test_without_family/00_6choice_variable.changelog.adoc
@@ -12,7 +12,7 @@
* c
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (var1). +
**Default**: a
|====
diff --git a/tests/results/test_without_family/00_6choice_variable.changelog.gitlab.md b/tests/results/test_without_family/00_6choice_variable.changelog.gitlab.md
index e3f7726a4..7c7bf592a 100644
--- a/tests/results/test_without_family/00_6choice_variable.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_6choice_variable.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
diff --git a/tests/results/test_without_family/00_6choice_variable.changelog.html b/tests/results/test_without_family/00_6choice_variable.changelog.html
index b6cf0ad93..d3e441681 100644
--- a/tests/results/test_without_family/00_6choice_variable.changelog.html
+++ b/tests/results/test_without_family/00_6choice_variable.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A second variable. Default: |
-var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
+c
+var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (var1). Default: a |
diff --git a/tests/results/test_without_family/00_6choice_variable.changelog.md b/tests/results/test_without_family/00_6choice_variable.changelog.md
index 3306cb409..17b48b17c 100644
--- a/tests/results/test_without_family/00_6choice_variable.changelog.md
+++ b/tests/results/test_without_family/00_6choice_variable.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
diff --git a/tests/results/test_without_family/00_6choice_variable.changelog.sh b/tests/results/test_without_family/00_6choice_variable.changelog.sh
index 4fa025aa8..6b0f3100d 100644
--- a/tests/results/test_without_family/00_6choice_variable.changelog.sh
+++ b/tests/results/test_without_family/00_6choice_variable.changelog.sh
@@ -11,7 +11,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_6choice_variable.gitlab.md b/tests/results/test_without_family/00_6choice_variable.gitlab.md
index 47bd2f19b..879000e9f 100644
--- a/tests/results/test_without_family/00_6choice_variable.gitlab.md
+++ b/tests/results/test_without_family/00_6choice_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
diff --git a/tests/results/test_without_family/00_6choice_variable.html b/tests/results/test_without_family/00_6choice_variable.html
index 54009e310..1eab9c392 100644
--- a/tests/results/test_without_family/00_6choice_variable.html
+++ b/tests/results/test_without_family/00_6choice_variable.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A second variable. Default: |
-var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
+c
+var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (var1). Default: a |
diff --git a/tests/results/test_without_family/00_6choice_variable.json b/tests/results/test_without_family/00_6choice_variable.json
index 0dd023519..5fab92473 100644
--- a/tests/results/test_without_family/00_6choice_variable.json
+++ b/tests/results/test_without_family/00_6choice_variable.json
@@ -52,7 +52,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test_without_family/00_6choice_variable.md b/tests/results/test_without_family/00_6choice_variable.md
index 47bd2f19b..879000e9f 100644
--- a/tests/results/test_without_family/00_6choice_variable.md
+++ b/tests/results/test_without_family/00_6choice_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
diff --git a/tests/results/test_without_family/00_6choice_variable.sh b/tests/results/test_without_family/00_6choice_variable.sh
index 9103d5700..c833c096a 100644
--- a/tests/results/test_without_family/00_6choice_variable.sh
+++ b/tests/results/test_without_family/00_6choice_variable.sh
@@ -9,6 +9,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_6choice_variable_link.adoc b/tests/results/test_without_family/00_6choice_variable_link.adoc
index 84e92733f..2c707eea7 100644
--- a/tests/results/test_without_family/00_6choice_variable_link.adoc
+++ b/tests/results/test_without_family/00_6choice_variable_link.adoc
@@ -10,11 +10,11 @@
* c
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (var1). +
**Default**: a
| **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
-**Choices**: the value of the variable "a second variable" +
-**Default**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a second variable" (var1). +
+**Default**: the value of the variable "a first variable" (var2).
|====
diff --git a/tests/results/test_without_family/00_6choice_variable_link.changelog.adoc b/tests/results/test_without_family/00_6choice_variable_link.changelog.adoc
index e0679c927..e508b5e55 100644
--- a/tests/results/test_without_family/00_6choice_variable_link.changelog.adoc
+++ b/tests/results/test_without_family/00_6choice_variable_link.changelog.adoc
@@ -12,11 +12,11 @@
* c
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (var1). +
**Default**: a
| **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
-**Choices**: the value of the variable "a second variable" +
-**Default**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a second variable" (var1). +
+**Default**: the value of the variable "a first variable" (var2).
|====
diff --git a/tests/results/test_without_family/00_6choice_variable_link.changelog.gitlab.md b/tests/results/test_without_family/00_6choice_variable_link.changelog.gitlab.md
index 5c1fd2643..c456cd8dd 100644
--- a/tests/results/test_without_family/00_6choice_variable_link.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_6choice_variable_link.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
-| **var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)"
**Default**: the value of the variable "[a first variable](#var2)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
+| **var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)" (var1).
**Default**: the value of the variable "[a first variable](#var2)" (var2). |
diff --git a/tests/results/test_without_family/00_6choice_variable_link.changelog.html b/tests/results/test_without_family/00_6choice_variable_link.changelog.html
index c1a67ec4d..7b70cd4dc 100644
--- a/tests/results/test_without_family/00_6choice_variable_link.changelog.html
+++ b/tests/results/test_without_family/00_6choice_variable_link.changelog.html
@@ -2,14 +2,14 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A second variable. Default: |
-var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
-var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" Default: the value of the variable "a first variable" |
+c
+var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (var1). Default: a |
+var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" (var1). Default: the value of the variable "a first variable" (var2). |
diff --git a/tests/results/test_without_family/00_6choice_variable_link.changelog.md b/tests/results/test_without_family/00_6choice_variable_link.changelog.md
index e29cfcee0..13a5ece8f 100644
--- a/tests/results/test_without_family/00_6choice_variable_link.changelog.md
+++ b/tests/results/test_without_family/00_6choice_variable_link.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
-| **var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)"
**Default**: the value of the variable "[a first variable](#var2)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
+| **var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)" (var1).
**Default**: the value of the variable "[a first variable](#var2)" (var2). |
diff --git a/tests/results/test_without_family/00_6choice_variable_link.changelog.sh b/tests/results/test_without_family/00_6choice_variable_link.changelog.sh
index be7c40ebd..8b7ae3b06 100644
--- a/tests/results/test_without_family/00_6choice_variable_link.changelog.sh
+++ b/tests/results/test_without_family/00_6choice_variable_link.changelog.sh
@@ -11,13 +11,13 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar3[0m β A third variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var2). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_6choice_variable_link.gitlab.md b/tests/results/test_without_family/00_6choice_variable_link.gitlab.md
index 8213a8ca5..1240b5b68 100644
--- a/tests/results/test_without_family/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_without_family/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
-| **var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)"
**Default**: the value of the variable "[a first variable](#var2)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
+| **var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)" (var1).
**Default**: the value of the variable "[a first variable](#var2)" (var2). |
diff --git a/tests/results/test_without_family/00_6choice_variable_link.html b/tests/results/test_without_family/00_6choice_variable_link.html
index a1340fd28..634fa19c8 100644
--- a/tests/results/test_without_family/00_6choice_variable_link.html
+++ b/tests/results/test_without_family/00_6choice_variable_link.html
@@ -1,13 +1,13 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A second variable. Default: |
-var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
-var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" Default: the value of the variable "a first variable" |
+c
+var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (var1). Default: a |
+var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" (var1). Default: the value of the variable "a first variable" (var2). |
diff --git a/tests/results/test_without_family/00_6choice_variable_link.json b/tests/results/test_without_family/00_6choice_variable_link.json
index 7ead7e3b9..b17e4d089 100644
--- a/tests/results/test_without_family/00_6choice_variable_link.json
+++ b/tests/results/test_without_family/00_6choice_variable_link.json
@@ -52,7 +52,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
@@ -78,7 +78,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var2",
"type": "variable"
@@ -90,7 +90,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test_without_family/00_6choice_variable_link.md b/tests/results/test_without_family/00_6choice_variable_link.md
index 8213a8ca5..1240b5b68 100644
--- a/tests/results/test_without_family/00_6choice_variable_link.md
+++ b/tests/results/test_without_family/00_6choice_variable_link.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
-| **var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)"
**Default**: the value of the variable "[a first variable](#var2)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
+| **var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)" (var1).
**Default**: the value of the variable "[a first variable](#var2)" (var2). |
diff --git a/tests/results/test_without_family/00_6choice_variable_link.sh b/tests/results/test_without_family/00_6choice_variable_link.sh
index f19a692c1..2ab94ceac 100644
--- a/tests/results/test_without_family/00_6choice_variable_link.sh
+++ b/tests/results/test_without_family/00_6choice_variable_link.sh
@@ -9,12 +9,12 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar3[0m β A third variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var2). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_6choice_variable_link2.adoc b/tests/results/test_without_family/00_6choice_variable_link2.adoc
index 22e2991fd..461fb8406 100644
--- a/tests/results/test_without_family/00_6choice_variable_link2.adoc
+++ b/tests/results/test_without_family/00_6choice_variable_link2.adoc
@@ -10,11 +10,11 @@
* c
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (var1). +
**Default**: a
| **family.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
-**Choices**: the value of the variable "a second variable" +
-**Default**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a second variable" (var1). +
+**Default**: the value of the variable "a first variable" (var2).
|====
diff --git a/tests/results/test_without_family/00_6choice_variable_link2.changelog.adoc b/tests/results/test_without_family/00_6choice_variable_link2.changelog.adoc
index 5b21bc997..5ffeb63ff 100644
--- a/tests/results/test_without_family/00_6choice_variable_link2.changelog.adoc
+++ b/tests/results/test_without_family/00_6choice_variable_link2.changelog.adoc
@@ -12,11 +12,11 @@
* c
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
-**Choices**: the value of the variable "a second variable" +
+**Choices**: the value of the variable "a second variable" (var1). +
**Default**: a
| **family.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
-**Choices**: the value of the variable "a second variable" +
-**Default**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a second variable" (var1). +
+**Default**: the value of the variable "a first variable" (var2).
|====
diff --git a/tests/results/test_without_family/00_6choice_variable_link2.changelog.gitlab.md b/tests/results/test_without_family/00_6choice_variable_link2.changelog.gitlab.md
index 82e0d4253..1dd5ab014 100644
--- a/tests/results/test_without_family/00_6choice_variable_link2.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_6choice_variable_link2.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
-| **family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)"
**Default**: the value of the variable "[a first variable](#var2)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
+| **family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)" (var1).
**Default**: the value of the variable "[a first variable](#var2)" (var2). |
diff --git a/tests/results/test_without_family/00_6choice_variable_link2.changelog.html b/tests/results/test_without_family/00_6choice_variable_link2.changelog.html
index 5a5a6549a..7969eddc8 100644
--- a/tests/results/test_without_family/00_6choice_variable_link2.changelog.html
+++ b/tests/results/test_without_family/00_6choice_variable_link2.changelog.html
@@ -2,14 +2,14 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A second variable. Default: |
-var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
-family.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" Default: the value of the variable "a first variable" |
+c
+var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (var1). Default: a |
+family.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" (var1). Default: the value of the variable "a first variable" (var2). |
diff --git a/tests/results/test_without_family/00_6choice_variable_link2.changelog.md b/tests/results/test_without_family/00_6choice_variable_link2.changelog.md
index 8a5a02f18..aae9eca4a 100644
--- a/tests/results/test_without_family/00_6choice_variable_link2.changelog.md
+++ b/tests/results/test_without_family/00_6choice_variable_link2.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
-| **family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)"
**Default**: the value of the variable "[a first variable](#var2)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
+| **family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)" (var1).
**Default**: the value of the variable "[a first variable](#var2)" (var2). |
diff --git a/tests/results/test_without_family/00_6choice_variable_link2.changelog.sh b/tests/results/test_without_family/00_6choice_variable_link2.changelog.sh
index 7d88ba93b..f5bc6cd53 100644
--- a/tests/results/test_without_family/00_6choice_variable_link2.changelog.sh
+++ b/tests/results/test_without_family/00_6choice_variable_link2.changelog.sh
@@ -11,13 +11,13 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfamily.var3[0m β A third variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var2). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_6choice_variable_link2.gitlab.md b/tests/results/test_without_family/00_6choice_variable_link2.gitlab.md
index e5d779f41..af17b3ddd 100644
--- a/tests/results/test_without_family/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_without_family/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
-| **family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)"
**Default**: the value of the variable "[a first variable](#var2)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
+| **family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)" (var1).
**Default**: the value of the variable "[a first variable](#var2)" (var2). |
diff --git a/tests/results/test_without_family/00_6choice_variable_link2.html b/tests/results/test_without_family/00_6choice_variable_link2.html
index 9757476b2..060c32dc4 100644
--- a/tests/results/test_without_family/00_6choice_variable_link2.html
+++ b/tests/results/test_without_family/00_6choice_variable_link2.html
@@ -1,13 +1,13 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A second variable. Default: |
-var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" Default: a |
-family.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" Default: the value of the variable "a first variable" |
+c
+var2 choice standard mandatory | A first variable. Choices: the value of the variable "a second variable" (var1). Default: a |
+family.var3 choice standard mandatory | A third variable. Choices: the value of the variable "a second variable" (var1). Default: the value of the variable "a first variable" (var2). |
diff --git a/tests/results/test_without_family/00_6choice_variable_link2.json b/tests/results/test_without_family/00_6choice_variable_link2.json
index 9749b37ed..24beda974 100644
--- a/tests/results/test_without_family/00_6choice_variable_link2.json
+++ b/tests/results/test_without_family/00_6choice_variable_link2.json
@@ -52,7 +52,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
@@ -87,7 +87,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var2",
"type": "variable"
@@ -99,7 +99,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test_without_family/00_6choice_variable_link2.md b/tests/results/test_without_family/00_6choice_variable_link2.md
index e5d779f41..af17b3ddd 100644
--- a/tests/results/test_without_family/00_6choice_variable_link2.md
+++ b/tests/results/test_without_family/00_6choice_variable_link2.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)"
**Default**: a |
-| **family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)"
**Default**: the value of the variable "[a first variable](#var2)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a second variable](#var1)" (var1).
**Default**: a |
+| **family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[a second variable](#var1)" (var1).
**Default**: the value of the variable "[a first variable](#var2)" (var2). |
diff --git a/tests/results/test_without_family/00_6choice_variable_link2.sh b/tests/results/test_without_family/00_6choice_variable_link2.sh
index 7ee3cdf76..25f9af4ca 100644
--- a/tests/results/test_without_family/00_6choice_variable_link2.sh
+++ b/tests/results/test_without_family/00_6choice_variable_link2.sh
@@ -9,12 +9,12 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A first variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: a β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfamily.var3[0m β A third variable. β
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (var1). β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var2). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_6regexp_link.adoc b/tests/results/test_without_family/00_6regexp_link.adoc
index 481287b7b..5a0905865 100644
--- a/tests/results/test_without_family/00_6regexp_link.adoc
+++ b/tests/results/test_without_family/00_6regexp_link.adoc
@@ -12,7 +12,7 @@
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. +
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
-**Default**: the value of the variable "a first variable" +
+**Default**: the value of the variable "a first variable" (var1). +
**Examples**:
* '#b2b1b1'
diff --git a/tests/results/test_without_family/00_6regexp_link.changelog.adoc b/tests/results/test_without_family/00_6regexp_link.changelog.adoc
index fcd0fe321..42e3805e5 100644
--- a/tests/results/test_without_family/00_6regexp_link.changelog.adoc
+++ b/tests/results/test_without_family/00_6regexp_link.changelog.adoc
@@ -14,7 +14,7 @@
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. +
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
-**Default**: the value of the variable "a first variable" +
+**Default**: the value of the variable "a first variable" (var1). +
**Examples**:
* '#b2b1b1'
diff --git a/tests/results/test_without_family/00_6regexp_link.changelog.gitlab.md b/tests/results/test_without_family/00_6regexp_link.changelog.gitlab.md
index 8c60733f1..8b1c88f15 100644
--- a/tests/results/test_without_family/00_6regexp_link.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_6regexp_link.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 |
-| **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 "[a first variable](#var1)"
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 |
+| **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 "[a first variable](#var1)" (var1).
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
diff --git a/tests/results/test_without_family/00_6regexp_link.changelog.html b/tests/results/test_without_family/00_6regexp_link.changelog.html
index 79a59f26d..923e861a8 100644
--- a/tests/results/test_without_family/00_6regexp_link.changelog.html
+++ b/tests/results/test_without_family/00_6regexp_link.changelog.html
@@ -7,7 +7,7 @@
var1 regexp standard mandatory | A first variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: #a1a1a1 Examples: |
-var2 regexp standard mandatory | A second variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: the value of the variable "a first variable" Examples: - '#b2b1b1'
+var2 regexp standard mandatory | A second variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: the value of the variable "a first variable" (var1). Examples: |
|
diff --git a/tests/results/test_without_family/00_6regexp_link.changelog.md b/tests/results/test_without_family/00_6regexp_link.changelog.md
index 16e563c98..83938b03f 100644
--- a/tests/results/test_without_family/00_6regexp_link.changelog.md
+++ b/tests/results/test_without_family/00_6regexp_link.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 |
-| **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 "[a first variable](#var1)"
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 |
+| **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 "[a first variable](#var1)" (var1).
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
diff --git a/tests/results/test_without_family/00_6regexp_link.changelog.sh b/tests/results/test_without_family/00_6regexp_link.changelog.sh
index 76d553be8..7c5b9c9ba 100644
--- a/tests/results/test_without_family/00_6regexp_link.changelog.sh
+++ b/tests/results/test_without_family/00_6regexp_link.changelog.sh
@@ -17,7 +17,7 @@
β β expressions β
β β "^#(?:[0-9a-f]{3}){1,2}$" β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var1). β
β β [1mExamples[0m: β
β β β’ #b2b1b1 β
β β β’ #b3b2b2 β
diff --git a/tests/results/test_without_family/00_6regexp_link.gitlab.md b/tests/results/test_without_family/00_6regexp_link.gitlab.md
index c1bc545a4..f66d66a83 100644
--- a/tests/results/test_without_family/00_6regexp_link.gitlab.md
+++ b/tests/results/test_without_family/00_6regexp_link.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 |
-| **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 "[a first variable](#var1)"
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 |
+| **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 "[a first variable](#var1)" (var1).
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
diff --git a/tests/results/test_without_family/00_6regexp_link.html b/tests/results/test_without_family/00_6regexp_link.html
index b46935504..7b128dff7 100644
--- a/tests/results/test_without_family/00_6regexp_link.html
+++ b/tests/results/test_without_family/00_6regexp_link.html
@@ -5,7 +5,7 @@
var1 regexp standard mandatory | A first variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: #a1a1a1 Examples: |
-var2 regexp standard mandatory | A second variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: the value of the variable "a first variable" Examples: - '#b2b1b1'
+var2 regexp standard mandatory | A second variable. Validator: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" Default: the value of the variable "a first variable" (var1). Examples: |
|
diff --git a/tests/results/test_without_family/00_6regexp_link.json b/tests/results/test_without_family/00_6regexp_link.json
index 7980285a7..0a2a9fc76 100644
--- a/tests/results/test_without_family/00_6regexp_link.json
+++ b/tests/results/test_without_family/00_6regexp_link.json
@@ -47,7 +47,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test_without_family/00_6regexp_link.md b/tests/results/test_without_family/00_6regexp_link.md
index c1bc545a4..f66d66a83 100644
--- a/tests/results/test_without_family/00_6regexp_link.md
+++ b/tests/results/test_without_family/00_6regexp_link.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **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 |
-| **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 "[a first variable](#var1)"
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **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 |
+| **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 "[a first variable](#var1)" (var1).
**Examples**:
β’ #b2b1b1
β’ #b3b2b2 |
diff --git a/tests/results/test_without_family/00_6regexp_link.sh b/tests/results/test_without_family/00_6regexp_link.sh
index 5c6aef80a..2dbb6dbb7 100644
--- a/tests/results/test_without_family/00_6regexp_link.sh
+++ b/tests/results/test_without_family/00_6regexp_link.sh
@@ -15,7 +15,7 @@
β β expressions β
β β "^#(?:[0-9a-f]{3}){1,2}$" β
β β [1mDefault[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (var1). β
β β [1mExamples[0m: β
β β β’ #b2b1b1 β
β β β’ #b3b2b2 β
diff --git a/tests/results/test_without_family/00_9choice_variables.adoc b/tests/results/test_without_family/00_9choice_variables.adoc
index b357ce7de..a8ed7fac6 100644
--- a/tests/results/test_without_family/00_9choice_variables.adoc
+++ b/tests/results/test_without_family/00_9choice_variables.adoc
@@ -11,8 +11,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
**Choices**:
-* the value of the variable "the first source variable"
-* the value of the variable "the second source variable"
+* the value of the variable "the first source variable" (source_variable_1)
+* the value of the variable "the second source variable" (source_variable_2)
**Default**: val1
|====
diff --git a/tests/results/test_without_family/00_9choice_variables.changelog.adoc b/tests/results/test_without_family/00_9choice_variables.changelog.adoc
index f8ce3a42b..89b64718a 100644
--- a/tests/results/test_without_family/00_9choice_variables.changelog.adoc
+++ b/tests/results/test_without_family/00_9choice_variables.changelog.adoc
@@ -13,8 +13,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
**Choices**:
-* the value of the variable "the first source variable"
-* the value of the variable "the second source variable"
+* the value of the variable "the first source variable" (source_variable_1)
+* the value of the variable "the second source variable" (source_variable_2)
**Default**: val1
|====
diff --git a/tests/results/test_without_family/00_9choice_variables.changelog.gitlab.md b/tests/results/test_without_family/00_9choice_variables.changelog.gitlab.md
index 793af69a1..2c4e9468d 100644
--- a/tests/results/test_without_family/00_9choice_variables.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_9choice_variables.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
-| **source_variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.
**Default**: val2 |
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ the value of the variable "[the first source variable](#source_variable_1)"
β’ the value of the variable "[the second source variable](#source_variable_2)"
**Default**: val1 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
+| **source_variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.
**Default**: val2 |
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1)
β’ the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2)
**Default**: val1 |
diff --git a/tests/results/test_without_family/00_9choice_variables.changelog.html b/tests/results/test_without_family/00_9choice_variables.changelog.html
index c738db205..2af7adf92 100644
--- a/tests/results/test_without_family/00_9choice_variables.changelog.html
+++ b/tests/results/test_without_family/00_9choice_variables.changelog.html
@@ -7,8 +7,8 @@
source_variable_1 string standard mandatory | The first source variable. Default: val1 |
source_variable_2 string standard mandatory | The second source variable. Default: val2 |
-my_variable choice standard mandatory | A variable. Choices: - the value of the variable "the first source variable"
-- the value of the variable "the second source variable"
Default: val1 |
+my_variable choice standard mandatory | A variable. Choices: - the value of the variable "the first source variable" (source_variable_1)
+- the value of the variable "the second source variable" (source_variable_2)
Default: val1 |
diff --git a/tests/results/test_without_family/00_9choice_variables.changelog.md b/tests/results/test_without_family/00_9choice_variables.changelog.md
index 5c01f83b5..170314f29 100644
--- a/tests/results/test_without_family/00_9choice_variables.changelog.md
+++ b/tests/results/test_without_family/00_9choice_variables.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
-| **source_variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.
**Default**: val2 |
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ the value of the variable "[the first source variable](#source_variable_1)"
β’ the value of the variable "[the second source variable](#source_variable_2)"
**Default**: val1 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
+| **source_variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.
**Default**: val2 |
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1)
β’ the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2)
**Default**: val1 |
diff --git a/tests/results/test_without_family/00_9choice_variables.changelog.sh b/tests/results/test_without_family/00_9choice_variables.changelog.sh
index 60ae55029..59c175884 100644
--- a/tests/results/test_without_family/00_9choice_variables.changelog.sh
+++ b/tests/results/test_without_family/00_9choice_variables.changelog.sh
@@ -13,8 +13,10 @@
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
β β β’ the value of the variable "the β
β β first source variable" β
+β β (source_variable_1) β
β β β’ the value of the variable "the β
β β second source variable" β
+β β (source_variable_2) β
β β [1mDefault[0m: val1 β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_9choice_variables.gitlab.md b/tests/results/test_without_family/00_9choice_variables.gitlab.md
index 0ec391503..07182c8d3 100644
--- a/tests/results/test_without_family/00_9choice_variables.gitlab.md
+++ b/tests/results/test_without_family/00_9choice_variables.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
-| **source_variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.
**Default**: val2 |
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ the value of the variable "[the first source variable](#source_variable_1)"
β’ the value of the variable "[the second source variable](#source_variable_2)"
**Default**: val1 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
+| **source_variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.
**Default**: val2 |
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1)
β’ the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2)
**Default**: val1 |
diff --git a/tests/results/test_without_family/00_9choice_variables.html b/tests/results/test_without_family/00_9choice_variables.html
index 1fdedc922..07ca95a5e 100644
--- a/tests/results/test_without_family/00_9choice_variables.html
+++ b/tests/results/test_without_family/00_9choice_variables.html
@@ -5,8 +5,8 @@
source_variable_1 string standard mandatory | The first source variable. Default: val1 |
source_variable_2 string standard mandatory | The second source variable. Default: val2 |
-my_variable choice standard mandatory | A variable. Choices: - the value of the variable "the first source variable"
-- the value of the variable "the second source variable"
Default: val1 |
+my_variable choice standard mandatory | A variable. Choices: - the value of the variable "the first source variable" (source_variable_1)
+- the value of the variable "the second source variable" (source_variable_2)
Default: val1 |
diff --git a/tests/results/test_without_family/00_9choice_variables.json b/tests/results/test_without_family/00_9choice_variables.json
index 047841527..fea6cfbec 100644
--- a/tests/results/test_without_family/00_9choice_variables.json
+++ b/tests/results/test_without_family/00_9choice_variables.json
@@ -62,7 +62,7 @@
"name": "Choices",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "source_variable_1",
"type": "variable"
@@ -70,7 +70,7 @@
"description": "the first source variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "source_variable_2",
"type": "variable"
diff --git a/tests/results/test_without_family/00_9choice_variables.md b/tests/results/test_without_family/00_9choice_variables.md
index 0ec391503..07182c8d3 100644
--- a/tests/results/test_without_family/00_9choice_variables.md
+++ b/tests/results/test_without_family/00_9choice_variables.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
-| **source_variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.
**Default**: val2 |
-| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ the value of the variable "[the first source variable](#source_variable_1)"
β’ the value of the variable "[the second source variable](#source_variable_2)"
**Default**: val1 |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 |
+| **source_variable_2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.
**Default**: val2 |
+| **my_variable**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Choices**:
β’ the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1)
β’ the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2)
**Default**: val1 |
diff --git a/tests/results/test_without_family/00_9choice_variables.sh b/tests/results/test_without_family/00_9choice_variables.sh
index 90608807a..8b569bc54 100644
--- a/tests/results/test_without_family/00_9choice_variables.sh
+++ b/tests/results/test_without_family/00_9choice_variables.sh
@@ -11,7 +11,9 @@
β [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m β [1mChoices[0m: β
β β β’ the value of the variable "the β
β β first source variable" β
+β β (source_variable_1) β
β β β’ the value of the variable "the β
β β second source variable" β
+β β (source_variable_2) β
β β [1mDefault[0m: val1 β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.adoc b/tests/results/test_without_family/00_9default_calculation_multi_optional.adoc
index dc00e0f46..33192e739 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional.adoc
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.adoc
@@ -6,6 +6,6 @@
| **my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (my_variable) if it is defined
|====
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.adoc b/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.adoc
index a8539947e..88849cdc8 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.adoc
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.adoc
@@ -8,6 +8,6 @@
| **my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (my_variable) if it is defined
|====
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.gitlab.md b/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.gitlab.md
index 8df26dc0f..5b5d04938 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.html b/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.html
index 306931396..7771a6879 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.html
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-my_variable string standard mandatory | Default: val1 |
-my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+my_variable string standard mandatory | Default: val1 |
+my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (my_variable) if it is defined
|
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.md b/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.md
index cccb6f523..f299559a9 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.md
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.sh b/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.sh
index cb1c11513..3c9808ce4 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.sh
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmy_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (my_variable) if it is β
+β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_without_family/00_9default_calculation_multi_optional.gitlab.md
index 7e340dfba..e03007f04 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.html b/tests/results/test_without_family/00_9default_calculation_multi_optional.html
index dcd881e9a..fd87b7170 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional.html
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-my_variable string standard mandatory | Default: val1 |
-my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+my_variable string standard mandatory | Default: val1 |
+my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (my_variable) if it is defined
|
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.json b/tests/results/test_without_family/00_9default_calculation_multi_optional.json
index 152c7f4ac..7bbb814ec 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional.json
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.json
@@ -41,7 +41,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "my_variable",
"type": "variable"
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.md b/tests/results/test_without_family/00_9default_calculation_multi_optional.md
index 7e340dfba..e03007f04 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional.md
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.sh b/tests/results/test_without_family/00_9default_calculation_multi_optional.sh
index 171c38989..2c3c7484b 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional.sh
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmy_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (my_variable) if it is β
+β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.adoc b/tests/results/test_without_family/00_9default_calculation_multi_optional2.adoc
index dc00e0f46..33192e739 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.adoc
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.adoc
@@ -6,6 +6,6 @@
| **my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (my_variable) if it is defined
|====
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.adoc b/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.adoc
index a8539947e..88849cdc8 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.adoc
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.adoc
@@ -8,6 +8,6 @@
| **my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (my_variable) if it is defined
|====
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.gitlab.md b/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.gitlab.md
index 8df26dc0f..5b5d04938 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.html b/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.html
index 306931396..7771a6879 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.html
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-my_variable string standard mandatory | Default: val1 |
-my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+my_variable string standard mandatory | Default: val1 |
+my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (my_variable) if it is defined
|
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.md b/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.md
index cccb6f523..f299559a9 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.md
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.sh b/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.sh
index cb1c11513..3c9808ce4 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.sh
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmy_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (my_variable) if it is β
+β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_without_family/00_9default_calculation_multi_optional2.gitlab.md
index 7e340dfba..e03007f04 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.html b/tests/results/test_without_family/00_9default_calculation_multi_optional2.html
index dcd881e9a..fd87b7170 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.html
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-my_variable string standard mandatory | Default: val1 |
-my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+my_variable string standard mandatory | Default: val1 |
+my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (my_variable) if it is defined
|
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.json b/tests/results/test_without_family/00_9default_calculation_multi_optional2.json
index 152c7f4ac..7bbb814ec 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.json
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.json
@@ -41,7 +41,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "my_variable",
"type": "variable"
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.md b/tests/results/test_without_family/00_9default_calculation_multi_optional2.md
index 7e340dfba..e03007f04 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.md
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.sh b/tests/results/test_without_family/00_9default_calculation_multi_optional2.sh
index 171c38989..2c3c7484b 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.sh
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmy_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (my_variable) if it is β
+β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.adoc b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.adoc
index dc00e0f46..33192e739 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.adoc
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.adoc
@@ -6,6 +6,6 @@
| **my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (my_variable) if it is defined
|====
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.adoc b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.adoc
index a8539947e..88849cdc8 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.adoc
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.adoc
@@ -8,6 +8,6 @@
| **my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
-* the value of the variable "my_variable" if it is defined
+* the value of the variable "my_variable" (my_variable) if it is defined
|====
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.gitlab.md b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.gitlab.md
index 8df26dc0f..5b5d04938 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.html b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.html
index 306931396..7771a6879 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.html
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-my_variable string standard mandatory | Default: val1 |
-my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+my_variable string standard mandatory | Default: val1 |
+my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (my_variable) if it is defined
|
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.md b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.md
index cccb6f523..f299559a9 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.md
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.sh b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.sh
index cb1c11513..3c9808ce4 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.sh
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmy_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (my_variable) if it is β
+β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.gitlab.md
index 7e340dfba..e03007f04 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.html b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.html
index dcd881e9a..fd87b7170 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.html
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-my_variable string standard mandatory | Default: val1 |
-my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" if it is defined
|
+my_variable string standard mandatory | Default: val1 |
+my_calculated_variable string multiple standard mandatory unique | Default: - the value of the variable "my_variable" (my_variable) if it is defined
|
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.json b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.json
index 152c7f4ac..7bbb814ec 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.json
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.json
@@ -41,7 +41,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "my_variable",
"type": "variable"
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.md b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.md
index 7e340dfba..e03007f04 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.md
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: val1 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined |
diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.sh b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.sh
index 171c38989..2c3c7484b 100644
--- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.sh
+++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmy_calculated_variable[0m β [1mDefault[0m: β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β β’ the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" if it is defined β
+β [1;7mmandatory [0m [1;7m unique [0m β "my_variable" (my_variable) if it is β
+β β defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.adoc b/tests/results/test_without_family/00_9default_calculation_optional_exists.adoc
index de69aa7d7..e935769c5 100644
--- a/tests/results/test_without_family/00_9default_calculation_optional_exists.adoc
+++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.adoc
@@ -1,12 +1,12 @@
[cols="1a,1a"]
|====
-| Variable | Description
+| Variable | Description
| **my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
* val1
-* val2
+* val2
| **my_calculated_variable** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "my_variable" if it is defined
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "my_variable" (my_variable) if it is defined.
|====
diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.adoc b/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.adoc
index a6f548edd..aca45d405 100644
--- a/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.adoc
+++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.adoc
@@ -2,13 +2,13 @@
[cols="1a,1a"]
|====
-| Variable | Description
+| Variable | Description
| **my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
* val1
-* val2
+* val2
| **my_calculated_variable** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "my_variable" if it is defined
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "my_variable" (my_variable) if it is defined.
|====
diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.gitlab.md b/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.gitlab.md
index 83b396b40..830ccb931 100644
--- a/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined. |
diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.html b/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.html
index 0cd2ef490..002f33cbe 100644
--- a/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.html
+++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
my_variable string multiple standard mandatory unique | Default: |
-my_calculated_variable string multiple standard mandatory unique | Default: the value of the variable "my_variable" if it is defined |
+val2
+my_calculated_variable string multiple standard mandatory unique | Default: the value of the variable "my_variable" (my_variable) if it is defined. |
diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.md b/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.md
index 91f674987..b049b43b6 100644
--- a/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.md
+++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined. |
diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.sh b/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.sh
index 31e027da6..07ccb2208 100644
--- a/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.sh
+++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.sh
@@ -8,7 +8,7 @@
β [1;7mmandatory [0m [1;7m unique [0m β β’ val2 β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmy_calculated_variable[0m β [1mDefault[0m: the value of the variable β
-β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "my_variable" if it is defined β
-β [1;7mmandatory [0m [1;7m unique [0m β β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "my_variable" (my_variable) if it is β
+β [1;7mmandatory [0m [1;7m unique [0m β defined. β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_without_family/00_9default_calculation_optional_exists.gitlab.md
index 6c39c245b..cd4db4a08 100644
--- a/tests/results/test_without_family/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined. |
diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.html b/tests/results/test_without_family/00_9default_calculation_optional_exists.html
index 80127d5fd..5432c28a5 100644
--- a/tests/results/test_without_family/00_9default_calculation_optional_exists.html
+++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
my_variable string multiple standard mandatory unique | Default: |
-my_calculated_variable string multiple standard mandatory unique | Default: the value of the variable "my_variable" if it is defined |
+val2
+my_calculated_variable string multiple standard mandatory unique | Default: the value of the variable "my_variable" (my_variable) if it is defined. |
diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.json b/tests/results/test_without_family/00_9default_calculation_optional_exists.json
index 6f0f46253..09460430d 100644
--- a/tests/results/test_without_family/00_9default_calculation_optional_exists.json
+++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.json
@@ -50,7 +50,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined.",
"path": {
"path": "my_variable",
"type": "variable"
diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.md b/tests/results/test_without_family/00_9default_calculation_optional_exists.md
index 6c39c245b..cd4db4a08 100644
--- a/tests/results/test_without_family/00_9default_calculation_optional_exists.md
+++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
-| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
-| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#my_variable)" if it is defined |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|
+| **my_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ val1
β’ val2 |
+| **my_calculated_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**: the value of the variable "[my_variable](#my_variable)" (my_variable) if it is defined. |
diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.sh b/tests/results/test_without_family/00_9default_calculation_optional_exists.sh
index e20b39fad..84985a730 100644
--- a/tests/results/test_without_family/00_9default_calculation_optional_exists.sh
+++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.sh
@@ -6,6 +6,6 @@
β [1;7mmandatory [0m [1;7m unique [0m β β’ val2 β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mmy_calculated_variable[0m β [1mDefault[0m: the value of the variable β
-β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "my_variable" if it is defined β
-β [1;7mmandatory [0m [1;7m unique [0m β β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "my_variable" (my_variable) if it is β
+β [1;7mmandatory [0m [1;7m unique [0m β defined. β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_9default_information_other_variable.adoc b/tests/results/test_without_family/00_9default_information_other_variable.adoc
index 80bdf3a90..b508717ab 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable.adoc
+++ b/tests/results/test_without_family/00_9default_information_other_variable.adoc
@@ -5,6 +5,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "var1".
+**Default**: the value of the information "test_information" of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test_without_family/00_9default_information_other_variable.changelog.adoc b/tests/results/test_without_family/00_9default_information_other_variable.changelog.adoc
index 976ac9aad..2fb5385ca 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable.changelog.adoc
+++ b/tests/results/test_without_family/00_9default_information_other_variable.changelog.adoc
@@ -7,6 +7,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "var1".
+**Default**: the value of the information "test_information" of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test_without_family/00_9default_information_other_variable.changelog.gitlab.md b/tests/results/test_without_family/00_9default_information_other_variable.changelog.gitlab.md
index 20560f262..d736497a3 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_9default_information_other_variable.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
-| **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 "var1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_9default_information_other_variable.changelog.html b/tests/results/test_without_family/00_9default_information_other_variable.changelog.html
index 252ade229..b9f2a58ff 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable.changelog.html
+++ b/tests/results/test_without_family/00_9default_information_other_variable.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-var1 string basic mandatory | A first variable. |
-var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "var1". |
+var1 string basic mandatory | A first variable. |
+var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "a first variable" (var1). |
diff --git a/tests/results/test_without_family/00_9default_information_other_variable.changelog.md b/tests/results/test_without_family/00_9default_information_other_variable.changelog.md
index 2993d94b8..f0dbc5bc0 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable.changelog.md
+++ b/tests/results/test_without_family/00_9default_information_other_variable.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
-| **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 "var1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_9default_information_other_variable.changelog.sh b/tests/results/test_without_family/00_9default_information_other_variable.changelog.sh
index 2ee3d5a0f..73c24cb95 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable.changelog.sh
+++ b/tests/results/test_without_family/00_9default_information_other_variable.changelog.sh
@@ -9,6 +9,7 @@
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "var1". β
+β β the variable "a first variable" β
+β β (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_9default_information_other_variable.gitlab.md b/tests/results/test_without_family/00_9default_information_other_variable.gitlab.md
index 46dcf9c9d..86c82d56b 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_without_family/00_9default_information_other_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
-| **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 "var1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_9default_information_other_variable.html b/tests/results/test_without_family/00_9default_information_other_variable.html
index c24375e60..b51d190fa 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable.html
+++ b/tests/results/test_without_family/00_9default_information_other_variable.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-var1 string basic mandatory | A first variable. |
-var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "var1". |
+var1 string basic mandatory | A first variable. |
+var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "a first variable" (var1). |
diff --git a/tests/results/test_without_family/00_9default_information_other_variable.json b/tests/results/test_without_family/00_9default_information_other_variable.json
index d9b7e9d9c..3b8274caa 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable.json
+++ b/tests/results/test_without_family/00_9default_information_other_variable.json
@@ -31,7 +31,15 @@
"type": "variable",
"default": {
"name": "Default",
- "values": "the value of the information \"test_information\" of the variable \"var1\"."
+ "values": {
+ "message": "the value of the information \"test_information\" of the variable {0}.",
+ "path": {
+ "type": "information",
+ "information": "test_information",
+ "path": "var1"
+ },
+ "description": "a first variable"
+ }
},
"variable_type": "string"
}
diff --git a/tests/results/test_without_family/00_9default_information_other_variable.md b/tests/results/test_without_family/00_9default_information_other_variable.md
index 46dcf9c9d..86c82d56b 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable.md
+++ b/tests/results/test_without_family/00_9default_information_other_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
-| **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 "var1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_9default_information_other_variable.sh b/tests/results/test_without_family/00_9default_information_other_variable.sh
index f50b5ded2..41f0d3ff9 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable.sh
+++ b/tests/results/test_without_family/00_9default_information_other_variable.sh
@@ -7,5 +7,6 @@
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "var1". β
+β β the variable "a first variable" β
+β β (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_9default_information_other_variable2.adoc b/tests/results/test_without_family/00_9default_information_other_variable2.adoc
index 80bdf3a90..b508717ab 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable2.adoc
+++ b/tests/results/test_without_family/00_9default_information_other_variable2.adoc
@@ -5,6 +5,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "var1".
+**Default**: the value of the information "test_information" of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test_without_family/00_9default_information_other_variable2.changelog.adoc b/tests/results/test_without_family/00_9default_information_other_variable2.changelog.adoc
index 976ac9aad..2fb5385ca 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable2.changelog.adoc
+++ b/tests/results/test_without_family/00_9default_information_other_variable2.changelog.adoc
@@ -7,6 +7,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "var1".
+**Default**: the value of the information "test_information" of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test_without_family/00_9default_information_other_variable2.changelog.gitlab.md b/tests/results/test_without_family/00_9default_information_other_variable2.changelog.gitlab.md
index 20560f262..d736497a3 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable2.changelog.gitlab.md
+++ b/tests/results/test_without_family/00_9default_information_other_variable2.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
-| **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 "var1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_9default_information_other_variable2.changelog.html b/tests/results/test_without_family/00_9default_information_other_variable2.changelog.html
index 252ade229..b9f2a58ff 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable2.changelog.html
+++ b/tests/results/test_without_family/00_9default_information_other_variable2.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-var1 string basic mandatory | A first variable. |
-var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "var1". |
+var1 string basic mandatory | A first variable. |
+var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "a first variable" (var1). |
diff --git a/tests/results/test_without_family/00_9default_information_other_variable2.changelog.md b/tests/results/test_without_family/00_9default_information_other_variable2.changelog.md
index 2993d94b8..f0dbc5bc0 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable2.changelog.md
+++ b/tests/results/test_without_family/00_9default_information_other_variable2.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
-| **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 "var1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_9default_information_other_variable2.changelog.sh b/tests/results/test_without_family/00_9default_information_other_variable2.changelog.sh
index 2ee3d5a0f..73c24cb95 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable2.changelog.sh
+++ b/tests/results/test_without_family/00_9default_information_other_variable2.changelog.sh
@@ -9,6 +9,7 @@
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "var1". β
+β β the variable "a first variable" β
+β β (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/00_9default_information_other_variable2.gitlab.md b/tests/results/test_without_family/00_9default_information_other_variable2.gitlab.md
index 46dcf9c9d..86c82d56b 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_without_family/00_9default_information_other_variable2.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
-| **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 "var1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_9default_information_other_variable2.html b/tests/results/test_without_family/00_9default_information_other_variable2.html
index c24375e60..b51d190fa 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable2.html
+++ b/tests/results/test_without_family/00_9default_information_other_variable2.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-var1 string basic mandatory | A first variable. |
-var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "var1". |
+var1 string basic mandatory | A first variable. |
+var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "a first variable" (var1). |
diff --git a/tests/results/test_without_family/00_9default_information_other_variable2.json b/tests/results/test_without_family/00_9default_information_other_variable2.json
index d9b7e9d9c..3b8274caa 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable2.json
+++ b/tests/results/test_without_family/00_9default_information_other_variable2.json
@@ -31,7 +31,15 @@
"type": "variable",
"default": {
"name": "Default",
- "values": "the value of the information \"test_information\" of the variable \"var1\"."
+ "values": {
+ "message": "the value of the information \"test_information\" of the variable {0}.",
+ "path": {
+ "type": "information",
+ "information": "test_information",
+ "path": "var1"
+ },
+ "description": "a first variable"
+ }
},
"variable_type": "string"
}
diff --git a/tests/results/test_without_family/00_9default_information_other_variable2.md b/tests/results/test_without_family/00_9default_information_other_variable2.md
index 46dcf9c9d..86c82d56b 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable2.md
+++ b/tests/results/test_without_family/00_9default_information_other_variable2.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
-| **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 "var1". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/00_9default_information_other_variable2.sh b/tests/results/test_without_family/00_9default_information_other_variable2.sh
index f50b5ded2..41f0d3ff9 100644
--- a/tests/results/test_without_family/00_9default_information_other_variable2.sh
+++ b/tests/results/test_without_family/00_9default_information_other_variable2.sh
@@ -7,5 +7,6 @@
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "var1". β
+β β the variable "a first variable" β
+β β (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/01_9choice_variable_multi.adoc b/tests/results/test_without_family/01_9choice_variable_multi.adoc
index a37951702..ea5e4530a 100644
--- a/tests/results/test_without_family/01_9choice_variable_multi.adoc
+++ b/tests/results/test_without_family/01_9choice_variable_multi.adoc
@@ -10,6 +10,6 @@
* c
| **variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A second variable. +
-**Choices**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a first variable" (variable1).
|====
diff --git a/tests/results/test_without_family/01_9choice_variable_multi.changelog.adoc b/tests/results/test_without_family/01_9choice_variable_multi.changelog.adoc
index 4828025df..42106c81a 100644
--- a/tests/results/test_without_family/01_9choice_variable_multi.changelog.adoc
+++ b/tests/results/test_without_family/01_9choice_variable_multi.changelog.adoc
@@ -12,6 +12,6 @@
* c
| **variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A second variable. +
-**Choices**: the value of the variable "a first variable"
+**Choices**: the value of the variable "a first variable" (variable1).
|====
diff --git a/tests/results/test_without_family/01_9choice_variable_multi.changelog.gitlab.md b/tests/results/test_without_family/01_9choice_variable_multi.changelog.gitlab.md
index db43754cc..4bba0b5a1 100644
--- a/tests/results/test_without_family/01_9choice_variable_multi.changelog.gitlab.md
+++ b/tests/results/test_without_family/01_9choice_variable_multi.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ a
β’ b
β’ c |
-| **variable2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Choices**: the value of the variable "[a first variable](#variable1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ a
β’ b
β’ c |
+| **variable2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Choices**: the value of the variable "[a first variable](#variable1)" (variable1). |
diff --git a/tests/results/test_without_family/01_9choice_variable_multi.changelog.html b/tests/results/test_without_family/01_9choice_variable_multi.changelog.html
index b6047af28..2533aa5e6 100644
--- a/tests/results/test_without_family/01_9choice_variable_multi.changelog.html
+++ b/tests/results/test_without_family/01_9choice_variable_multi.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
variable1 string multiple standard mandatory unique | A first variable. Default: |
-variable2 choice basic mandatory | A second variable. Choices: the value of the variable "a first variable" |
+c
+variable2 choice basic mandatory | A second variable. Choices: the value of the variable "a first variable" (variable1). |
diff --git a/tests/results/test_without_family/01_9choice_variable_multi.changelog.md b/tests/results/test_without_family/01_9choice_variable_multi.changelog.md
index 0c17c91c6..dde43800d 100644
--- a/tests/results/test_without_family/01_9choice_variable_multi.changelog.md
+++ b/tests/results/test_without_family/01_9choice_variable_multi.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ a
β’ b
β’ c |
-| **variable2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Choices**: the value of the variable "[a first variable](#variable1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ a
β’ b
β’ c |
+| **variable2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Choices**: the value of the variable "[a first variable](#variable1)" (variable1). |
diff --git a/tests/results/test_without_family/01_9choice_variable_multi.changelog.sh b/tests/results/test_without_family/01_9choice_variable_multi.changelog.sh
index 1c5de7380..92c363e8b 100644
--- a/tests/results/test_without_family/01_9choice_variable_multi.changelog.sh
+++ b/tests/results/test_without_family/01_9choice_variable_multi.changelog.sh
@@ -11,6 +11,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable2[0m β A second variable. β
β [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (variable1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/01_9choice_variable_multi.gitlab.md b/tests/results/test_without_family/01_9choice_variable_multi.gitlab.md
index 2588cc24b..230cc86f4 100644
--- a/tests/results/test_without_family/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_without_family/01_9choice_variable_multi.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ a
β’ b
β’ c |
-| **variable2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Choices**: the value of the variable "[a first variable](#variable1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ a
β’ b
β’ c |
+| **variable2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Choices**: the value of the variable "[a first variable](#variable1)" (variable1). |
diff --git a/tests/results/test_without_family/01_9choice_variable_multi.html b/tests/results/test_without_family/01_9choice_variable_multi.html
index 46a350bb8..1e81c43ff 100644
--- a/tests/results/test_without_family/01_9choice_variable_multi.html
+++ b/tests/results/test_without_family/01_9choice_variable_multi.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
variable1 string multiple standard mandatory unique | A first variable. Default: |
-variable2 choice basic mandatory | A second variable. Choices: the value of the variable "a first variable" |
+c
+variable2 choice basic mandatory | A second variable. Choices: the value of the variable "a first variable" (variable1). |
diff --git a/tests/results/test_without_family/01_9choice_variable_multi.json b/tests/results/test_without_family/01_9choice_variable_multi.json
index 55e63e93b..2833bff24 100644
--- a/tests/results/test_without_family/01_9choice_variable_multi.json
+++ b/tests/results/test_without_family/01_9choice_variable_multi.json
@@ -48,7 +48,7 @@
"choices": {
"name": "Choices",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "variable1",
"type": "variable"
diff --git a/tests/results/test_without_family/01_9choice_variable_multi.md b/tests/results/test_without_family/01_9choice_variable_multi.md
index 2588cc24b..230cc86f4 100644
--- a/tests/results/test_without_family/01_9choice_variable_multi.md
+++ b/tests/results/test_without_family/01_9choice_variable_multi.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ a
β’ b
β’ c |
-| **variable2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Choices**: the value of the variable "[a first variable](#variable1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ a
β’ b
β’ c |
+| **variable2**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Choices**: the value of the variable "[a first variable](#variable1)" (variable1). |
diff --git a/tests/results/test_without_family/01_9choice_variable_multi.sh b/tests/results/test_without_family/01_9choice_variable_multi.sh
index c33614e64..8c6bb3267 100644
--- a/tests/results/test_without_family/01_9choice_variable_multi.sh
+++ b/tests/results/test_without_family/01_9choice_variable_multi.sh
@@ -9,5 +9,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable2[0m β A second variable. β
β [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m β [1mChoices[0m: the value of the variable β
-β β "a first variable" β
+β β "a first variable" (variable1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated.adoc b/tests/results/test_without_family/04_1auto_save_and_calculated.adoc
index 26cdc1d37..a17ae3b2b 100644
--- a/tests/results/test_without_family/04_1auto_save_and_calculated.adoc
+++ b/tests/results/test_without_family/04_1auto_save_and_calculated.adoc
@@ -6,6 +6,6 @@
**Default**: no
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | A second variable. +
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.adoc b/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.adoc
index 331092d86..c0c296701 100644
--- a/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.adoc
+++ b/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: no
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | A second variable. +
-**Default**: the value of the variable "a first variable"
+**Default**: the value of the variable "a first variable" (var1).
|====
diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.gitlab.md b/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.gitlab.md
index b3ecae803..88af55c06 100644
--- a/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.gitlab.md
+++ b/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
-| **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 "[a first variable](#var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.html b/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.html
index 3244d2eaa..11d0cacdd 100644
--- a/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.html
+++ b/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-var1 string standard mandatory | A first variable. Default: no |
-var2 string basic mandatory auto modified | A second variable. Default: the value of the variable "a first variable" |
+var1 string standard mandatory | A first variable. Default: no |
+var2 string basic mandatory auto modified | A second variable. Default: the value of the variable "a first variable" (var1). |
diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.md b/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.md
index 4e7ac970d..cc1451fcf 100644
--- a/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.md
+++ b/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
-| **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 "[a first variable](#var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.sh b/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.sh
index a2471da0d..264a7ed1a 100644
--- a/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.sh
+++ b/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.sh
@@ -8,6 +8,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m auto [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmodified [0m β "a first variable" β
+β [1;7mmodified [0m β "a first variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_without_family/04_1auto_save_and_calculated.gitlab.md
index 2e06af2f5..fcdf08b47 100644
--- a/tests/results/test_without_family/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_without_family/04_1auto_save_and_calculated.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
-| **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 "[a first variable](#var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated.html b/tests/results/test_without_family/04_1auto_save_and_calculated.html
index e0d8379b7..896094cf7 100644
--- a/tests/results/test_without_family/04_1auto_save_and_calculated.html
+++ b/tests/results/test_without_family/04_1auto_save_and_calculated.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-var1 string standard mandatory | A first variable. Default: no |
-var2 string basic mandatory auto modified | A second variable. Default: the value of the variable "a first variable" |
+var1 string standard mandatory | A first variable. Default: no |
+var2 string basic mandatory auto modified | A second variable. Default: the value of the variable "a first variable" (var1). |
diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated.json b/tests/results/test_without_family/04_1auto_save_and_calculated.json
index 8a7210f39..3d0abf19f 100644
--- a/tests/results/test_without_family/04_1auto_save_and_calculated.json
+++ b/tests/results/test_without_family/04_1auto_save_and_calculated.json
@@ -42,7 +42,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated.md b/tests/results/test_without_family/04_1auto_save_and_calculated.md
index 2e06af2f5..fcdf08b47 100644
--- a/tests/results/test_without_family/04_1auto_save_and_calculated.md
+++ b/tests/results/test_without_family/04_1auto_save_and_calculated.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
-| **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 "[a first variable](#var1)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: no |
+| **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 "[a first variable](#var1)" (var1). |
diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated.sh b/tests/results/test_without_family/04_1auto_save_and_calculated.sh
index 5c100132b..3a690ab84 100644
--- a/tests/results/test_without_family/04_1auto_save_and_calculated.sh
+++ b/tests/results/test_without_family/04_1auto_save_and_calculated.sh
@@ -6,5 +6,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m auto [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmodified [0m β "a first variable" β
+β [1;7mmodified [0m β "a first variable" (var1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden.adoc b/tests/results/test_without_family/04_1default_calculation_hidden.adoc
index 1e09d9b5d..2a6661f18 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden.adoc
+++ b/tests/results/test_without_family/04_1default_calculation_hidden.adoc
@@ -6,7 +6,7 @@
**Default**: value
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a first variable" has the value "value".
+**Disabled**: when the variable "a first variable" (var1) has the value "value".
| **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. +
**Default**: depends on a calculation.
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden.changelog.adoc b/tests/results/test_without_family/04_1default_calculation_hidden.changelog.adoc
index 91d42205a..c9ce3d147 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden.changelog.adoc
+++ b/tests/results/test_without_family/04_1default_calculation_hidden.changelog.adoc
@@ -8,7 +8,7 @@
**Default**: value
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a first variable" has the value "value".
+**Disabled**: when the variable "a first variable" (var1) has the value "value".
| **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. +
**Default**: depends on a calculation.
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden.changelog.gitlab.md b/tests/results/test_without_family/04_1default_calculation_hidden.changelog.gitlab.md
index 39d3c07bd..43e9ed476 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden.changelog.gitlab.md
+++ b/tests/results/test_without_family/04_1default_calculation_hidden.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" has the value "value". |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" (var1) has the value "value". |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden.changelog.html b/tests/results/test_without_family/04_1default_calculation_hidden.changelog.html
index e11e42653..36fa566a3 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden.changelog.html
+++ b/tests/results/test_without_family/04_1default_calculation_hidden.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
-var1 string standard mandatory | A first variable. Default: value |
-var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" has the value "value". |
-var3 string standard mandatory | A third variable. Default: depends on a calculation. |
+var1 string standard mandatory | A first variable. Default: value |
+var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" (var1) has the value "value". |
+var3 string standard mandatory | A third variable. Default: depends on a calculation. |
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden.changelog.md b/tests/results/test_without_family/04_1default_calculation_hidden.changelog.md
index 39458eefc..b236b82f2 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden.changelog.md
+++ b/tests/results/test_without_family/04_1default_calculation_hidden.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" has the value "value". |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" (var1) has the value "value". |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden.changelog.sh b/tests/results/test_without_family/04_1default_calculation_hidden.changelog.sh
index 67a11ccee..4e0672c45 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden.changelog.sh
+++ b/tests/results/test_without_family/04_1default_calculation_hidden.changelog.sh
@@ -8,7 +8,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a first β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "value". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (var1) has the value β
+β β "value". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar3[0m β A third variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: depends on a calculation. β
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden.gitlab.md b/tests/results/test_without_family/04_1default_calculation_hidden.gitlab.md
index eff50c227..39cf66c25 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_without_family/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" has the value "value". |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" (var1) has the value "value". |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden.html b/tests/results/test_without_family/04_1default_calculation_hidden.html
index 048ab90ac..ea67c227e 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden.html
+++ b/tests/results/test_without_family/04_1default_calculation_hidden.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-var1 string standard mandatory | A first variable. Default: value |
-var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" has the value "value". |
-var3 string standard mandatory | A third variable. Default: depends on a calculation. |
+var1 string standard mandatory | A first variable. Default: value |
+var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" (var1) has the value "value". |
+var3 string standard mandatory | A third variable. Default: depends on a calculation. |
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden.json b/tests/results/test_without_family/04_1default_calculation_hidden.json
index bdef2bcb5..5c9354d23 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden.json
+++ b/tests/results/test_without_family/04_1default_calculation_hidden.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"value\".",
+ "message": "when the variable {0} has the value \"value\".",
"path": {
"path": "var1"
},
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden.md b/tests/results/test_without_family/04_1default_calculation_hidden.md
index eff50c227..39cf66c25 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden.md
+++ b/tests/results/test_without_family/04_1default_calculation_hidden.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" has the value "value". |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" (var1) has the value "value". |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden.sh b/tests/results/test_without_family/04_1default_calculation_hidden.sh
index 3f7d743f4..ce40adfa5 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden.sh
+++ b/tests/results/test_without_family/04_1default_calculation_hidden.sh
@@ -6,7 +6,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a first β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "value". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (var1) has the value β
+β β "value". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar3[0m β A third variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: depends on a calculation. β
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_2.adoc b/tests/results/test_without_family/04_1default_calculation_hidden_2.adoc
index 1e09d9b5d..2a6661f18 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden_2.adoc
+++ b/tests/results/test_without_family/04_1default_calculation_hidden_2.adoc
@@ -6,7 +6,7 @@
**Default**: value
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a first variable" has the value "value".
+**Disabled**: when the variable "a first variable" (var1) has the value "value".
| **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. +
**Default**: depends on a calculation.
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.adoc b/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.adoc
index 91d42205a..c9ce3d147 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.adoc
+++ b/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.adoc
@@ -8,7 +8,7 @@
**Default**: value
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a first variable" has the value "value".
+**Disabled**: when the variable "a first variable" (var1) has the value "value".
| **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. +
**Default**: depends on a calculation.
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.gitlab.md b/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.gitlab.md
index 39d3c07bd..43e9ed476 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.gitlab.md
+++ b/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" has the value "value". |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" (var1) has the value "value". |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.html b/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.html
index e11e42653..36fa566a3 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.html
+++ b/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
-var1 string standard mandatory | A first variable. Default: value |
-var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" has the value "value". |
-var3 string standard mandatory | A third variable. Default: depends on a calculation. |
+var1 string standard mandatory | A first variable. Default: value |
+var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" (var1) has the value "value". |
+var3 string standard mandatory | A third variable. Default: depends on a calculation. |
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.md b/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.md
index 39458eefc..b236b82f2 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.md
+++ b/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" has the value "value". |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" (var1) has the value "value". |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.sh b/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.sh
index 67a11ccee..4e0672c45 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.sh
+++ b/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.sh
@@ -8,7 +8,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a first β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "value". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (var1) has the value β
+β β "value". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar3[0m β A third variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: depends on a calculation. β
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_without_family/04_1default_calculation_hidden_2.gitlab.md
index eff50c227..39cf66c25 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_without_family/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" has the value "value". |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" (var1) has the value "value". |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_2.html b/tests/results/test_without_family/04_1default_calculation_hidden_2.html
index 048ab90ac..ea67c227e 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden_2.html
+++ b/tests/results/test_without_family/04_1default_calculation_hidden_2.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-var1 string standard mandatory | A first variable. Default: value |
-var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" has the value "value". |
-var3 string standard mandatory | A third variable. Default: depends on a calculation. |
+var1 string standard mandatory | A first variable. Default: value |
+var2 string basic mandatory disabled | A second variable. Disabled: when the variable "a first variable" (var1) has the value "value". |
+var3 string standard mandatory | A third variable. Default: depends on a calculation. |
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_2.json b/tests/results/test_without_family/04_1default_calculation_hidden_2.json
index bdef2bcb5..5c9354d23 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden_2.json
+++ b/tests/results/test_without_family/04_1default_calculation_hidden_2.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"value\".",
+ "message": "when the variable {0} has the value \"value\".",
"path": {
"path": "var1"
},
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_2.md b/tests/results/test_without_family/04_1default_calculation_hidden_2.md
index eff50c227..39cf66c25 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden_2.md
+++ b/tests/results/test_without_family/04_1default_calculation_hidden_2.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" has the value "value". |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Default**: value |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a first variable](#var1)" (var1) has the value "value". |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: depends on a calculation. |
diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_2.sh b/tests/results/test_without_family/04_1default_calculation_hidden_2.sh
index 3f7d743f4..ce40adfa5 100644
--- a/tests/results/test_without_family/04_1default_calculation_hidden_2.sh
+++ b/tests/results/test_without_family/04_1default_calculation_hidden_2.sh
@@ -6,7 +6,8 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a first β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "value". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (var1) has the value β
+β β "value". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar3[0m β A third variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: depends on a calculation. β
diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional_default.adoc b/tests/results/test_without_family/04_5disabled_calculation_optional_default.adoc
index 754e4d6f3..2a0523dbc 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_optional_default.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_optional_default.adoc
@@ -8,9 +8,9 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable.
| **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. +
-**Hidden**: when the variable "a condition" is defined and has the value "true".
+**Hidden**: when the variable "a condition" (condition) is defined and has the value "true".
| **var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A forth variable. +
-**Hidden**: when the variable "a condition" is defined and has the value "true".
+**Hidden**: when the variable "a condition" (condition) is defined and has the value "true".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.adoc
index ed290d30c..fe77a414b 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.adoc
@@ -10,9 +10,9 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable.
| **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. +
-**Hidden**: when the variable "a condition" is defined and has the value "true".
+**Hidden**: when the variable "a condition" (condition) is defined and has the value "true".
| **var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A forth variable. +
-**Hidden**: when the variable "a condition" is defined and has the value "true".
+**Hidden**: when the variable "a condition" (condition) is defined and has the value "true".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.gitlab.md
index 86b33f6db..0ac4a9177 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#condition)" is defined and has the value "true". |
-| **var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.
**Hidden**: when the variable "[a condition](#condition)" is defined and has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#condition)" (condition) is defined and has the value "true". |
+| **var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.
**Hidden**: when the variable "[a condition](#condition)" (condition) is defined and has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.html b/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.html
index 978687792..e47515b1f 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-var1 string standard | A first variable. |
-var3 string standard hidden | A second variable. Hidden: when the variable "a condition" is defined and has the value "true". |
-var4 string standard hidden | A forth variable. Hidden: when the variable "a condition" is defined and has the value "true". |
+condition boolean standard mandatory | A condition. Default: false |
+var1 string standard | A first variable. |
+var3 string standard hidden | A second variable. Hidden: when the variable "a condition" (condition) is defined and has the value "true". |
+var4 string standard hidden | A forth variable. Hidden: when the variable "a condition" (condition) is defined and has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.md b/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.md
index 5f0566b55..9f4ddd1a5 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#condition)" is defined and has the value "true". |
-| **var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.
**Hidden**: when the variable "[a condition](#condition)" is defined and has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#condition)" (condition) is defined and has the value "true". |
+| **var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.
**Hidden**: when the variable "[a condition](#condition)" (condition) is defined and has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.sh
index 03b31035f..a1d530e71 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.sh
@@ -11,12 +11,12 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar3[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m β [1mHidden[0m: when the variable "a β
-β β condition" is defined and has the β
-β β value "true". β
+β β condition" (condition) is defined β
+β β and has the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar4[0m β A forth variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m β [1mHidden[0m: when the variable "a β
-β β condition" is defined and has the β
-β β value "true". β
+β β condition" (condition) is defined β
+β β and has the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_optional_default.gitlab.md
index 06e793c78..413937c92 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#condition)" is defined and has the value "true". |
-| **var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.
**Hidden**: when the variable "[a condition](#condition)" is defined and has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#condition)" (condition) is defined and has the value "true". |
+| **var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.
**Hidden**: when the variable "[a condition](#condition)" (condition) is defined and has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional_default.html b/tests/results/test_without_family/04_5disabled_calculation_optional_default.html
index e0b530529..4a79a06ef 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_optional_default.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_optional_default.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-var1 string standard | A first variable. |
-var3 string standard hidden | A second variable. Hidden: when the variable "a condition" is defined and has the value "true". |
-var4 string standard hidden | A forth variable. Hidden: when the variable "a condition" is defined and has the value "true". |
+condition boolean standard mandatory | A condition. Default: false |
+var1 string standard | A first variable. |
+var3 string standard hidden | A second variable. Hidden: when the variable "a condition" (condition) is defined and has the value "true". |
+var4 string standard hidden | A forth variable. Hidden: when the variable "a condition" (condition) is defined and has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional_default.json b/tests/results/test_without_family/04_5disabled_calculation_optional_default.json
index e73d6ebdb..aaaa92374 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_optional_default.json
+++ b/tests/results/test_without_family/04_5disabled_calculation_optional_default.json
@@ -39,7 +39,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is defined and has the value \"true\".",
+ "message": "when the variable {0} is defined and has the value \"true\".",
"path": {
"path": "condition"
},
@@ -62,7 +62,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is defined and has the value \"true\".",
+ "message": "when the variable {0} is defined and has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional_default.md b/tests/results/test_without_family/04_5disabled_calculation_optional_default.md
index 06e793c78..413937c92 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_optional_default.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_optional_default.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#condition)" is defined and has the value "true". |
-| **var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.
**Hidden**: when the variable "[a condition](#condition)" is defined and has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.
**Hidden**: when the variable "[a condition](#condition)" (condition) is defined and has the value "true". |
+| **var4**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.
**Hidden**: when the variable "[a condition](#condition)" (condition) is defined and has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional_default.sh b/tests/results/test_without_family/04_5disabled_calculation_optional_default.sh
index d68a9f7aa..18231e72b 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_optional_default.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_optional_default.sh
@@ -9,11 +9,11 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar3[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m β [1mHidden[0m: when the variable "a β
-β β condition" is defined and has the β
-β β value "true". β
+β β condition" (condition) is defined β
+β β and has the value "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar4[0m β A forth variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m β [1mHidden[0m: when the variable "a β
-β β condition" is defined and has the β
-β β value "true". β
+β β condition" (condition) is defined β
+β β and has the value "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable.adoc
index 5a7abc6d4..7d5dd78a9 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable.adoc
@@ -6,6 +6,6 @@
**Default**: false
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.adoc
index ebb9bda5d..05618ae0d 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: false
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.gitlab.md
index 8d7159a9c..023bf7804 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.html b/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.html
index 03b1b5112..213d88f94 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: false |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.md b/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.md
index d62a03b51..c708b81d6 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.sh
index 756e947bf..914889b42 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable.gitlab.md
index 8ab92c153..f9c7885d5 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable.html b/tests/results/test_without_family/04_5disabled_calculation_variable.html
index 7f5356b92..d8abef986 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: false |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable.json b/tests/results/test_without_family/04_5disabled_calculation_variable.json
index 08310fb25..c09bbc485 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable.json
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable.md b/tests/results/test_without_family/04_5disabled_calculation_variable.md
index 8ab92c153..f9c7885d5 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable.sh b/tests/results/test_without_family/04_5disabled_calculation_variable.sh
index ef4139b27..8bf09f4cc 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable10.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable10.adoc
index ac7d6d429..288a710a9 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable10.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable10.adoc
@@ -6,6 +6,6 @@
**Default**: true
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.adoc
index 57af4766d..a1451f437 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: true
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.gitlab.md
index a9afce8c9..f60b079ae 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.html b/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.html
index 7a87829fa..351bc4254 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: true |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.md b/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.md
index a1a0399d5..2bea32049 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.sh
index 4baacc19d..fc79f900b 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable10.gitlab.md
index 8ca9b3303..e3b811523 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable10.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable10.html b/tests/results/test_without_family/04_5disabled_calculation_variable10.html
index 09335d151..cc8610c8d 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable10.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable10.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: true |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable10.json b/tests/results/test_without_family/04_5disabled_calculation_variable10.json
index a612865d3..275a93689 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable10.json
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable10.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable10.md b/tests/results/test_without_family/04_5disabled_calculation_variable10.md
index 8ca9b3303..e3b811523 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable10.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable10.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable10.sh b/tests/results/test_without_family/04_5disabled_calculation_variable10.sh
index ae9956409..aa2aec814 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable10.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable10.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable2.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable2.adoc
index ac7d6d429..288a710a9 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable2.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable2.adoc
@@ -6,6 +6,6 @@
**Default**: true
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.adoc
index 57af4766d..a1451f437 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: true
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.gitlab.md
index a9afce8c9..f60b079ae 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.html b/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.html
index 7a87829fa..351bc4254 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: true |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.md b/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.md
index a1a0399d5..2bea32049 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.sh
index 4baacc19d..fc79f900b 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable2.gitlab.md
index 8ca9b3303..e3b811523 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable2.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable2.html b/tests/results/test_without_family/04_5disabled_calculation_variable2.html
index 09335d151..cc8610c8d 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable2.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable2.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: true |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable2.json b/tests/results/test_without_family/04_5disabled_calculation_variable2.json
index a612865d3..275a93689 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable2.json
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable2.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable2.md b/tests/results/test_without_family/04_5disabled_calculation_variable2.md
index 8ca9b3303..e3b811523 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable2.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable2.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable2.sh b/tests/results/test_without_family/04_5disabled_calculation_variable2.sh
index ae9956409..aa2aec814 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable2.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable2.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable3.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable3.adoc
index 37e63933c..08968108a 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable3.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable3.adoc
@@ -6,6 +6,6 @@
**Default**: yes
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "yes".
+**Disabled**: when the variable "a condition" (condition) has the value "yes".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.adoc
index 1b2042197..04e05eada 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: yes
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "yes".
+**Disabled**: when the variable "a condition" (condition) has the value "yes".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.gitlab.md
index 40963e01c..60a4692c0 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
-| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "yes". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.html b/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.html
index 2194216ea..be62d8b60 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-condition string standard mandatory | A condition. Default: yes |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "yes". |
+condition string standard mandatory | A condition. Default: yes |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "yes". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.md b/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.md
index c7116fd28..e0bc307b6 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
-| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "yes". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.sh
index b89d516d7..e6a9fc455 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "yes". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "yes". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable3.gitlab.md
index c108835d7..fbf13d0c6 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable3.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
-| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "yes". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable3.html b/tests/results/test_without_family/04_5disabled_calculation_variable3.html
index 47993ca06..40c05ef2e 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable3.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable3.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition string standard mandatory | A condition. Default: yes |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "yes". |
+condition string standard mandatory | A condition. Default: yes |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "yes". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable3.json b/tests/results/test_without_family/04_5disabled_calculation_variable3.json
index d25df8ed4..155fbcda9 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable3.json
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable3.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"yes\".",
+ "message": "when the variable {0} has the value \"yes\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable3.md b/tests/results/test_without_family/04_5disabled_calculation_variable3.md
index c108835d7..fbf13d0c6 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable3.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable3.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
-| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "yes". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable3.sh b/tests/results/test_without_family/04_5disabled_calculation_variable3.sh
index 6d3232374..2cbf12806 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable3.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable3.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "yes". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "yes". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable4.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable4.adoc
index 02614ce1b..229fd3bf0 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable4.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable4.adoc
@@ -6,6 +6,6 @@
**Default**: yes
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" hasn't the value "yes".
+**Disabled**: when the variable "a condition" (condition) hasn't the value "yes".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.adoc
index 515e625bb..4d6066a66 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: yes
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" hasn't the value "yes".
+**Disabled**: when the variable "a condition" (condition) hasn't the value "yes".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.gitlab.md
index 42bd3ce9e..8778df348 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" hasn't the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) hasn't the value "yes". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.html b/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.html
index 0cf2e5ca7..f5ab1093a 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-condition string standard mandatory | A condition. Default: yes |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" hasn't the value "yes". |
+condition string standard mandatory | A condition. Default: yes |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) hasn't the value "yes". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.md b/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.md
index d54a6c702..c294b0421 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" hasn't the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) hasn't the value "yes". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.sh
index 07061525d..10ee8bd5a 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" hasn't the value "yes". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) hasn't the β
+β β value "yes". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable4.gitlab.md
index 9f9077f3d..78d4a1b9f 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable4.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" hasn't the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) hasn't the value "yes". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable4.html b/tests/results/test_without_family/04_5disabled_calculation_variable4.html
index f623226c1..c73d98e0a 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable4.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable4.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition string standard mandatory | A condition. Default: yes |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" hasn't the value "yes". |
+condition string standard mandatory | A condition. Default: yes |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) hasn't the value "yes". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable4.json b/tests/results/test_without_family/04_5disabled_calculation_variable4.json
index fb31e716c..c91daf701 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable4.json
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable4.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" hasn't the value \"yes\".",
+ "message": "when the variable {0} hasn't the value \"yes\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable4.md b/tests/results/test_without_family/04_5disabled_calculation_variable4.md
index 9f9077f3d..78d4a1b9f 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable4.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable4.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" hasn't the value "yes". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) hasn't the value "yes". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable4.sh b/tests/results/test_without_family/04_5disabled_calculation_variable4.sh
index 748817e80..2a6cba26d 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable4.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable4.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" hasn't the value "yes". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) hasn't the β
+β β value "yes". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable7.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable7.adoc
index 5a7abc6d4..7d5dd78a9 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable7.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable7.adoc
@@ -6,6 +6,6 @@
**Default**: false
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.adoc
index ebb9bda5d..05618ae0d 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: false
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.gitlab.md
index 8d7159a9c..023bf7804 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.html b/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.html
index 03b1b5112..213d88f94 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: false |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.md b/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.md
index d62a03b51..c708b81d6 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.sh
index 756e947bf..914889b42 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable7.gitlab.md
index 8ab92c153..f9c7885d5 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable7.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable7.html b/tests/results/test_without_family/04_5disabled_calculation_variable7.html
index 7f5356b92..d8abef986 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable7.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable7.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: false |
+variable string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable7.json b/tests/results/test_without_family/04_5disabled_calculation_variable7.json
index 08310fb25..c09bbc485 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable7.json
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable7.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable7.md b/tests/results/test_without_family/04_5disabled_calculation_variable7.md
index 8ab92c153..f9c7885d5 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable7.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable7.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable7.sh b/tests/results/test_without_family/04_5disabled_calculation_variable7.sh
index ef4139b27..8bf09f4cc 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable7.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable7.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.adoc
index d8dbae54b..15bcc16b0 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.adoc
@@ -6,6 +6,6 @@
**Default**: false
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `basic` `mandatory` `__disabled__` `unique` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.adoc
index 8cd2f3065..ac1c95560 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: false
| **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `basic` `mandatory` `__disabled__` `unique` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.gitlab.md
index 0642df229..16f8fa192 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.html b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.html
index 8118caba5..1716787b5 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-variable string multiple basic mandatory disabled unique | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: false |
+variable string multiple basic mandatory disabled unique | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.md b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.md
index 7e2111604..007784241 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.sh
index ac65535d2..cc885aa92 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m basic [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;7mmandatory [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m [1;7m unique [0m β condition" has the value "true". β
+β [1;7mmandatory [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m [1;7m unique [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.gitlab.md
index 7c0ebf293..6971e9e2e 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.html b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.html
index fe1a4e4ab..f1c58dd2a 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-variable string multiple basic mandatory disabled unique | A variable. Disabled: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: false |
+variable string multiple basic mandatory disabled unique | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.json b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.json
index 6a1aa5c8d..5407dedfb 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.json
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.md b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.md
index 7c0ebf293..6971e9e2e 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `basic` `mandatory` *`disabled`* `unique` | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.sh b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.sh
index fa3f32b4f..9be6ae6bb 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β A variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m basic [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;7mmandatory [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m [1;7m unique [0m β condition" has the value "true". β
+β [1;7mmandatory [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m [1;7m unique [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.adoc
index a9bc53ab2..247470821 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.adoc
@@ -6,9 +6,9 @@
**Default**: true
| **variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
| **variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is "disabled".
+**Disabled**: when the variable "a variable" (variable1) is "disabled".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.adoc
index 3aff0dfe8..449939eb9 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.adoc
@@ -8,9 +8,9 @@
**Default**: true
| **variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
| **variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is "disabled".
+**Disabled**: when the variable "a variable" (variable1) is "disabled".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.gitlab.md
index f72b766b8..f1ac94d7f 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is "disabled". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.html b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.html
index 7c1615e50..236dc310c 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-variable1 string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
-variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is "disabled". |
+condition boolean standard mandatory | A condition. Default: true |
+variable1 string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
+variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (variable1) is "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.md b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.md
index 4d6434ec8..b75aacbed 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is "disabled". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.sh
index 0f10cf8a5..51f19ad4e 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.changelog.sh
@@ -8,10 +8,11 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable1[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (variable1) is "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.gitlab.md
index 3403194cb..efaaac988 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is "disabled". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.html b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.html
index 1560c5b47..20206cbe4 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-variable1 string basic mandatory disabled | A variable. Disabled: when the variable "a condition" has the value "true". |
-variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is "disabled". |
+condition boolean standard mandatory | A condition. Default: true |
+variable1 string basic mandatory disabled | A variable. Disabled: when the variable "a condition" (condition) has the value "true". |
+variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (variable1) is "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.json b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.json
index a82b80b97..05940f8af 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.json
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
@@ -65,7 +65,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is \"disabled\".",
+ "message": "when the variable {0} is \"disabled\".",
"path": {
"path": "variable1"
},
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.md b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.md
index 3403194cb..efaaac988 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is "disabled". |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.sh b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.sh
index a8e283f73..d2e5264b1 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive.sh
@@ -6,9 +6,10 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable1[0m β A variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β condition" has the value "true". β
+β [1;3;7mdisabled[0m[1;7m [0m β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (variable1) is "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.adoc
index d210af162..c7d94b84c 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.adoc
@@ -7,9 +7,9 @@
| **variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable. +
**Default**: disabled +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
| **variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is disabled or has the value "disabled".
+**Disabled**: when the variable "a variable" (variable1) is disabled or has the value "disabled".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.adoc
index 36d4a09f9..e6672c8d9 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.adoc
@@ -9,9 +9,9 @@
| **variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable. +
**Default**: disabled +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
| **variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is disabled or has the value "disabled".
+**Disabled**: when the variable "a variable" (variable1) is disabled or has the value "disabled".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.gitlab.md
index 613604fc0..05a4adc2c 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.html b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.html
index abf92bced..f407e6467 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-variable1 string standard mandatory disabled | A variable. Default: disabled Disabled: when the variable "a condition" has the value "true". |
-variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is disabled or has the value "disabled". |
+condition boolean standard mandatory | A condition. Default: false |
+variable1 string standard mandatory disabled | A variable. Default: disabled Disabled: when the variable "a condition" (condition) has the value "true". |
+variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.md b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.md
index d1c0d0115..9e48cfdb1 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.sh
index 1b4dda91c..7a46541c2 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.changelog.sh
@@ -9,11 +9,12 @@
β [1mvariable1[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: disabled β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is disabled or has the β
-β β value "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (variable1) is disabled or β
+β β has the value "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.gitlab.md
index 57ff10a62..77fe23eb9 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.html b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.html
index 4e033a608..c250e0581 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: false |
-variable1 string standard mandatory disabled | A variable. Default: disabled Disabled: when the variable "a condition" has the value "true". |
-variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is disabled or has the value "disabled". |
+condition boolean standard mandatory | A condition. Default: false |
+variable1 string standard mandatory disabled | A variable. Default: disabled Disabled: when the variable "a condition" (condition) has the value "true". |
+variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.json b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.json
index 5a29fa258..e5466ece5 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.json
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
@@ -69,7 +69,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is disabled or has the value \"disabled\".",
+ "message": "when the variable {0} is disabled or has the value \"disabled\".",
"path": {
"path": "variable1"
},
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.md b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.md
index 57ff10a62..77fe23eb9 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: false |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: disabled
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.sh b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.sh
index eea0b9a54..2832f2a2c 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_3.sh
@@ -7,10 +7,11 @@
β [1mvariable1[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: disabled β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is disabled or has the β
-β β value "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (variable1) is disabled or β
+β β has the value "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.adoc
index 651532711..66144b2b7 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.adoc
@@ -7,9 +7,9 @@
| **variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable. +
**Default**: not_disabled +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
| **variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is disabled or has the value "disabled".
+**Disabled**: when the variable "a variable" (variable1) is disabled or has the value "disabled".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.adoc
index 5e6a5002f..1958a2a72 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.adoc
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.adoc
@@ -9,9 +9,9 @@
| **variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable. +
**Default**: not_disabled +
-**Disabled**: when the variable "a condition" has the value "true".
+**Disabled**: when the variable "a condition" (condition) has the value "true".
| **variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. +
-**Disabled**: when the variable "a variable" is disabled or has the value "disabled".
+**Disabled**: when the variable "a variable" (variable1) is disabled or has the value "disabled".
|====
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.gitlab.md
index ffedc2fc8..04b15c291 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.html b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.html
index 7111a8046..c136f6133 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-variable1 string standard mandatory disabled | A variable. Default: not_disabled Disabled: when the variable "a condition" has the value "true". |
-variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is disabled or has the value "disabled". |
+condition boolean standard mandatory | A condition. Default: true |
+variable1 string standard mandatory disabled | A variable. Default: not_disabled Disabled: when the variable "a condition" (condition) has the value "true". |
+variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.md b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.md
index f61fe55d1..deed2f014 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.sh
index 6d86c716e..076625b94 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.changelog.sh
@@ -9,11 +9,12 @@
β [1mvariable1[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: not_disabled β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is disabled or has the β
-β β value "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (variable1) is disabled or β
+β β has the value "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.gitlab.md b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.gitlab.md
index 2112f9ee1..bbced7587 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.gitlab.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.html b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.html
index 9ba437258..6a8b828d0 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.html
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-variable1 string standard mandatory disabled | A variable. Default: not_disabled Disabled: when the variable "a condition" has the value "true". |
-variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" is disabled or has the value "disabled". |
+condition boolean standard mandatory | A condition. Default: true |
+variable1 string standard mandatory disabled | A variable. Default: not_disabled Disabled: when the variable "a condition" (condition) has the value "true". |
+variable2 string basic mandatory disabled | A second variable. Disabled: when the variable "a variable" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.json b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.json
index 904c72549..e80cf58a3 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.json
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.json
@@ -36,7 +36,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
@@ -69,7 +69,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" is disabled or has the value \"disabled\".",
+ "message": "when the variable {0} is disabled or has the value \"disabled\".",
"path": {
"path": "variable1"
},
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.md b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.md
index 2112f9ee1..bbced7587 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.md
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#condition)" has the value "true". |
-| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" is disabled or has the value "disabled". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A variable.
**Default**: not_disabled
**Disabled**: when the variable "[a condition](#condition)" (condition) has the value "true". |
+| **variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A second variable.
**Disabled**: when the variable "[a variable](#variable1)" (variable1) is disabled or has the value "disabled". |
diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.sh b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.sh
index 9b47c3f97..d2d64a19c 100644
--- a/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.sh
+++ b/tests/results/test_without_family/04_5disabled_calculation_variable_transitive_4.sh
@@ -7,10 +7,11 @@
β [1mvariable1[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m β [1mDefault[0m: not_disabled β
β [1;3;7mdisabled[0m[1;7m [0m β [1mDisabled[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable2[0m β A second variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" is disabled or has the β
-β β value "disabled". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (variable1) is disabled or β
+β β has the value "disabled". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/20_9default_information_parent.adoc b/tests/results/test_without_family/20_9default_information_parent.adoc
index bf79af3c3..e29ba113b 100644
--- a/tests/results/test_without_family/20_9default_information_parent.adoc
+++ b/tests/results/test_without_family/20_9default_information_parent.adoc
@@ -5,6 +5,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **family.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "family".
+**Default**: the value of the information "test_information" of the variable "family" (family).
|====
diff --git a/tests/results/test_without_family/20_9default_information_parent.changelog.adoc b/tests/results/test_without_family/20_9default_information_parent.changelog.adoc
index a0d406c44..0adc41205 100644
--- a/tests/results/test_without_family/20_9default_information_parent.changelog.adoc
+++ b/tests/results/test_without_family/20_9default_information_parent.changelog.adoc
@@ -7,6 +7,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
| **family.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of the information "test_information" of the variable "family".
+**Default**: the value of the information "test_information" of the variable "family" (family).
|====
diff --git a/tests/results/test_without_family/20_9default_information_parent.changelog.gitlab.md b/tests/results/test_without_family/20_9default_information_parent.changelog.gitlab.md
index 31a335a43..789db350e 100644
--- a/tests/results/test_without_family/20_9default_information_parent.changelog.gitlab.md
+++ b/tests/results/test_without_family/20_9default_information_parent.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
+| **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](#family)" (family). |
diff --git a/tests/results/test_without_family/20_9default_information_parent.changelog.html b/tests/results/test_without_family/20_9default_information_parent.changelog.html
index 8765c8b3f..6714567b5 100644
--- a/tests/results/test_without_family/20_9default_information_parent.changelog.html
+++ b/tests/results/test_without_family/20_9default_information_parent.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-family.var1 string basic mandatory | A first variable. |
-family.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "family". |
+family.var1 string basic mandatory | A first variable. |
+family.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "family" (family). |
diff --git a/tests/results/test_without_family/20_9default_information_parent.changelog.md b/tests/results/test_without_family/20_9default_information_parent.changelog.md
index 6b01ad3c1..2a2f1bf24 100644
--- a/tests/results/test_without_family/20_9default_information_parent.changelog.md
+++ b/tests/results/test_without_family/20_9default_information_parent.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
+| **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](#family)" (family). |
diff --git a/tests/results/test_without_family/20_9default_information_parent.changelog.sh b/tests/results/test_without_family/20_9default_information_parent.changelog.sh
index 4616c8749..40987dcd2 100644
--- a/tests/results/test_without_family/20_9default_information_parent.changelog.sh
+++ b/tests/results/test_without_family/20_9default_information_parent.changelog.sh
@@ -9,6 +9,6 @@
β [1mfamily.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "family". β
+β β the variable "family" (family). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/20_9default_information_parent.gitlab.md b/tests/results/test_without_family/20_9default_information_parent.gitlab.md
index 97b55ea64..68019eaad 100644
--- a/tests/results/test_without_family/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_without_family/20_9default_information_parent.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
+| **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](#family)" (family). |
diff --git a/tests/results/test_without_family/20_9default_information_parent.html b/tests/results/test_without_family/20_9default_information_parent.html
index c42bcab61..78b1c4510 100644
--- a/tests/results/test_without_family/20_9default_information_parent.html
+++ b/tests/results/test_without_family/20_9default_information_parent.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-family.var1 string basic mandatory | A first variable. |
-family.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "family". |
+family.var1 string basic mandatory | A first variable. |
+family.var2 string standard mandatory | A second variable. Default: the value of the information "test_information" of the variable "family" (family). |
diff --git a/tests/results/test_without_family/20_9default_information_parent.json b/tests/results/test_without_family/20_9default_information_parent.json
index f2fdf1f13..a2c5a3640 100644
--- a/tests/results/test_without_family/20_9default_information_parent.json
+++ b/tests/results/test_without_family/20_9default_information_parent.json
@@ -40,7 +40,15 @@
"type": "variable",
"default": {
"name": "Default",
- "values": "the value of the information \"test_information\" of the variable \"family\"."
+ "values": {
+ "message": "the value of the information \"test_information\" of the variable {0}.",
+ "path": {
+ "type": "information",
+ "information": "test_information",
+ "path": "family"
+ },
+ "description": "family"
+ }
},
"variable_type": "string"
}
diff --git a/tests/results/test_without_family/20_9default_information_parent.md b/tests/results/test_without_family/20_9default_information_parent.md
index 97b55ea64..68019eaad 100644
--- a/tests/results/test_without_family/20_9default_information_parent.md
+++ b/tests/results/test_without_family/20_9default_information_parent.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
-| **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". |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
+| **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](#family)" (family). |
diff --git a/tests/results/test_without_family/20_9default_information_parent.sh b/tests/results/test_without_family/20_9default_information_parent.sh
index 5874a8ef8..9fc1f4105 100644
--- a/tests/results/test_without_family/20_9default_information_parent.sh
+++ b/tests/results/test_without_family/20_9default_information_parent.sh
@@ -7,5 +7,5 @@
β [1mfamily.var2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the β
β β information "test_information" of β
-β β the variable "family". β
+β β the variable "family" (family). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/20_9family_absolute.adoc b/tests/results/test_without_family/20_9family_absolute.adoc
index 0c2bd8012..dc909006e 100644
--- a/tests/results/test_without_family/20_9family_absolute.adoc
+++ b/tests/results/test_without_family/20_9family_absolute.adoc
@@ -10,11 +10,11 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | Third variable. +
**Default**:
-* the value of the variable "first variable"
-* the value of the variable "a second variable"
+* the value of the variable "first variable" (var1)
+* the value of the variable "a second variable" (family.var2)
| **family2.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable2. +
-**Default**: the value of the variable "a second variable"
+**Default**: the value of the variable "a second variable" (family.var2).
| **family2.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: string4 +
**Example**: string5
@@ -22,8 +22,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | Fourth variable. +
**Default**:
-* the value of the variable "first variable"
-* the value of the variable "a second variable"
-* the value of the variable "var3"
+* the value of the variable "first variable" (var1)
+* the value of the variable "a second variable" (family.var2)
+* the value of the variable "var3" (family2.var3)
|====
diff --git a/tests/results/test_without_family/20_9family_absolute.changelog.adoc b/tests/results/test_without_family/20_9family_absolute.changelog.adoc
index bfeed123e..6b7b71080 100644
--- a/tests/results/test_without_family/20_9family_absolute.changelog.adoc
+++ b/tests/results/test_without_family/20_9family_absolute.changelog.adoc
@@ -12,11 +12,11 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | Third variable. +
**Default**:
-* the value of the variable "first variable"
-* the value of the variable "a second variable"
+* the value of the variable "first variable" (var1)
+* the value of the variable "a second variable" (family.var2)
| **family2.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable2. +
-**Default**: the value of the variable "a second variable"
+**Default**: the value of the variable "a second variable" (family.var2).
| **family2.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: string4 +
**Example**: string5
@@ -24,8 +24,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | Fourth variable. +
**Default**:
-* the value of the variable "first variable"
-* the value of the variable "a second variable"
-* the value of the variable "var3"
+* the value of the variable "first variable" (var1)
+* the value of the variable "a second variable" (family.var2)
+* the value of the variable "var3" (family2.var3)
|====
diff --git a/tests/results/test_without_family/20_9family_absolute.changelog.gitlab.md b/tests/results/test_without_family/20_9family_absolute.changelog.gitlab.md
index c12d401ea..accefdfbc 100644
--- a/tests/results/test_without_family/20_9family_absolute.changelog.gitlab.md
+++ b/tests/results/test_without_family/20_9family_absolute.changelog.gitlab.md
@@ -1,13 +1,13 @@
New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | First variable. |
-| **family.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Example**: string6 |
-| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Third variable.
**Default**:
β’ the value of the variable "[first variable](#var1)"
β’ the value of the variable "[a second variable](#family.var2)" |
-| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" |
-| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: string4
**Example**: string5 |
-| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)"
β’ the value of the variable "[a second variable](#family.var2)"
β’ the value of the variable "[var3](#family2.var3)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | First variable. |
+| **family.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Example**: string6 |
+| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Third variable.
**Default**:
β’ the value of the variable "[first variable](#var1)" (var1)
β’ the value of the variable "[a second variable](#family.var2)" (family.var2) |
+| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" (family.var2). |
+| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: string4
**Example**: string5 |
+| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)" (var1)
β’ the value of the variable "[a second variable](#family.var2)" (family.var2)
β’ the value of the variable "[var3](#family2.var3)" (family2.var3) |
diff --git a/tests/results/test_without_family/20_9family_absolute.changelog.html b/tests/results/test_without_family/20_9family_absolute.changelog.html
index 1ba1d5c8c..e50069a60 100644
--- a/tests/results/test_without_family/20_9family_absolute.changelog.html
+++ b/tests/results/test_without_family/20_9family_absolute.changelog.html
@@ -2,18 +2,18 @@
-| Variable | Description |
+| Variable | Description |
-var1 string basic mandatory | First variable. |
-family.var2 string basic mandatory | A second variable. Example: string6 |
-family.subfamily.variable string multiple standard mandatory unique | Third variable. Default: - the value of the variable "first variable"
-- the value of the variable "a second variable"
|
-family2.var2 string standard mandatory | A variable2. Default: the value of the variable "a second variable" |
-family2.var3 string standard mandatory | Default: string4 Example: string5 |
-family2.subfamily.variable string multiple standard mandatory unique | Fourth variable. Default: - the value of the variable "first variable"
-- the value of the variable "a second variable"
-- the value of the variable "var3"
|
+var1 string basic mandatory | First variable. |
+family.var2 string basic mandatory | A second variable. Example: string6 |
+family.subfamily.variable string multiple standard mandatory unique | Third variable. Default: - the value of the variable "first variable" (var1)
+- the value of the variable "a second variable" (family.var2)
|
+family2.var2 string standard mandatory | A variable2. Default: the value of the variable "a second variable" (family.var2). |
+family2.var3 string standard mandatory | Default: string4 Example: string5 |
+family2.subfamily.variable string multiple standard mandatory unique | Fourth variable. Default: - the value of the variable "first variable" (var1)
+- the value of the variable "a second variable" (family.var2)
+- the value of the variable "var3" (family2.var3)
|
diff --git a/tests/results/test_without_family/20_9family_absolute.changelog.md b/tests/results/test_without_family/20_9family_absolute.changelog.md
index bacfc5deb..bfc5ad908 100644
--- a/tests/results/test_without_family/20_9family_absolute.changelog.md
+++ b/tests/results/test_without_family/20_9family_absolute.changelog.md
@@ -1,11 +1,11 @@
# New variables
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | First variable. |
-| **family.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Example**: string6 |
-| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Third variable.
**Default**:
β’ the value of the variable "[first variable](#var1)"
β’ the value of the variable "[a second variable](#family.var2)" |
-| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" |
-| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: string4
**Example**: string5 |
-| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)"
β’ the value of the variable "[a second variable](#family.var2)"
β’ the value of the variable "[var3](#family2.var3)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | First variable. |
+| **family.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Example**: string6 |
+| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Third variable.
**Default**:
β’ the value of the variable "[first variable](#var1)" (var1)
β’ the value of the variable "[a second variable](#family.var2)" (family.var2) |
+| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" (family.var2). |
+| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: string4
**Example**: string5 |
+| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)" (var1)
β’ the value of the variable "[a second variable](#family.var2)" (family.var2)
β’ the value of the variable "[var3](#family2.var3)" (family2.var3) |
diff --git a/tests/results/test_without_family/20_9family_absolute.changelog.sh b/tests/results/test_without_family/20_9family_absolute.changelog.sh
index 4e0b4e584..e5ce073c5 100644
--- a/tests/results/test_without_family/20_9family_absolute.changelog.sh
+++ b/tests/results/test_without_family/20_9family_absolute.changelog.sh
@@ -12,13 +12,13 @@
β [1mfamily.subfamily.variable[0m β Third variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "first β
-β β variable" β
+β β variable" (var1) β
β β β’ the value of the variable "a β
-β β second variable" β
+β β second variable" (family.var2) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfamily2.var2[0m β A variable2. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (family.var2). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfamily2.var3[0m β [1mDefault[0m: string4 β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mExample[0m: string5 β
@@ -26,9 +26,10 @@
β [1mfamily2.subfamily.variable[0m β Fourth variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "first β
-β β variable" β
+β β variable" (var1) β
β β β’ the value of the variable "a β
-β β second variable" β
+β β second variable" (family.var2) β
β β β’ the value of the variable "var3" β
+β β (family2.var3) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/20_9family_absolute.gitlab.md b/tests/results/test_without_family/20_9family_absolute.gitlab.md
index 6bcad6896..3ee36fb6a 100644
--- a/tests/results/test_without_family/20_9family_absolute.gitlab.md
+++ b/tests/results/test_without_family/20_9family_absolute.gitlab.md
@@ -1,9 +1,9 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | First variable. |
-| **family.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Example**: string6 |
-| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Third variable.
**Default**:
β’ the value of the variable "[first variable](#var1)"
β’ the value of the variable "[a second variable](#family.var2)" |
-| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" |
-| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: string4
**Example**: string5 |
-| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)"
β’ the value of the variable "[a second variable](#family.var2)"
β’ the value of the variable "[var3](#family2.var3)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | First variable. |
+| **family.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Example**: string6 |
+| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Third variable.
**Default**:
β’ the value of the variable "[first variable](#var1)" (var1)
β’ the value of the variable "[a second variable](#family.var2)" (family.var2) |
+| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" (family.var2). |
+| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: string4
**Example**: string5 |
+| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)" (var1)
β’ the value of the variable "[a second variable](#family.var2)" (family.var2)
β’ the value of the variable "[var3](#family2.var3)" (family2.var3) |
diff --git a/tests/results/test_without_family/20_9family_absolute.html b/tests/results/test_without_family/20_9family_absolute.html
index dc04aa27f..0d01ec7e4 100644
--- a/tests/results/test_without_family/20_9family_absolute.html
+++ b/tests/results/test_without_family/20_9family_absolute.html
@@ -1,17 +1,17 @@
-| Variable | Description |
+| Variable | Description |
-var1 string basic mandatory | First variable. |
-family.var2 string basic mandatory | A second variable. Example: string6 |
-family.subfamily.variable string multiple standard mandatory unique | Third variable. Default: - the value of the variable "first variable"
-- the value of the variable "a second variable"
|
-family2.var2 string standard mandatory | A variable2. Default: the value of the variable "a second variable" |
-family2.var3 string standard mandatory | Default: string4 Example: string5 |
-family2.subfamily.variable string multiple standard mandatory unique | Fourth variable. Default: - the value of the variable "first variable"
-- the value of the variable "a second variable"
-- the value of the variable "var3"
|
+var1 string basic mandatory | First variable. |
+family.var2 string basic mandatory | A second variable. Example: string6 |
+family.subfamily.variable string multiple standard mandatory unique | Third variable. Default: - the value of the variable "first variable" (var1)
+- the value of the variable "a second variable" (family.var2)
|
+family2.var2 string standard mandatory | A variable2. Default: the value of the variable "a second variable" (family.var2). |
+family2.var3 string standard mandatory | Default: string4 Example: string5 |
+family2.subfamily.variable string multiple standard mandatory unique | Fourth variable. Default: - the value of the variable "first variable" (var1)
+- the value of the variable "a second variable" (family.var2)
+- the value of the variable "var3" (family2.var3)
|
diff --git a/tests/results/test_without_family/20_9family_absolute.json b/tests/results/test_without_family/20_9family_absolute.json
index b3f486e4c..6fb645e86 100644
--- a/tests/results/test_without_family/20_9family_absolute.json
+++ b/tests/results/test_without_family/20_9family_absolute.json
@@ -79,7 +79,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "var1",
"type": "variable"
@@ -87,7 +87,7 @@
"description": "first variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "family.var2",
"type": "variable"
@@ -130,7 +130,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "family.var2",
"type": "variable"
@@ -197,7 +197,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "var1",
"type": "variable"
@@ -205,7 +205,7 @@
"description": "first variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "family.var2",
"type": "variable"
@@ -213,7 +213,7 @@
"description": "a second variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "family2.var3",
"type": "variable"
diff --git a/tests/results/test_without_family/20_9family_absolute.md b/tests/results/test_without_family/20_9family_absolute.md
index 6bcad6896..3ee36fb6a 100644
--- a/tests/results/test_without_family/20_9family_absolute.md
+++ b/tests/results/test_without_family/20_9family_absolute.md
@@ -1,9 +1,9 @@
-| Variable | Description |
-|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | First variable. |
-| **family.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Example**: string6 |
-| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Third variable.
**Default**:
β’ the value of the variable "[first variable](#var1)"
β’ the value of the variable "[a second variable](#family.var2)" |
-| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" |
-| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: string4
**Example**: string5 |
-| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)"
β’ the value of the variable "[a second variable](#family.var2)"
β’ the value of the variable "[var3](#family2.var3)" |
+| Variable | Description |
+|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | First variable. |
+| **family.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Example**: string6 |
+| **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Third variable.
**Default**:
β’ the value of the variable "[first variable](#var1)" (var1)
β’ the value of the variable "[a second variable](#family.var2)" (family.var2) |
+| **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[a second variable](#family.var2)" (family.var2). |
+| **family2.var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: string4
**Example**: string5 |
+| **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.
**Default**:
β’ the value of the variable "[first variable](#var1)" (var1)
β’ the value of the variable "[a second variable](#family.var2)" (family.var2)
β’ the value of the variable "[var3](#family2.var3)" (family2.var3) |
diff --git a/tests/results/test_without_family/20_9family_absolute.sh b/tests/results/test_without_family/20_9family_absolute.sh
index e5ebcb62a..1f8475ea6 100644
--- a/tests/results/test_without_family/20_9family_absolute.sh
+++ b/tests/results/test_without_family/20_9family_absolute.sh
@@ -10,13 +10,13 @@
β [1mfamily.subfamily.variable[0m β Third variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "first β
-β β variable" β
+β β variable" (var1) β
β β β’ the value of the variable "a β
-β β second variable" β
+β β second variable" (family.var2) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfamily2.var2[0m β A variable2. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a second variable" β
+β β "a second variable" (family.var2). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfamily2.var3[0m β [1mDefault[0m: string4 β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mExample[0m: string5 β
@@ -24,8 +24,9 @@
β [1mfamily2.subfamily.variable[0m β Fourth variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "first β
-β β variable" β
+β β variable" (var1) β
β β β’ the value of the variable "a β
-β β second variable" β
+β β second variable" (family.var2) β
β β β’ the value of the variable "var3" β
+β β (family2.var3) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.json b/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.json
index 7440f61d2..8f16139aa 100644
--- a/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.json
+++ b/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.json
@@ -32,7 +32,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test_without_family/24_0family_mandatory_condition_variable.adoc b/tests/results/test_without_family/24_0family_mandatory_condition_variable.adoc
index 569995ff4..670f1379c 100644
--- a/tests/results/test_without_family/24_0family_mandatory_condition_variable.adoc
+++ b/tests/results/test_without_family/24_0family_mandatory_condition_variable.adoc
@@ -6,6 +6,6 @@
**Default**: true
| **var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. +
-**Mandatory**: when the variable "a condition" has the value "true".
+**Mandatory**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.adoc b/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.adoc
index 8864c87b2..2fe9509f3 100644
--- a/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.adoc
+++ b/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: true
| **var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. +
-**Mandatory**: when the variable "a condition" has the value "true".
+**Mandatory**: when the variable "a condition" (condition) has the value "true".
|====
diff --git a/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.gitlab.md b/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.gitlab.md
index 5e003dc6e..8619f58a6 100644
--- a/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.gitlab.md
+++ b/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`mandatory`* | A variable.
**Mandatory**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`mandatory`* | A variable.
**Mandatory**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.html b/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.html
index 9e5a9fd8e..af4248aad 100644
--- a/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.html
+++ b/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-var string standard mandatory | A variable. Mandatory: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: true |
+var string standard mandatory | A variable. Mandatory: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.md b/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.md
index 421250e12..4b6b171b1 100644
--- a/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.md
+++ b/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`mandatory`* | A variable.
**Mandatory**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`mandatory`* | A variable.
**Mandatory**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.sh b/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.sh
index ea6486a06..cf6eefb71 100644
--- a/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.sh
+++ b/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.sh
@@ -8,6 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mmandatory[0m[1;7m [0m β [1mMandatory[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_without_family/24_0family_mandatory_condition_variable.gitlab.md
index 4ffab6984..b415ac968 100644
--- a/tests/results/test_without_family/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_without_family/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`mandatory`* | A variable.
**Mandatory**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`mandatory`* | A variable.
**Mandatory**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/24_0family_mandatory_condition_variable.html b/tests/results/test_without_family/24_0family_mandatory_condition_variable.html
index 8b66ec022..87c179635 100644
--- a/tests/results/test_without_family/24_0family_mandatory_condition_variable.html
+++ b/tests/results/test_without_family/24_0family_mandatory_condition_variable.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-condition boolean standard mandatory | A condition. Default: true |
-var string standard mandatory | A variable. Mandatory: when the variable "a condition" has the value "true". |
+condition boolean standard mandatory | A condition. Default: true |
+var string standard mandatory | A variable. Mandatory: when the variable "a condition" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/24_0family_mandatory_condition_variable.json b/tests/results/test_without_family/24_0family_mandatory_condition_variable.json
index c27aa63c1..10d366965 100644
--- a/tests/results/test_without_family/24_0family_mandatory_condition_variable.json
+++ b/tests/results/test_without_family/24_0family_mandatory_condition_variable.json
@@ -30,7 +30,7 @@
"ori_name": "mandatory",
"access_control": false,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "condition"
},
diff --git a/tests/results/test_without_family/24_0family_mandatory_condition_variable.md b/tests/results/test_without_family/24_0family_mandatory_condition_variable.md
index 4ffab6984..b415ac968 100644
--- a/tests/results/test_without_family/24_0family_mandatory_condition_variable.md
+++ b/tests/results/test_without_family/24_0family_mandatory_condition_variable.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
-| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`mandatory`* | A variable.
**Mandatory**: when the variable "[a condition](#condition)" has the value "true". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
+| **condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`mandatory`* | A variable.
**Mandatory**: when the variable "[a condition](#condition)" (condition) has the value "true". |
diff --git a/tests/results/test_without_family/24_0family_mandatory_condition_variable.sh b/tests/results/test_without_family/24_0family_mandatory_condition_variable.sh
index 3e6f7b53a..e40c8fb4f 100644
--- a/tests/results/test_without_family/24_0family_mandatory_condition_variable.sh
+++ b/tests/results/test_without_family/24_0family_mandatory_condition_variable.sh
@@ -6,5 +6,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m [0m[1;3;7mmandatory[0m[1;7m [0m β [1mMandatory[0m: when the variable "a β
-β β condition" has the value "true". β
+β β condition" (condition) has the value β
+β β "true". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.adoc b/tests/results/test_without_family/40_0leadership_leader_follower.adoc
index e8afbc716..5e294aae5 100644
--- a/tests/results/test_without_family/40_0leadership_leader_follower.adoc
+++ b/tests/results/test_without_family/40_0leadership_leader_follower.adoc
@@ -9,6 +9,6 @@
* value2
| **leadership.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (leadership.leader).
|====
diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.changelog.adoc b/tests/results/test_without_family/40_0leadership_leader_follower.changelog.adoc
index 903040f0a..d8733e641 100644
--- a/tests/results/test_without_family/40_0leadership_leader_follower.changelog.adoc
+++ b/tests/results/test_without_family/40_0leadership_leader_follower.changelog.adoc
@@ -11,6 +11,6 @@
* value2
| **leadership.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (leadership.leader).
|====
diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.changelog.gitlab.md b/tests/results/test_without_family/40_0leadership_leader_follower.changelog.gitlab.md
index a085fc87d..3fc243504 100644
--- a/tests/results/test_without_family/40_0leadership_leader_follower.changelog.gitlab.md
+++ b/tests/results/test_without_family/40_0leadership_leader_follower.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------|
-| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#leadership.leader)" (leadership.leader). |
diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.changelog.html b/tests/results/test_without_family/40_0leadership_leader_follower.changelog.html
index 0f27f6e01..38cca0a8b 100644
--- a/tests/results/test_without_family/40_0leadership_leader_follower.changelog.html
+++ b/tests/results/test_without_family/40_0leadership_leader_follower.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
leadership.leader string multiple standard mandatory unique | A leader. Default: |
-leadership.follower string standard mandatory | A follower. Default: the value of the variable "a leader" |
+value2
+leadership.follower string standard mandatory | A follower. Default: the value of the variable "a leader" (leadership.leader). |
diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.changelog.md b/tests/results/test_without_family/40_0leadership_leader_follower.changelog.md
index 09993ae3f..6433075de 100644
--- a/tests/results/test_without_family/40_0leadership_leader_follower.changelog.md
+++ b/tests/results/test_without_family/40_0leadership_leader_follower.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------|
-| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#leadership.leader)" (leadership.leader). |
diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.changelog.sh b/tests/results/test_without_family/40_0leadership_leader_follower.changelog.sh
index e70df62d9..e27e3a3ac 100644
--- a/tests/results/test_without_family/40_0leadership_leader_follower.changelog.sh
+++ b/tests/results/test_without_family/40_0leadership_leader_follower.changelog.sh
@@ -10,6 +10,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mleadership.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a leader" β
+β β "a leader" (leadership.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.gitlab.md b/tests/results/test_without_family/40_0leadership_leader_follower.gitlab.md
index cad669693..3a48dda88 100644
--- a/tests/results/test_without_family/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_without_family/40_0leadership_leader_follower.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------|
-| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#leadership.leader)" (leadership.leader). |
diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.html b/tests/results/test_without_family/40_0leadership_leader_follower.html
index fd7bc5a59..116475752 100644
--- a/tests/results/test_without_family/40_0leadership_leader_follower.html
+++ b/tests/results/test_without_family/40_0leadership_leader_follower.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
leadership.leader string multiple standard mandatory unique | A leader. Default: |
-leadership.follower string standard mandatory | A follower. Default: the value of the variable "a leader" |
+value2
+leadership.follower string standard mandatory | A follower. Default: the value of the variable "a leader" (leadership.leader). |
diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.json b/tests/results/test_without_family/40_0leadership_leader_follower.json
index 38e056ca0..61593085d 100644
--- a/tests/results/test_without_family/40_0leadership_leader_follower.json
+++ b/tests/results/test_without_family/40_0leadership_leader_follower.json
@@ -59,7 +59,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "leadership.leader",
"type": "variable"
diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.md b/tests/results/test_without_family/40_0leadership_leader_follower.md
index cad669693..3a48dda88 100644
--- a/tests/results/test_without_family/40_0leadership_leader_follower.md
+++ b/tests/results/test_without_family/40_0leadership_leader_follower.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------|
-| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
+| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | 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 "[a leader](#leadership.leader)" (leadership.leader). |
diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.sh b/tests/results/test_without_family/40_0leadership_leader_follower.sh
index 4050d5e83..91330a0bb 100644
--- a/tests/results/test_without_family/40_0leadership_leader_follower.sh
+++ b/tests/results/test_without_family/40_0leadership_leader_follower.sh
@@ -8,5 +8,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mleadership.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a leader" β
+β β "a leader" (leadership.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.adoc b/tests/results/test_without_family/40_8calculation_multi_variable.adoc
index b0146becc..6b570964e 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable.adoc
+++ b/tests/results/test_without_family/40_8calculation_multi_variable.adoc
@@ -5,8 +5,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A first variable. +
**Default**:
-* the value of the variable "a second variable"
-* the value of the variable "a third variable"
+* the value of the variable "a second variable" (var2)
+* the value of the variable "a third variable" (var3)
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
**Default**: no
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.changelog.adoc b/tests/results/test_without_family/40_8calculation_multi_variable.changelog.adoc
index d56a687da..29510f704 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable.changelog.adoc
+++ b/tests/results/test_without_family/40_8calculation_multi_variable.changelog.adoc
@@ -7,8 +7,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A first variable. +
**Default**:
-* the value of the variable "a second variable"
-* the value of the variable "a third variable"
+* the value of the variable "a second variable" (var2)
+* the value of the variable "a third variable" (var3)
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
**Default**: no
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.changelog.gitlab.md b/tests/results/test_without_family/40_8calculation_multi_variable.changelog.gitlab.md
index 0904d9f6d..fb1595c54 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable.changelog.gitlab.md
+++ b/tests/results/test_without_family/40_8calculation_multi_variable.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#var2)"
β’ the value of the variable "[a third variable](#var3)" |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#var2)" (var2)
β’ the value of the variable "[a third variable](#var3)" (var3) |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.changelog.html b/tests/results/test_without_family/40_8calculation_multi_variable.changelog.html
index 8ba520976..992d7430f 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable.changelog.html
+++ b/tests/results/test_without_family/40_8calculation_multi_variable.changelog.html
@@ -5,8 +5,8 @@
| Variable | Description |
-var string multiple standard mandatory unique | A first variable. Default: - the value of the variable "a second variable"
-- the value of the variable "a third variable"
|
+var string multiple standard mandatory unique | A first variable. Default: - the value of the variable "a second variable" (var2)
+- the value of the variable "a third variable" (var3)
|
var2 string standard mandatory | A second variable. Default: no |
var3 string standard mandatory | A third variable. Default: yes |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.changelog.md b/tests/results/test_without_family/40_8calculation_multi_variable.changelog.md
index 0fa7c70e9..f772b5de7 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable.changelog.md
+++ b/tests/results/test_without_family/40_8calculation_multi_variable.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#var2)"
β’ the value of the variable "[a third variable](#var3)" |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#var2)" (var2)
β’ the value of the variable "[a third variable](#var3)" (var3) |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.changelog.sh b/tests/results/test_without_family/40_8calculation_multi_variable.changelog.sh
index 06697f3f4..49f73f9fb 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable.changelog.sh
+++ b/tests/results/test_without_family/40_8calculation_multi_variable.changelog.sh
@@ -6,9 +6,9 @@
β [1mvar[0m β A first variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
-β β second variable" β
+β β second variable" (var2) β
β β β’ the value of the variable "a third β
-β β variable" β
+β β variable" (var3) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: no β
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.gitlab.md b/tests/results/test_without_family/40_8calculation_multi_variable.gitlab.md
index a8097936b..b93c7c30e 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_without_family/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#var2)"
β’ the value of the variable "[a third variable](#var3)" |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#var2)" (var2)
β’ the value of the variable "[a third variable](#var3)" (var3) |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.html b/tests/results/test_without_family/40_8calculation_multi_variable.html
index 9f7dae316..b96bf3ac8 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable.html
+++ b/tests/results/test_without_family/40_8calculation_multi_variable.html
@@ -3,8 +3,8 @@
| Variable | Description |
-var string multiple standard mandatory unique | A first variable. Default: - the value of the variable "a second variable"
-- the value of the variable "a third variable"
|
+var string multiple standard mandatory unique | A first variable. Default: - the value of the variable "a second variable" (var2)
+- the value of the variable "a third variable" (var3)
|
var2 string standard mandatory | A second variable. Default: no |
var3 string standard mandatory | A third variable. Default: yes |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.json b/tests/results/test_without_family/40_8calculation_multi_variable.json
index 646102dbe..f9bae352d 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable.json
+++ b/tests/results/test_without_family/40_8calculation_multi_variable.json
@@ -23,7 +23,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "var2",
"type": "variable"
@@ -31,7 +31,7 @@
"description": "a second variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "var3",
"type": "variable"
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.md b/tests/results/test_without_family/40_8calculation_multi_variable.md
index a8097936b..b93c7c30e 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable.md
+++ b/tests/results/test_without_family/40_8calculation_multi_variable.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#var2)"
β’ the value of the variable "[a third variable](#var3)" |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A first variable.
**Default**:
β’ the value of the variable "[a second variable](#var2)" (var2)
β’ the value of the variable "[a third variable](#var3)" (var3) |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: no |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Default**: yes |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.sh b/tests/results/test_without_family/40_8calculation_multi_variable.sh
index a44375f67..3ecf839ff 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable.sh
+++ b/tests/results/test_without_family/40_8calculation_multi_variable.sh
@@ -4,9 +4,9 @@
β [1mvar[0m β A first variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
-β β second variable" β
+β β second variable" (var2) β
β β β’ the value of the variable "a third β
-β β variable" β
+β β variable" (var3) β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: no β
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent.adoc b/tests/results/test_without_family/40_8calculation_multi_variable_parent.adoc
index cfee32cba..e1da19383 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent.adoc
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent.adoc
@@ -6,6 +6,6 @@
**Default**: no
| **fam1.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (var).
|====
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.adoc b/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.adoc
index 2acd454d9..9e84e2a21 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.adoc
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: no
| **fam1.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (var).
|====
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.gitlab.md b/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.gitlab.md
index 3e17b7874..1e7bfcd14 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.gitlab.md
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a variable](#var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a variable](#var)" (var). |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.html b/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.html
index d7f78a4b3..d288c37c3 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.html
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-var string standard mandatory | A variable. Default: no |
-fam1.var string standard mandatory | A calculated variable. Default: the value of the variable "a variable" |
+var string standard mandatory | A variable. Default: no |
+fam1.var string standard mandatory | A calculated variable. Default: the value of the variable "a variable" (var). |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.md b/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.md
index 63cc81126..7e539d678 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.md
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a variable](#var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a variable](#var)" (var). |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.sh b/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.sh
index 55eca6f38..5acab39dc 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.sh
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.sh
@@ -8,6 +8,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfam1.var[0m β A calculated variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_without_family/40_8calculation_multi_variable_parent.gitlab.md
index e92bd3adc..54315b429 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a variable](#var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a variable](#var)" (var). |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent.html b/tests/results/test_without_family/40_8calculation_multi_variable_parent.html
index e57aee098..143e197ab 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent.html
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-var string standard mandatory | A variable. Default: no |
-fam1.var string standard mandatory | A calculated variable. Default: the value of the variable "a variable" |
+var string standard mandatory | A variable. Default: no |
+fam1.var string standard mandatory | A calculated variable. Default: the value of the variable "a variable" (var). |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent.json b/tests/results/test_without_family/40_8calculation_multi_variable_parent.json
index d71443a5c..7dcfcd545 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent.json
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent.json
@@ -46,7 +46,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent.md b/tests/results/test_without_family/40_8calculation_multi_variable_parent.md
index e92bd3adc..54315b429 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent.md
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a variable](#var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a variable](#var)" (var). |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent.sh b/tests/results/test_without_family/40_8calculation_multi_variable_parent.sh
index 1e9a18bd5..ccbaf9595 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent.sh
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent.sh
@@ -6,5 +6,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfam1.var[0m β A calculated variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.adoc b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.adoc
index 2577f1ed6..ec3be6eaf 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.adoc
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.adoc
@@ -6,6 +6,6 @@
**Default**: no
| **fam2.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (fam1.var).
|====
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.adoc b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.adoc
index d437b30b7..81d98d32b 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.adoc
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.adoc
@@ -8,6 +8,6 @@
**Default**: no
| **fam2.var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable"
+**Default**: the value of the variable "a variable" (fam1.var).
|====
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.gitlab.md b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.gitlab.md
index ff2eac6c0..0cd4a3479 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.gitlab.md
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------|
-| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#fam1.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------|
+| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#fam1.var)" (fam1.var). |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.html b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.html
index 93ab979a5..f11dbe104 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.html
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-fam1.var string standard mandatory | A variable. Default: no |
-fam2.var string standard mandatory | A variable. Default: the value of the variable "a variable" |
+fam1.var string standard mandatory | A variable. Default: no |
+fam2.var string standard mandatory | A variable. Default: the value of the variable "a variable" (fam1.var). |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.md b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.md
index 440405420..5ec50324a 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.md
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------|
-| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#fam1.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------|
+| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#fam1.var)" (fam1.var). |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.sh b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.sh
index af746bbd4..d4647289e 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.sh
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.sh
@@ -8,6 +8,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfam2.var[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (fam1.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.gitlab.md
index 28d99c63b..182484e29 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------|
-| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#fam1.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------|
+| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#fam1.var)" (fam1.var). |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.html b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.html
index 761794660..0ff9de1ff 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.html
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-fam1.var string standard mandatory | A variable. Default: no |
-fam2.var string standard mandatory | A variable. Default: the value of the variable "a variable" |
+fam1.var string standard mandatory | A variable. Default: no |
+fam2.var string standard mandatory | A variable. Default: the value of the variable "a variable" (fam1.var). |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.json b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.json
index 0f644d676..79360af2a 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.json
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.json
@@ -58,7 +58,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "fam1.var",
"type": "variable"
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.md b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.md
index 28d99c63b..182484e29 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.md
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------|
-| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
-| **fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#fam1.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------|
+| **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
+| **fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable](#fam1.var)" (fam1.var). |
diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.sh b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.sh
index b845010fc..f60dec06c 100644
--- a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.sh
+++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.sh
@@ -6,5 +6,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mfam2.var[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a variable" β
+β β "a variable" (fam1.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc
index c9b520176..1e32ddebe 100644
--- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc
+++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc
@@ -11,6 +11,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A follower. +
**Default**:
-* the value of the variable "a leader"
+* the value of the variable "a leader" (leadership.leader)
|====
diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc
index c0a5f2396..5024c906f 100644
--- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc
+++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc
@@ -13,6 +13,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A follower. +
**Default**:
-* the value of the variable "a leader"
+* the value of the variable "a leader" (leadership.leader)
|====
diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.gitlab.md b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.gitlab.md
index 5f3d1e37a..b01912cd6 100644
--- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.gitlab.md
+++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#leadership.leader)" (leadership.leader) |
diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.html b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.html
index e79f3e555..6cb5e43d1 100644
--- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.html
+++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
leadership.leader string multiple standard mandatory unique | A leader. Default: |
-leadership.follower string multiple standard mandatory unique | A follower. Default: - the value of the variable "a leader"
|
+value2
+leadership.follower string multiple standard mandatory unique | A follower. Default: - the value of the variable "a leader" (leadership.leader)
|
diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.md b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.md
index 134ea7ffd..64891e470 100644
--- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.md
+++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#leadership.leader)" (leadership.leader) |
diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh
index 9e5b9107f..df4873a0b 100644
--- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh
+++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh
@@ -11,6 +11,6 @@
β [1mleadership.follower[0m β A follower. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
-β β leader" β
+β β leader" (leadership.leader) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 1c6056871..f96bb3720 100644
--- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#leadership.leader)" (leadership.leader) |
diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.html b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.html
index 4a69c5928..83e593549 100644
--- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.html
+++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.html
@@ -1,11 +1,11 @@
-| Variable | Description |
+| Variable | Description |
leadership.leader string multiple standard mandatory unique | A leader. Default: |
-leadership.follower string multiple standard mandatory unique | A follower. Default: - the value of the variable "a leader"
|
+value2
+leadership.follower string multiple standard mandatory unique | A follower. Default: - the value of the variable "a leader" (leadership.leader)
|
diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.json b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.json
index 1cd276de4..94cc000c4 100644
--- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.json
+++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.json
@@ -66,7 +66,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "leadership.leader",
"type": "variable"
diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.md
index 1c6056871..f96bb3720 100644
--- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.md
+++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#leadership.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**:
β’ the value of the variable "[a leader](#leadership.leader)" (leadership.leader) |
diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.sh
index 83fdbc9c1..c60bb7b1e 100644
--- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.sh
+++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.sh
@@ -9,5 +9,5 @@
β [1mleadership.follower[0m β A follower. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "a β
-β β leader" β
+β β leader" (leadership.leader) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc
index b95e937bd..9eaffa7d4 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc
@@ -1,14 +1,14 @@
[cols="1a,1a"]
|====
-| Variable | Description
+| Variable | Description
| **leader.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
* a
-* b
+* b
| **leader.follower** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
| **variable** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | **Default**: the value of the variable "follower"
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | **Default**: the value of the variable "follower" (leader.follower).
|====
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc
index ce8a719e6..ec67f04e2 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc
@@ -2,15 +2,15 @@
[cols="1a,1a"]
|====
-| Variable | Description
+| Variable | Description
| **leader.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | **Default**:
* a
-* b
+* b
| **leader.follower** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
| **variable** +
-`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | **Default**: the value of the variable "follower"
+`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `unique` | **Default**: the value of the variable "follower" (leader.follower).
|====
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.gitlab.md b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.gitlab.md
index 4f4acd1dc..41f3847c2 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.gitlab.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------|
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
-| **leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#leader.follower)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
+| **leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#leader.follower)" (leader.follower). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.html b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.html
index 1d03cd59a..5260d6431 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.html
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
leader.leader string multiple standard mandatory unique | Default: |
-leader.follower string standard | |
-variable string multiple standard unique | Default: the value of the variable "follower" |
+b
+leader.follower string standard | |
+variable string multiple standard unique | Default: the value of the variable "follower" (leader.follower). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.md b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.md
index ae23cc8e7..fcdb68f3d 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------|
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
-| **leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#leader.follower)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
+| **leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#leader.follower)" (leader.follower). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh
index 2a3d5f8f0..cc473644f 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh
@@ -11,7 +11,7 @@
β [1;7m string [0m [1;7m standard [0m β β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β [1mDefault[0m: the value of the variable β
-β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "follower" β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "follower" (leader.follower). β
β [1;7munique [0m β β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 33d9ad58f..41d5114cc 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------|
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
-| **leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#leader.follower)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
+| **leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#leader.follower)" (leader.follower). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.html b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.html
index 489cdb201..b49a7e9e5 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.html
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
leader.leader string multiple standard mandatory unique | Default: |
-leader.follower string standard | |
-variable string multiple standard unique | Default: the value of the variable "follower" |
+b
+leader.follower string standard | |
+variable string multiple standard unique | Default: the value of the variable "follower" (leader.follower). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.json b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.json
index 44362a085..40cc9aec8 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.json
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.json
@@ -66,7 +66,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "leader.follower",
"type": "variable"
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.md
index 33d9ad58f..41d5114cc 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------|
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
-| **leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
-| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#leader.follower)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | **Default**:
β’ a
β’ b |
+| **leader.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | |
+| **variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | **Default**: the value of the variable "[follower](#leader.follower)" (leader.follower). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh
index 86a49355d..d39370d13 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh
@@ -9,6 +9,6 @@
β [1;7m string [0m [1;7m standard [0m β β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvariable[0m β [1mDefault[0m: the value of the variable β
-β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "follower" β
+β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β "follower" (leader.follower). β
β [1;7munique [0m β β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.adoc
index 49fbb178f..8d980647a 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.adoc
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.adoc
@@ -15,6 +15,6 @@
**Default**: val21
| **calculate** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A calculated variable. +
-**Default**: the value of the variable "a follower"
+**Default**: the value of the variable "a follower" (leader.follower1).
|====
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.adoc
index 5979a7fee..46c10d674 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.adoc
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.adoc
@@ -17,6 +17,6 @@
**Default**: val21
| **calculate** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A calculated variable. +
-**Default**: the value of the variable "a follower"
+**Default**: the value of the variable "a follower" (leader.follower1).
|====
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.gitlab.md b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.gitlab.md
index 48419c662..cb44b490d 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.gitlab.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#leader.follower1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#leader.follower1)" (leader.follower1). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.html b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.html
index 6092561aa..e1a3b730e 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.html
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.html
@@ -2,14 +2,14 @@
-| Variable | Description |
+| Variable | Description |
leader.leader string multiple standard mandatory unique | A leader. Default: |
-leader.follower1 string standard mandatory | A follower. Default: val11 |
-leader.follower2 string standard mandatory | An other follower. Default: val21 |
-calculate string multiple standard mandatory | A calculated variable. Default: the value of the variable "a follower" |
+value2
+leader.follower1 string standard mandatory | A follower. Default: val11 |
+leader.follower2 string standard mandatory | An other follower. Default: val21 |
+calculate string multiple standard mandatory | A calculated variable. Default: the value of the variable "a follower" (leader.follower1). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.md b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.md
index 9c236bf59..154e917f9 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#leader.follower1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#leader.follower1)" (leader.follower1). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.sh
index 9e226be84..15bb13013 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.sh
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.sh
@@ -16,6 +16,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mcalculate[0m β A calculated variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m β "a follower" β
+β [1;7mmandatory [0m β "a follower" (leader.follower1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.gitlab.md
index baac50467..b5c7db945 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#leader.follower1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#leader.follower1)" (leader.follower1). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.html b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.html
index 15be5a722..7601a831b 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.html
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.html
@@ -1,13 +1,13 @@
-| Variable | Description |
+| Variable | Description |
leader.leader string multiple standard mandatory unique | A leader. Default: |
-leader.follower1 string standard mandatory | A follower. Default: val11 |
-leader.follower2 string standard mandatory | An other follower. Default: val21 |
-calculate string multiple standard mandatory | A calculated variable. Default: the value of the variable "a follower" |
+value2
+leader.follower1 string standard mandatory | A follower. Default: val11 |
+leader.follower2 string standard mandatory | An other follower. Default: val21 |
+calculate string multiple standard mandatory | A calculated variable. Default: the value of the variable "a follower" (leader.follower1). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.json b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.json
index c7a5e6195..bcf4432ba 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.json
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.json
@@ -101,7 +101,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "leader.follower1",
"type": "variable"
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.md b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.md
index baac50467..b5c7db945 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#leader.follower1)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[a follower](#leader.follower1)" (leader.follower1). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.sh
index 6d09bbaf5..96bf0ccd5 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.sh
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.sh
@@ -14,5 +14,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mcalculate[0m β A calculated variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m β "a follower" β
+β [1;7mmandatory [0m β "a follower" (leader.follower1). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.adoc
index c9968ccec..2aeb197f3 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.adoc
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.adoc
@@ -15,6 +15,6 @@
**Default**: val21
| **calculate** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A calculated variable. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (leader.leader).
|====
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.adoc
index d54eaf0bd..dbf2c8008 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.adoc
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.adoc
@@ -17,6 +17,6 @@
**Default**: val21
| **calculate** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A calculated variable. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (leader.leader).
|====
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.gitlab.md b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.gitlab.md
index 848047e4b..5c5163564 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.gitlab.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#leader.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#leader.leader)" (leader.leader). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.html b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.html
index 8554ecde1..5bedb3d74 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.html
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.html
@@ -2,14 +2,14 @@
-| Variable | Description |
+| Variable | Description |
leader.leader string multiple standard mandatory unique | A leader. Default: |
-leader.follower1 string standard mandatory | A follower. Default: val11 |
-leader.follower2 string standard mandatory | An other follower. Default: val21 |
-calculate string multiple standard mandatory unique | A calculated variable. Default: the value of the variable "a leader" |
+value2
+leader.follower1 string standard mandatory | A follower. Default: val11 |
+leader.follower2 string standard mandatory | An other follower. Default: val21 |
+calculate string multiple standard mandatory unique | A calculated variable. Default: the value of the variable "a leader" (leader.leader). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.md b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.md
index c6a585e86..8405dedad 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#leader.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#leader.leader)" (leader.leader). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.sh
index f4d9220c0..06d22d821 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.sh
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.sh
@@ -16,6 +16,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mcalculate[0m β A calculated variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "a leader" β
+β [1;7mmandatory [0m [1;7m unique [0m β "a leader" (leader.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.gitlab.md
index 8be139e88..4d667472e 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#leader.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#leader.leader)" (leader.leader). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.html b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.html
index 3b2d339cb..a287ab105 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.html
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.html
@@ -1,13 +1,13 @@
-| Variable | Description |
+| Variable | Description |
leader.leader string multiple standard mandatory unique | A leader. Default: |
-leader.follower1 string standard mandatory | A follower. Default: val11 |
-leader.follower2 string standard mandatory | An other follower. Default: val21 |
-calculate string multiple standard mandatory unique | A calculated variable. Default: the value of the variable "a leader" |
+value2
+leader.follower1 string standard mandatory | A follower. Default: val11 |
+leader.follower2 string standard mandatory | An other follower. Default: val21 |
+calculate string multiple standard mandatory unique | A calculated variable. Default: the value of the variable "a leader" (leader.leader). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.json b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.json
index 6ffbc16b0..1c33c94cc 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.json
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.json
@@ -107,7 +107,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "leader.leader",
"type": "variable"
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.md b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.md
index 8be139e88..4d667472e 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **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 |
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#leader.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **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 |
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**: the value of the variable "[a leader](#leader.leader)" (leader.leader). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.sh
index 25555cc7a..0f54ac181 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.sh
+++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.sh
@@ -14,5 +14,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mcalculate[0m β A calculated variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "a leader" β
+β [1;7mmandatory [0m [1;7m unique [0m β "a leader" (leader.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.adoc b/tests/results/test_without_family/40_9leadership-calculation-variable.adoc
index aa61427bf..f3efa01c3 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable.adoc
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable.adoc
@@ -9,7 +9,7 @@
* value2
| **leader.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A leader. +
-**Default**: the value of the variable "a calculated variable"
+**Default**: the value of the variable "a calculated variable" (calculate).
| **leader.follower1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
**Default**: val11
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.adoc
index 1f0ca20ed..e7b5d8bbe 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.adoc
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.adoc
@@ -11,7 +11,7 @@
* value2
| **leader.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A leader. +
-**Default**: the value of the variable "a calculated variable"
+**Default**: the value of the variable "a calculated variable" (calculate).
| **leader.follower1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
**Default**: val11
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.gitlab.md b/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.gitlab.md
index 03f52e38a..26d769b6e 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.gitlab.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#calculate)" |
-| **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 |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------|
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#calculate)" (calculate). |
+| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
+| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.html b/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.html
index c898874a4..bd5d91b50 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.html
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.html
@@ -2,14 +2,14 @@
-| Variable | Description |
+| Variable | Description |
calculate string multiple standard mandatory unique | A calculated variable. Default: |
-leader.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a calculated variable" |
-leader.follower1 string standard mandatory | A follower. Default: val11 |
-leader.follower2 string standard mandatory | An other follower. Default: val21 |
+value2
+leader.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a calculated variable" (calculate). |
+leader.follower1 string standard mandatory | A follower. Default: val11 |
+leader.follower2 string standard mandatory | An other follower. Default: val21 |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.md b/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.md
index 098e976ce..b05749388 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#calculate)" |
-| **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 |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------|
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#calculate)" (calculate). |
+| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
+| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.sh
index 6f4f499c1..7f25fe8e6 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.sh
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.sh
@@ -10,7 +10,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mleader.leader[0m β A leader. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "a calculated variable" β
+β [1;7mmandatory [0m [1;7m unique [0m β "a calculated variable" (calculate). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mleader.follower1[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: val11 β
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_without_family/40_9leadership-calculation-variable.gitlab.md
index 5ef00e201..cf96a5ffc 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#calculate)" |
-| **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 |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------|
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#calculate)" (calculate). |
+| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
+| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.html b/tests/results/test_without_family/40_9leadership-calculation-variable.html
index 368cdd1b1..451295edf 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable.html
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable.html
@@ -1,13 +1,13 @@
-| Variable | Description |
+| Variable | Description |
calculate string multiple standard mandatory unique | A calculated variable. Default: |
-leader.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a calculated variable" |
-leader.follower1 string standard mandatory | A follower. Default: val11 |
-leader.follower2 string standard mandatory | An other follower. Default: val21 |
+value2
+leader.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a calculated variable" (calculate). |
+leader.follower1 string standard mandatory | A follower. Default: val11 |
+leader.follower2 string standard mandatory | An other follower. Default: val21 |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.json b/tests/results/test_without_family/40_9leadership-calculation-variable.json
index 98eba0101..117b044fe 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable.json
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable.json
@@ -65,7 +65,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "calculate",
"type": "variable"
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.md b/tests/results/test_without_family/40_9leadership-calculation-variable.md
index 5ef00e201..cf96a5ffc 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|
-| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
-| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#calculate)" |
-| **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 |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------|
+| **calculate**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A calculated variable.
**Default**:
β’ value1
β’ value2 |
+| **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a calculated variable](#calculate)" (calculate). |
+| **leader.follower1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val11 |
+| **leader.follower2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.
**Default**: val21 |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.sh b/tests/results/test_without_family/40_9leadership-calculation-variable.sh
index ba0ba615d..750d37927 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable.sh
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable.sh
@@ -8,7 +8,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mleader.leader[0m β A leader. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "a calculated variable" β
+β [1;7mmandatory [0m [1;7m unique [0m β "a calculated variable" (calculate). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mleader.follower1[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: val11 β
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.adoc b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.adoc
index 6004b9149..e049b35b2 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.adoc
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.adoc
@@ -11,7 +11,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower.
| **leadership_2.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A leader. +
-**Default**: the value of the variable "a follower"
+**Default**: the value of the variable "a follower" (leadership_1.follower).
| **leadership_2.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
**Default**: val
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc
index 75a9c701b..323a0ebff 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc
@@ -13,7 +13,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower.
| **leadership_2.leader** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A leader. +
-**Default**: the value of the variable "a follower"
+**Default**: the value of the variable "a follower" (leadership_1.follower).
| **leadership_2.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. +
**Default**: val
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.gitlab.md b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.gitlab.md
index 37461a34e..f474e7ee6 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.gitlab.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#leadership_1.follower)" |
-| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#leadership_1.follower)" (leadership_1.follower). |
+| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.html b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.html
index be20b78a8..d6ea636e1 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.html
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.html
@@ -2,14 +2,14 @@
-| Variable | Description |
+| Variable | Description |
leadership_1.leader string multiple standard mandatory unique | A leader. Default: |
-leadership_1.follower string basic mandatory | A follower. |
-leadership_2.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a follower" |
-leadership_2.follower string standard mandatory | A follower. Default: val |
+value2
+leadership_1.follower string basic mandatory | A follower. |
+leadership_2.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a follower" (leadership_1.follower). |
+leadership_2.follower string standard mandatory | A follower. Default: val |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.md b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.md
index 357f8bb1b..cbe847eac 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#leadership_1.follower)" |
-| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#leadership_1.follower)" (leadership_1.follower). |
+| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh
index 6d4baa244..3a5393b89 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh
@@ -14,6 +14,7 @@
β [1mleadership_2.leader[0m β A leader. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "a follower" β
+β β (leadership_1.follower). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mleadership_2.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: val β
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.gitlab.md
index 6b779eee9..f6f07c714 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#leadership_1.follower)" |
-| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#leadership_1.follower)" (leadership_1.follower). |
+| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.html b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.html
index 3986daddb..f0feb85b4 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.html
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.html
@@ -1,13 +1,13 @@
-| Variable | Description |
+| Variable | Description |
leadership_1.leader string multiple standard mandatory unique | A leader. Default: |
-leadership_1.follower string basic mandatory | A follower. |
-leadership_2.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a follower" |
-leadership_2.follower string standard mandatory | A follower. Default: val |
+value2
+leadership_1.follower string basic mandatory | A follower. |
+leadership_2.leader string multiple standard mandatory unique | A leader. Default: the value of the variable "a follower" (leadership_1.follower). |
+leadership_2.follower string standard mandatory | A follower. Default: val |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.json b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.json
index 2bd205b9b..82ac28004 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.json
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.json
@@ -96,7 +96,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "leadership_1.follower",
"type": "variable"
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.md
index 6b779eee9..f6f07c714 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#leadership_1.follower)" |
-| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**: the value of the variable "[a follower](#leadership_1.follower)" (leadership_1.follower). |
+| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.
**Default**: val |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.sh
index 35de6011c..1946cf693 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.sh
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.sh
@@ -12,6 +12,7 @@
β [1mleadership_2.leader[0m β A leader. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
β [1;7mmandatory [0m [1;7m unique [0m β "a follower" β
+β β (leadership_1.follower). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mleadership_2.follower[0m β A follower. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: val β
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc
index 4b6a7c7e3..70cdf015e 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc
@@ -17,6 +17,6 @@
* value2
| **leadership_2.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A follower. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (leadership_1.leader).
|====
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc
index defc08972..c6a161d1a 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc
@@ -19,6 +19,6 @@
* value2
| **leadership_2.follower** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A follower. +
-**Default**: the value of the variable "a leader"
+**Default**: the value of the variable "a leader" (leadership_1.leader).
|====
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.gitlab.md b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.gitlab.md
index 2af7d276e..2f3e1aa4c 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.gitlab.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
-| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#leadership_1.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#leadership_1.leader)" (leadership_1.leader). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.html b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.html
index 6654afa5e..39e3e20a1 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.html
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.html
@@ -2,15 +2,15 @@
-| Variable | Description |
+| Variable | Description |
leadership_1.leader string multiple standard mandatory unique | A leader. Default: |
-leadership_1.follower string basic mandatory | A follower. |
+value2
+leadership_1.follower string basic mandatory | A follower. |
leadership_2.leader string multiple standard mandatory unique | A leader. Default: |
-leadership_2.follower string multiple standard mandatory unique | A follower. Default: the value of the variable "a leader" |
+value2
+leadership_2.follower string multiple standard mandatory unique | A follower. Default: the value of the variable "a leader" (leadership_1.leader). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.md b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.md
index 5de1eaa60..e8bfa8759 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
-| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#leadership_1.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#leadership_1.leader)" (leadership_1.leader). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh
index 749e5ec94..ecaceec64 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh
@@ -18,6 +18,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mleadership_2.follower[0m β A follower. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "a leader" β
+β [1;7mmandatory [0m [1;7m unique [0m β "a leader" (leadership_1.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index e6f91de5e..d8de63b80 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
-| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#leadership_1.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#leadership_1.leader)" (leadership_1.leader). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.html b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.html
index a0ddf09a8..9807f2e79 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.html
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.html
@@ -1,14 +1,14 @@
-| Variable | Description |
+| Variable | Description |
leadership_1.leader string multiple standard mandatory unique | A leader. Default: |
-leadership_1.follower string basic mandatory | A follower. |
+value2
+leadership_1.follower string basic mandatory | A follower. |
leadership_2.leader string multiple standard mandatory unique | A leader. Default: |
-leadership_2.follower string multiple standard mandatory unique | A follower. Default: the value of the variable "a leader" |
+value2
+leadership_2.follower string multiple standard mandatory unique | A follower. Default: the value of the variable "a leader" (leadership_1.leader). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.json b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.json
index ee377e412..b1c44acc1 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.json
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.json
@@ -126,7 +126,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "leadership_1.leader",
"type": "variable"
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.md
index e6f91de5e..d8de63b80 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.md
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
-| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
-| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
-| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#leadership_1.leader)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership_1.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
+| **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A leader.
**Default**:
β’ value1
β’ value2 |
+| **leadership_2.follower**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A follower.
**Default**: the value of the variable "[a leader](#leadership_1.leader)" (leadership_1.leader). |
diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh
index aee53f260..bf9495fc9 100644
--- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh
+++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh
@@ -16,5 +16,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mleadership_2.follower[0m β A follower. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: the value of the variable β
-β [1;7mmandatory [0m [1;7m unique [0m β "a leader" β
+β [1;7mmandatory [0m [1;7m unique [0m β "a leader" (leadership_1.leader). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_0family_dynamic.json b/tests/results/test_without_family/60_0family_dynamic.json
index 6beb13eae..9f662b180 100644
--- a/tests/results/test_without_family/60_0family_dynamic.json
+++ b/tests/results/test_without_family/60_0family_dynamic.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_0family_dynamic_1_1.json b/tests/results/test_without_family/60_0family_dynamic_1_1.json
index 2d1e57873..4e3ff11ab 100644
--- a/tests/results/test_without_family/60_0family_dynamic_1_1.json
+++ b/tests/results/test_without_family/60_0family_dynamic_1_1.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_0family_dynamic_1_1_empty.json b/tests/results/test_without_family/60_0family_dynamic_1_1_empty.json
index 2ca9018b3..e03405d1d 100644
--- a/tests/results/test_without_family/60_0family_dynamic_1_1_empty.json
+++ b/tests/results/test_without_family/60_0family_dynamic_1_1_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_0family_dynamic_empty.json b/tests/results/test_without_family/60_0family_dynamic_empty.json
index 5c68a315b..3a270b133 100644
--- a/tests/results/test_without_family/60_0family_dynamic_empty.json
+++ b/tests/results/test_without_family/60_0family_dynamic_empty.json
@@ -34,7 +34,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_0family_dynamic_forbidden_char.json b/tests/results/test_without_family/60_0family_dynamic_forbidden_char.json
index 9a91112f4..127fc6328 100644
--- a/tests/results/test_without_family/60_0family_dynamic_forbidden_char.json
+++ b/tests/results/test_without_family/60_0family_dynamic_forbidden_char.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_0family_dynamic_no_description.json b/tests/results/test_without_family/60_0family_dynamic_no_description.json
index 59f1c8866..24e44cd81 100644
--- a/tests/results/test_without_family/60_0family_dynamic_no_description.json
+++ b/tests/results/test_without_family/60_0family_dynamic_no_description.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_0family_dynamic_no_description_empty.json b/tests/results/test_without_family/60_0family_dynamic_no_description_empty.json
index 62fa21236..936db24b2 100644
--- a/tests/results/test_without_family/60_0family_dynamic_no_description_empty.json
+++ b/tests/results/test_without_family/60_0family_dynamic_no_description_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_0family_dynamic_test.json b/tests/results/test_without_family/60_0family_dynamic_test.json
index 08b0888d4..58b312e41 100644
--- a/tests/results/test_without_family/60_0family_dynamic_test.json
+++ b/tests/results/test_without_family/60_0family_dynamic_test.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_0family_dynamic_upper_char.json b/tests/results/test_without_family/60_0family_dynamic_upper_char.json
index 4c80246e5..b051cdc12 100644
--- a/tests/results/test_without_family/60_0family_dynamic_upper_char.json
+++ b/tests/results/test_without_family/60_0family_dynamic_upper_char.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_empty.json b/tests/results/test_without_family/60_0family_dynamic_variable_empty.json
index 5846a97f4..e2bf72904 100644
--- a/tests/results/test_without_family/60_0family_dynamic_variable_empty.json
+++ b/tests/results/test_without_family/60_0family_dynamic_variable_empty.json
@@ -40,7 +40,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_suffix.json b/tests/results/test_without_family/60_0family_dynamic_variable_suffix.json
index 1e29e5e80..0eb744010 100644
--- a/tests/results/test_without_family/60_0family_dynamic_variable_suffix.json
+++ b/tests/results/test_without_family/60_0family_dynamic_variable_suffix.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.json b/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.json
index c9fb5e421..5db8cb8c3 100644
--- a/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.json
+++ b/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc
index 7803a445a..932583e91 100644
--- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc
+++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc
@@ -12,6 +12,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of "with a variable".
+**Default**: the value of "with a variable" (dyn__val1__.family.var).
|====
diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc
index 26df0cb25..f7b21c044 100644
--- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc
+++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc
@@ -14,6 +14,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
-**Default**: the value of "with a variable".
+**Default**: the value of "with a variable" (dyn__val1__.family.var).
|====
diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.gitlab.md b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.gitlab.md
index 0870748fc..f4898f154 100644
--- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.gitlab.md
+++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#dyn:::identifier:::.family.var)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#dyn:::identifier:::.family.var)" (dyn*val1*.family.var). |
diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.html b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.html
index 800a8dcea..c305e785a 100644
--- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.html
+++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A suffix variable. Default: |
-dynval1.family.var dynval2.family.var string basic mandatory | With a variable. |
-var2 string standard mandatory | A second variable. Default: the value of "with a variable". |
+val2
+dynval1.family.var dynval2.family.var string basic mandatory | With a variable. |
+var2 string standard mandatory | A second variable. Default: the value of "with a variable" (dynval1.family.var). |
diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.md b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.md
index f41bebb12..a20dd5c81 100644
--- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.md
+++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#dyn:::identifier:::.family.var)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#dyn:::identifier:::.family.var)" (dyn*val1*.family.var). |
diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh
index 179a661ba..3e9266874 100644
--- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh
+++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh
@@ -14,6 +14,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of "with a β
-β β variable". β
+β β variable" (dyn[3mval1[0m.family.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 4fcfa689b..d67073f84 100644
--- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#dyn:::identifier:::.family.var)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#dyn:::identifier:::.family.var)" (dyn*val1*.family.var). |
diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.html b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.html
index 4ff2d0d63..a34b20c6d 100644
--- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.html
+++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A suffix variable. Default: |
-dynval1.family.var dynval2.family.var string basic mandatory | With a variable. |
-var2 string standard mandatory | A second variable. Default: the value of "with a variable". |
+val2
+dynval1.family.var dynval2.family.var string basic mandatory | With a variable. |
+var2 string standard mandatory | A second variable. Default: the value of "with a variable" (dynval1.family.var). |
diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.json b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.json
index 63c9f79ab..c156aa2a4 100644
--- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.json
+++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
@@ -123,7 +123,7 @@
"default": {
"name": "Default",
"values": {
- "description": "the value of \"{0}\".",
+ "description": "the value of {0}.",
"variables": [
{
"path": "dyn{{ identifier }}.family.var",
diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.md
index 4fcfa689b..d67073f84 100644
--- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.md
+++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#dyn:::identifier:::.family.var)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.
**Default**: the value of "[with a variable](#dyn:::identifier:::.family.var)" (dyn*val1*.family.var). |
diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.sh
index ea45f9ca8..34bf850a0 100644
--- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.sh
+++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.sh
@@ -12,5 +12,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A second variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of "with a β
-β β variable". β
+β β variable" (dyn[3mval1[0m.family.var). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.json b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.json
index 81e77be4b..9eeaa546c 100644
--- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.json
+++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.json b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.json
index 02648c311..81055249a 100644
--- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.json
+++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.json b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.json
index 1834e00a5..35e510402 100644
--- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.json
+++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test_without_family/60_2family_dynamic_outside_calc.json b/tests/results/test_without_family/60_2family_dynamic_outside_calc.json
index 7cba46149..43ff4d991 100644
--- a/tests/results/test_without_family/60_2family_dynamic_outside_calc.json
+++ b/tests/results/test_without_family/60_2family_dynamic_outside_calc.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.json b/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.json
index 90d67de63..e47c6c619 100644
--- a/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.json
+++ b/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_description.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_description.adoc
index 194419a5c..0caf91f4a 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_description.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_description.adoc
@@ -6,12 +6,12 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable for __val1__ or __val2__.
| **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
-**Disabled**: when the variable "a dynamic variable for __val1__" has the value "val".
+**Disabled**: when the variable "a dynamic variable for __val1__" (dyn__val1__.var) has the value "val".
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A new variable. +
**Default**:
-* the value of the variable "a dynamic variable for __val1__"
-* the value of the variable "a dynamic variable for __val2__"
+* the value of the variable "a dynamic variable for __val1__" (dyn__val1__.var)
+* the value of the variable "a dynamic variable for __val2__" (dyn__val2__.var)
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.adoc
index 4dfe63b11..b3627ac74 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.adoc
@@ -8,12 +8,12 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable for __val1__ or __val2__.
| **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
-**Disabled**: when the variable "a dynamic variable for __val1__" has the value "val".
+**Disabled**: when the variable "a dynamic variable for __val1__" (dyn__val1__.var) has the value "val".
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` | A new variable. +
**Default**:
-* the value of the variable "a dynamic variable for __val1__"
-* the value of the variable "a dynamic variable for __val2__"
+* the value of the variable "a dynamic variable for __val1__" (dyn__val1__.var)
+* the value of the variable "a dynamic variable for __val2__" (dyn__val2__.var)
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.gitlab.md
index 6abee50b5..7469246ad 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" has the value "val". |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)"
β’ the value of the variable "[a dynamic variable for *val2*](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" (dyn*val1*.var) has the value "val". |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[a dynamic variable for *val2*](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.html b/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.html
index 1d06a094f..c32ed60ab 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.html
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
-dynval1.var dynval2.var string basic mandatory | A dynamic variable for val1 or val2. |
-var1 string basic mandatory disabled | A new variable. Disabled: when the variable "a dynamic variable for val1" has the value "val". |
-var2 string multiple standard mandatory | A new variable. Default: - the value of the variable "a dynamic variable for val1"
-- the value of the variable "a dynamic variable for val2"
|
+dynval1.var dynval2.var string basic mandatory | A dynamic variable for val1 or val2. |
+var1 string basic mandatory disabled | A new variable. Disabled: when the variable "a dynamic variable for val1" (dynval1.var) has the value "val". |
+var2 string multiple standard mandatory | A new variable. Default: - the value of the variable "a dynamic variable for val1" (dynval1.var)
+- the value of the variable "a dynamic variable for val2" (dynval2.var)
|
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.md b/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.md
index fa4f84793..c632b6830 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" has the value "val". |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)"
β’ the value of the variable "[a dynamic variable for *val2*](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" (dyn*val1*.var) has the value "val". |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[a dynamic variable for *val2*](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.sh
index aca143eaa..126b3777c 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_description.changelog.sh
@@ -9,14 +9,16 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar1[0m β A new variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable for [3mval1[0m" has the β
-β β value "val". β
+β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable for [3mval1[0m" β
+β β (dyn[3mval1[0m.var) has the value "val". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A new variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m β β’ the value of the variable "a β
β β dynamic variable for [3mval1[0m" β
+β β (dyn[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β dynamic variable for [3mval2[0m" β
+β β (dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_calc_description.gitlab.md
index 95b238ccb..6497f1648 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" has the value "val". |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)"
β’ the value of the variable "[a dynamic variable for *val2*](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" (dyn*val1*.var) has the value "val". |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[a dynamic variable for *val2*](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_description.html b/tests/results/test_without_family/60_5family_dynamic_calc_description.html
index 7f23cc964..e8eacb9f4 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_description.html
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_description.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
-dynval1.var dynval2.var string basic mandatory | A dynamic variable for val1 or val2. |
-var1 string basic mandatory disabled | A new variable. Disabled: when the variable "a dynamic variable for val1" has the value "val". |
-var2 string multiple standard mandatory | A new variable. Default: - the value of the variable "a dynamic variable for val1"
-- the value of the variable "a dynamic variable for val2"
|
+dynval1.var dynval2.var string basic mandatory | A dynamic variable for val1 or val2. |
+var1 string basic mandatory disabled | A new variable. Disabled: when the variable "a dynamic variable for val1" (dynval1.var) has the value "val". |
+var2 string multiple standard mandatory | A new variable. Default: - the value of the variable "a dynamic variable for val1" (dynval1.var)
+- the value of the variable "a dynamic variable for val2" (dynval2.var)
|
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_description.json b/tests/results/test_without_family/60_5family_dynamic_calc_description.json
index 26913d07d..f9a65ead3 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_description.json
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_description.json
@@ -67,7 +67,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"val\".",
+ "message": "when the variable {0} has the value \"val\".",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
@@ -100,7 +100,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
@@ -110,7 +110,7 @@
"description": "a dynamic variable for {{ identifier }}"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_description.md b/tests/results/test_without_family/60_5family_dynamic_calc_description.md
index 95b238ccb..6497f1648 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_description.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_description.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" has the value "val". |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)"
β’ the value of the variable "[a dynamic variable for *val2*](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable for *val1* or *val2*. |
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" (dyn*val1*.var) has the value "val". |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` | A new variable.
**Default**:
β’ the value of the variable "[a dynamic variable for *val1*](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[a dynamic variable for *val2*](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_description.sh b/tests/results/test_without_family/60_5family_dynamic_calc_description.sh
index 2c2b913a2..4ab229925 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_description.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_description.sh
@@ -7,13 +7,15 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar1[0m β A new variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "a β
-β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable for [3mval1[0m" has the β
-β β value "val". β
+β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable for [3mval1[0m" β
+β β (dyn[3mval1[0m.var) has the value "val". β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A new variable. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m β β’ the value of the variable "a β
β β dynamic variable for [3mval1[0m" β
+β β (dyn[3mval1[0m.var) β
β β β’ the value of the variable "a β
β β dynamic variable for [3mval2[0m" β
+β β (dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.adoc
index 0cb803c93..b01ef2021 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.adoc
@@ -18,7 +18,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (dyn__val1__.var)
+* the value of the variable "A dynamic variable" (dyn__val2__.var)
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.adoc
index 96443fc7d..c50c8ae21 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.adoc
@@ -20,7 +20,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (dyn__val1__.var)
+* the value of the variable "A dynamic variable" (dyn__val2__.var)
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.gitlab.md
index 56c126cb6..5272c72d3 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier. |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier. |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.html b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.html
index b9a8e820a..3c5ff0f0a 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.html
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.html
@@ -9,8 +9,8 @@
val2
var2 string standard mandatory | A suffix variable2. Default: val1 |
dynval1.var dynval2.var string standard mandatory | A dynamic variable. Default: the value of the identifier. |
-var3 string standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+var3 string standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable" (dynval1.var)
+- the value of the variable "A dynamic variable" (dynval2.var)
|
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.md b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.md
index 3f4ddcac3..6c8c79b8d 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier. |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier. |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.sh
index 93fdf4ccb..b28a02cdf 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.changelog.sh
@@ -18,8 +18,8 @@
β [1mvar3[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: β
β β β’ the value of the variable "A β
-β β dynamic variable" β
+β β dynamic variable" (dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
-β β dynamic variable" β
+β β dynamic variable" (dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.gitlab.md
index a62b95f0e..9aaeb4df2 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier. |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier. |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.html b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.html
index c7aa55015..482186d59 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.html
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.html
@@ -7,8 +7,8 @@
val2
var2 string standard mandatory | A suffix variable2. Default: val1 |
dynval1.var dynval2.var string standard mandatory | A dynamic variable. Default: the value of the identifier. |
-var3 string standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+var3 string standard mandatory | A variable calculated. Default: - the value of the variable "A dynamic variable" (dynval1.var)
+- the value of the variable "A dynamic variable" (dynval2.var)
|
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.json b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.json
index a1480d825..5da98d1eb 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.json
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.json
@@ -69,7 +69,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
@@ -127,7 +127,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
@@ -137,7 +137,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.md b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.md
index a62b95f0e..9aaeb4df2 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier. |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier. |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.sh b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.sh
index 14dd93c90..8b7bda952 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier.sh
@@ -16,7 +16,7 @@
β [1mvar3[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: β
β β β’ the value of the variable "A β
-β β dynamic variable" β
+β β dynamic variable" (dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
-β β dynamic variable" β
+β β dynamic variable" (dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.adoc
index 5c234bff2..b3b26660e 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.adoc
@@ -20,7 +20,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (dyn__val1__.var)
+* the value of the variable "A dynamic variable" (dyn__val2__.var)
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.adoc
index a9625ef5c..0795f1b57 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.adoc
@@ -22,7 +22,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | A variable calculated. +
**Default**:
-* the value of the variable "A dynamic variable"
-* the value of the variable "A dynamic variable"
+* the value of the variable "A dynamic variable" (dyn__val1__.var)
+* the value of the variable "A dynamic variable" (dyn__val2__.var)
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.gitlab.md
index 069ea7cfc..f7dfcd5e7 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.gitlab.md
@@ -1,11 +1,11 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.html b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.html
index ad24144ac..a266af2b5 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.html
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.html
@@ -9,8 +9,8 @@
val2
var2 string standard mandatory | A suffix variable2. Default: val1 |
dynval1.var dynval2.var string multiple standard mandatory unique | A dynamic variable. Default: - the value of the identifier
|
-var3 string multiple standard mandatory unique | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+var3 string multiple standard mandatory unique | A variable calculated. Default: - the value of the variable "A dynamic variable" (dynval1.var)
+- the value of the variable "A dynamic variable" (dynval2.var)
|
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.md b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.md
index 7eb1f06dc..1a723c0c6 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.md
@@ -1,9 +1,9 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.sh
index ba4fd9fed..90dbacfaf 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.changelog.sh
@@ -19,8 +19,8 @@
β [1mvar3[0m β A variable calculated. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "A β
-β β dynamic variable" β
+β β dynamic variable" (dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
-β β dynamic variable" β
+β β dynamic variable" (dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.gitlab.md
index 1cb8dc44e..a6f407bb3 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.gitlab.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.html b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.html
index 6dc1fdcb7..26973ac6b 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.html
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.html
@@ -7,8 +7,8 @@
val2
var2 string standard mandatory | A suffix variable2. Default: val1 |
dynval1.var dynval2.var string multiple standard mandatory unique | A dynamic variable. Default: - the value of the identifier
|
-var3 string multiple standard mandatory unique | A variable calculated. Default: - the value of the variable "A dynamic variable"
-- the value of the variable "A dynamic variable"
|
+var3 string multiple standard mandatory unique | A variable calculated. Default: - the value of the variable "A dynamic variable" (dynval1.var)
+- the value of the variable "A dynamic variable" (dynval2.var)
|
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.json b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.json
index 64605783a..49de51dfa 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.json
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.json
@@ -69,7 +69,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
@@ -142,7 +142,7 @@
"name": "Default",
"values": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
@@ -152,7 +152,7 @@
"description": "A dynamic variable"
},
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.md
index 1cb8dc44e..a6f407bb3 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.md
@@ -1,7 +1,7 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
-| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)"
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable2.
**Default**: val1 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A dynamic variable.
**Default**:
β’ the value of the identifier |
+| **var3**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A variable calculated.
**Default**:
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var)
β’ the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val2*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.sh
index ba2b0e5bf..118830584 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_identifier_multi.sh
@@ -17,7 +17,7 @@
β [1mvar3[0m β A variable calculated. β
β [1;7m string [0m [1;7m multiple [0m [1;7m standard [0m [1;7m [0m β [1mDefault[0m: β
β [1;7mmandatory [0m [1;7m unique [0m β β’ the value of the variable "A β
-β β dynamic variable" β
+β β dynamic variable" (dyn[3mval1[0m.var) β
β β β’ the value of the variable "A β
-β β dynamic variable" β
+β β dynamic variable" (dyn[3mval2[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.json b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.json
index ca9831f11..30d6c3666 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.json
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.json b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.json
index b9b18847a..cc65ad9d2 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.json
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.json b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.json
index 3e6c1e5f2..e3fa3db5e 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.json
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.json b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.json
index dd30cd476..c5c41cc7e 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.json
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable.adoc
index 57bb7dd3b..a74421fbd 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.adoc
@@ -12,6 +12,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable"
+**Default**: the value of the variable "A dynamic variable" (dyn__val1__.var)
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.adoc
index a9a0f9dd2..44a0d87ee 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.adoc
@@ -14,6 +14,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable"
+**Default**: the value of the variable "A dynamic variable" (dyn__val1__.var)
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.gitlab.md
index 7ea1a69f8..902737378 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.html b/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.html
index ad3c278b5..eb7cbbd44 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.html
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A suffix variable. Default: |
-dynval1.var dynval2.var string basic mandatory | A dynamic variable. |
-var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" |
+val2
+dynval1.var dynval2.var string basic mandatory | A dynamic variable. |
+var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (dynval1.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.md
index ed05b04c2..43f0873c9 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.sh
index 56e490756..abe0146c0 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.sh
@@ -14,6 +14,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" β
+β β "A dynamic variable" (dyn[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable.gitlab.md
index 3cb588a2a..496b877df 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.html b/tests/results/test_without_family/60_5family_dynamic_calc_variable.html
index d5fe7e0a5..6f4dc7880 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.html
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard mandatory unique | A suffix variable. Default: |
-dynval1.var dynval2.var string basic mandatory | A dynamic variable. |
-var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" |
+val2
+dynval1.var dynval2.var string basic mandatory | A dynamic variable. |
+var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (dynval1.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.json b/tests/results/test_without_family/60_5family_dynamic_calc_variable.json
index dacbee2a8..b5ab8a3cf 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.json
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.json
@@ -49,7 +49,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
@@ -102,7 +102,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable.md
index 3cb588a2a..496b877df 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable.sh
index a2edc4061..c0162aeec 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.sh
@@ -12,5 +12,5 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" β
+β β "A dynamic variable" (dyn[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.adoc
index e8a4f051e..b58ff3e5e 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.adoc
@@ -9,7 +9,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
**Disabled**:
-* when the variable "A dynamic variable" has the value "val1".
-* when the variable "A dynamic variable" has the value "val1".
+* when the variable "A dynamic variable" (dyn__val1__.var1) has the value "val1".
+* when the variable "A dynamic variable" (dyn__val2__.var1) has the value "val1".
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc
index b9b329473..02f6993ee 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc
@@ -11,7 +11,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
**Disabled**:
-* when the variable "A dynamic variable" has the value "val1".
-* when the variable "A dynamic variable" has the value "val1".
+* when the variable "A dynamic variable" (dyn__val1__.var1) has the value "val1".
+* when the variable "A dynamic variable" (dyn__val2__.var1) has the value "val1".
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.gitlab.md
index 04af8ccb6..649a473dd 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **dyn*val1*.var2**
**dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1".
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **dyn*val1*.var2**
**dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val1*.var1) has the value "val1".
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val2*.var1) has the value "val1". |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.html b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.html
index c7d3edfba..ba1682244 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.html
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.html
@@ -6,8 +6,8 @@
dynval1.var1 dynval2.var1 string basic mandatory | A dynamic variable. |
-dynval1.var2 dynval2.var2 string basic mandatory disabled | A new variable. Disabled: - when the variable "A dynamic variable" has the value "val1".
-- when the variable "A dynamic variable" has the value "val1".
|
+dynval1.var2 dynval2.var2 string basic mandatory disabled | A new variable. Disabled: - when the variable "A dynamic variable" (dynval1.var1) has the value "val1".
+- when the variable "A dynamic variable" (dynval2.var1) has the value "val1".
|
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.md
index b95f27124..7bf2bf60b 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **dyn*val1*.var2**
**dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1".
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **dyn*val1*.var2**
**dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val1*.var1) has the value "val1".
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val2*.var1) has the value "val1". |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh
index f004edebc..9123af956 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh
@@ -10,8 +10,10 @@
β [1mdyn[0m[1;3mval1[0m[1m.var2[0m β A new variable. β
β [1mdyn[0m[1;3mval2[0m[1m.var2[0m β [1mDisabled[0m: β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β β’ when the variable "A dynamic β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "val1". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (dyn[3mval1[0m.var1) has the β
+β β value "val1". β
β β β’ when the variable "A dynamic β
-β β variable" has the value "val1". β
+β β variable" (dyn[3mval2[0m.var1) has the β
+β β value "val1". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 4c5e32644..24a873c77 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **dyn*val1*.var2**
**dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1".
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **dyn*val1*.var2**
**dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val1*.var1) has the value "val1".
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val2*.var1) has the value "val1". |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.html b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.html
index 88f861867..337fa3b12 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.html
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.html
@@ -4,8 +4,8 @@
dynval1.var1 dynval2.var1 string basic mandatory | A dynamic variable. |
-dynval1.var2 dynval2.var2 string basic mandatory disabled | A new variable. Disabled: - when the variable "A dynamic variable" has the value "val1".
-- when the variable "A dynamic variable" has the value "val1".
|
+dynval1.var2 dynval2.var2 string basic mandatory disabled | A new variable. Disabled: - when the variable "A dynamic variable" (dynval1.var1) has the value "val1".
+- when the variable "A dynamic variable" (dynval2.var1) has the value "val1".
|
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.json b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.json
index 085eeef1f..41c731450 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.json
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.json
@@ -66,7 +66,7 @@
"access_control": true,
"annotation": [
{
- "message": "when the variable \"{0}\" has the value \"val1\".",
+ "message": "when the variable {0} has the value \"val1\".",
"path": {
"path": "dyn{{ identifier }}.var1",
"identifiers": [
@@ -76,7 +76,7 @@
"description": "A dynamic variable"
},
{
- "message": "when the variable \"{0}\" has the value \"val1\".",
+ "message": "when the variable {0} has the value \"val1\".",
"path": {
"path": "dyn{{ identifier }}.var1",
"identifiers": [
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.md
index 4c5e32644..24a873c77 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **dyn*val1*.var2**
**dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1".
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **dyn*val1*.var2**
**dyn*val2*.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**:
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val1*.var1) has the value "val1".
β’ when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val2*.var1) has the value "val1". |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.sh
index 80e093313..bf02ac034 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.sh
@@ -8,7 +8,9 @@
β [1mdyn[0m[1;3mval1[0m[1m.var2[0m β A new variable. β
β [1mdyn[0m[1;3mval2[0m[1m.var2[0m β [1mDisabled[0m: β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β β’ when the variable "A dynamic β
-β [1;3;7mdisabled[0m[1;7m [0m β variable" has the value "val1". β
+β [1;3;7mdisabled[0m[1;7m [0m β variable" (dyn[3mval1[0m.var1) has the β
+β β value "val1". β
β β β’ when the variable "A dynamic β
-β β variable" has the value "val1". β
+β β variable" (dyn[3mval2[0m.var1) has the β
+β β value "val1". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc
index e45d5810c..38e0e7b9f 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc
@@ -6,6 +6,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
-**Disabled**: when the variable "A dynamic variable" has the value "val1".
+**Disabled**: when the variable "A dynamic variable" (dyn__val1__.var1) has the value "val1".
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc
index e91bf9540..c14aa2766 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc
@@ -8,6 +8,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. +
-**Disabled**: when the variable "A dynamic variable" has the value "val1".
+**Disabled**: when the variable "A dynamic variable" (dyn__val1__.var1) has the value "val1".
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.gitlab.md
index 7c6c57dc5..38851d67b 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
-| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------|
+| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val1*.var1) has the value "val1". |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.html b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.html
index 8d930717b..58f0c36ed 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.html
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-dynval1.var1 dynval2.var1 string basic mandatory | A dynamic variable. |
-var2 string basic mandatory disabled | A new variable. Disabled: when the variable "A dynamic variable" has the value "val1". |
+dynval1.var1 dynval2.var1 string basic mandatory | A dynamic variable. |
+var2 string basic mandatory disabled | A new variable. Disabled: when the variable "A dynamic variable" (dynval1.var1) has the value "val1". |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.md
index ed3547fbd..c61663b08 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
-| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------|
+| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val1*.var1) has the value "val1". |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh
index 1c39cb762..5ada65987 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh
@@ -9,7 +9,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A new variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "A β
-β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable" has the value β
-β β "val1". β
+β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable" (dyn[3mval1[0m.var1) has β
+β β the value "val1". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index e517ee6f8..e6edc1d2b 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
-| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------|
+| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val1*.var1) has the value "val1". |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.html b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.html
index bfa0b4540..1e55d0592 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.html
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.html
@@ -1,10 +1,10 @@
-| Variable | Description |
+| Variable | Description |
-dynval1.var1 dynval2.var1 string basic mandatory | A dynamic variable. |
-var2 string basic mandatory disabled | A new variable. Disabled: when the variable "A dynamic variable" has the value "val1". |
+dynval1.var1 dynval2.var1 string basic mandatory | A dynamic variable. |
+var2 string basic mandatory disabled | A new variable. Disabled: when the variable "A dynamic variable" (dynval1.var1) has the value "val1". |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.json b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.json
index 8e8a0e855..bfb37a403 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.json
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.json
@@ -67,7 +67,7 @@
"ori_name": "disabled",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"val1\".",
+ "message": "when the variable {0} has the value \"val1\".",
"path": {
"path": "dyn{{ identifier }}.var1",
"identifiers": [
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.md
index e517ee6f8..e6edc1d2b 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.md
@@ -1,5 +1,5 @@
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
-| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" has the value "val1". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------|
+| **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A new variable.
**Disabled**: when the variable "[A dynamic variable](#dyn:::identifier:::.var1)" (dyn*val1*.var1) has the value "val1". |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.sh
index d25e140f6..4be7dabb1 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.sh
@@ -7,6 +7,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A new variable. β
β [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m [0m β [1mDisabled[0m: when the variable "A β
-β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable" has the value β
-β β "val1". β
+β [1;3;7mdisabled[0m[1;7m [0m β dynamic variable" (dyn[3mval1[0m.var1) has β
+β β the value "val1". β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.adoc
index 64835d175..9142ee129 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.adoc
@@ -12,6 +12,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (dyn__val1__.var) if it is defined
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc
index 1c829f275..81db57fe3 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc
@@ -14,6 +14,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. +
-**Default**: the value of the variable "A dynamic variable" if it is defined
+**Default**: the value of the variable "A dynamic variable" (dyn__val1__.var) if it is defined
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.gitlab.md
index dbd97964f..dd996f789 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.html b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.html
index 020927a2e..8e81a12e8 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.html
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard unique | A suffix variable. Examples: |
-dynval1.var dynval2.var string basic mandatory | A dynamic variable. |
-var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+val2
+dynval1.var dynval2.var string basic mandatory | A dynamic variable. |
+var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (dynval1.var) if it is defined |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.md
index c52b270dd..86297a846 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh
index 7a3561425..ad8768552 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh
@@ -14,7 +14,7 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
-β β defined β
+β β "A dynamic variable" (dyn[3mval1[0m.var) β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.gitlab.md
index 293151a33..96604aafb 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.html b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.html
index 36da02bf5..10babdf96 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.html
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
var1 string multiple standard unique | A suffix variable. Examples: |
-dynval1.var dynval2.var string basic mandatory | A dynamic variable. |
-var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" if it is defined |
+val2
+dynval1.var dynval2.var string basic mandatory | A dynamic variable. |
+var2 string standard mandatory | A variable calculated. Default: the value of the variable "A dynamic variable" (dynval1.var) if it is defined |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.json b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.json
index 6ec15cf84..a1649407b 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.json
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.json
@@ -43,7 +43,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var1",
"type": "variable"
@@ -96,7 +96,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "dyn{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.md
index 293151a33..96604aafb 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.md
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
-| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | A suffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[A dynamic variable](#dyn:::identifier:::.var)" (dyn*val1*.var) if it is defined |
diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.sh
index 52562834c..b3ce1b364 100644
--- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.sh
@@ -12,6 +12,6 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1mvar2[0m β A variable calculated. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "A dynamic variable" if it is β
-β β defined β
+β β "A dynamic variable" (dyn[3mval1[0m.var) β
+β β if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.adoc b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.adoc
index 1055807d3..d90941547 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.adoc
@@ -13,6 +13,6 @@
**Default**: the value of the identifier.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable inside dynamic family"
+**Default**: the value of the variable "a variable inside dynamic family" (dyn___val1__.var)
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc
index c845e4e41..bda9261ee 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc
@@ -15,6 +15,6 @@
**Default**: the value of the identifier.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
-**Default**: the value of the variable "a variable inside dynamic family"
+**Default**: the value of the variable "a variable inside dynamic family" (dyn___val1__.var)
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.gitlab.md
index d2791ea3f..b29456a48 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" (dyn_*val1*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.html b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.html
index 74dc7e8ea..f35de2786 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.html
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
var string multiple standard mandatory unique | A suffix variable. Default: |
-dyn_val1.var dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
-var2 string standard mandatory | A variable. Default: the value of the variable "a variable inside dynamic family" |
+val2
+dyn_val1.var dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
+var2 string standard mandatory | A variable. Default: the value of the variable "a variable inside dynamic family" (dyn_val1.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.md b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.md
index 120cd8725..965a7f079 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.md
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" (dyn_*val1*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh
index c9002f8d9..4ed12e391 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh
@@ -15,5 +15,6 @@
β [1mvar2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "a variable inside dynamic family" β
+β β (dyn_[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 021f23e83..db9a43794 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" (dyn_*val1*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.html b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.html
index f525ef298..794e6ad18 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.html
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
var string multiple standard mandatory unique | A suffix variable. Default: |
-dyn_val1.var dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
-var2 string standard mandatory | A variable. Default: the value of the variable "a variable inside dynamic family" |
+val2
+dyn_val1.var dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
+var2 string standard mandatory | A variable. Default: the value of the variable "a variable inside dynamic family" (dyn_val1.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.json b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.json
index 14e93c7ff..d2c0a5cc2 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.json
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
@@ -107,7 +107,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "dyn_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.md
index 021f23e83..db9a43794 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.md
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
-| **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. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | A suffix variable.
**Default**:
β’ val1
β’ val2 |
+| **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. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" (dyn_*val1*.var) |
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.sh
index 8333f7a82..48f8c1215 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.sh
@@ -13,4 +13,5 @@
β [1mvar2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
β β "a variable inside dynamic family" β
+β β (dyn_[3mval1[0m.var) β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc
index 8861e51ac..8e1be2239 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc
@@ -13,6 +13,6 @@
**Default**: the value of the identifier.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. +
-**Default**: the value of the variable "a variable inside dynamic family" if it is defined
+**Default**: the value of the variable "a variable inside dynamic family" (dyn___val1__.var) if it is defined
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc
index 3b81136ee..5e741bb88 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc
@@ -15,6 +15,6 @@
**Default**: the value of the identifier.
| **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. +
-**Default**: the value of the variable "a variable inside dynamic family" if it is defined
+**Default**: the value of the variable "a variable inside dynamic family" (dyn___val1__.var) if it is defined
|====
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.gitlab.md
index 559e300f9..c8132053c 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" (dyn_*val1*.var) if it is defined |
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.html b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.html
index 86a9e98a4..bb5a0034f 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.html
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.html
@@ -2,13 +2,13 @@
-| Variable | Description |
+| Variable | Description |
var string multiple standard unique | Asuffix variable. Examples: |
-dyn_val1.var dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
-var2 string standard | A variable. Default: the value of the variable "a variable inside dynamic family" if it is defined |
+val2
+dyn_val1.var dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
+var2 string standard | A variable. Default: the value of the variable "a variable inside dynamic family" (dyn_val1.var) if it is defined |
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.md b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.md
index 434971fd9..c4bef112c 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.md
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" (dyn_*val1*.var) if it is defined |
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh
index c0ff46064..7d696c975 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh
@@ -15,6 +15,6 @@
β [1mvar2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m β [1mDefault[0m: the value of the variable β
β β "a variable inside dynamic family" β
-β β if it is defined β
+β β (dyn_[3mval1[0m.var) if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index 78ffdd99d..652a54f3a 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" (dyn_*val1*.var) if it is defined |
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.html b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.html
index 413ffac9c..f364fc283 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.html
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.html
@@ -1,12 +1,12 @@
-| Variable | Description |
+| Variable | Description |
var string multiple standard unique | Asuffix variable. Examples: |
-dyn_val1.var dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
-var2 string standard | A variable. Default: the value of the variable "a variable inside dynamic family" if it is defined |
+val2
+dyn_val1.var dyn_val2.var string standard mandatory | A variable inside dynamic family. Default: the value of the identifier. |
+var2 string standard | A variable. Default: the value of the variable "a variable inside dynamic family" (dyn_val1.var) if it is defined |
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.json b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.json
index 5f06c69cf..5774fa84f 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.json
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
@@ -94,7 +94,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\" if it is defined",
+ "message": "the value of the variable {0} if it is defined",
"path": {
"path": "dyn_{{ identifier }}.var",
"identifiers": [
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.md
index 78ffdd99d..652a54f3a 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.md
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.md
@@ -1,6 +1,6 @@
-| Variable | Description |
-|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|
-| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
-| **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. |
-| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" if it is defined |
+| Variable | Description |
+|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `unique` | Asuffix variable.
**Examples**:
β’ val1
β’ val2 |
+| **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. |
+| **var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.
**Default**: the value of the variable "[a variable inside dynamic family](#dyn_:::identifier:::.var)" (dyn_*val1*.var) if it is defined |
diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh
index dcd3e92a0..5132be025 100644
--- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh
+++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh
@@ -13,5 +13,5 @@
β [1mvar2[0m β A variable. β
β [1;7m string [0m [1;7m standard [0m β [1mDefault[0m: the value of the variable β
β β "a variable inside dynamic family" β
-β β if it is defined β
+β β (dyn_[3mval1[0m.var) if it is defined β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/results/test_without_family/60_6family_dynamic_leadership.json b/tests/results/test_without_family/60_6family_dynamic_leadership.json
index 3b9725aad..fb19d7675 100644
--- a/tests/results/test_without_family/60_6family_dynamic_leadership.json
+++ b/tests/results/test_without_family/60_6family_dynamic_leadership.json
@@ -50,7 +50,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_6family_dynamic_leadership_empty.json b/tests/results/test_without_family/60_6family_dynamic_leadership_empty.json
index add5dbeaf..9ee5dff49 100644
--- a/tests/results/test_without_family/60_6family_dynamic_leadership_empty.json
+++ b/tests/results/test_without_family/60_6family_dynamic_leadership_empty.json
@@ -44,7 +44,7 @@
],
"identifier": [
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/results/test_without_family/60_9family_dynamic_calc_both.json b/tests/results/test_without_family/60_9family_dynamic_calc_both.json
index 8f18c2b6b..b96078105 100644
--- a/tests/results/test_without_family/60_9family_dynamic_calc_both.json
+++ b/tests/results/test_without_family/60_9family_dynamic_calc_both.json
@@ -41,7 +41,7 @@
"identifier": [
"val1",
{
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}",
"path": {
"path": "var",
"type": "variable"
diff --git a/tests/root_a_dynamic_family1.a_subdyn_family4.a_variable.sh b/tests/root_a_dynamic_family1.a_subdyn_family4.a_variable.sh
index 172db49cb..949d3a23e 100644
--- a/tests/root_a_dynamic_family1.a_subdyn_family4.a_variable.sh
+++ b/tests/root_a_dynamic_family1.a_subdyn_family4.a_variable.sh
@@ -1,16 +1,16 @@
[1;4;96mA dynamic [0m[1;3;4;96mfamily1[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
[1;4;92mA dynamic [0m[1;3;4;92mfamily4[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily4[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily4[0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/root_a_dynamic_family1.a_subdyn_family4.sh b/tests/root_a_dynamic_family1.a_subdyn_family4.sh
index 172db49cb..949d3a23e 100644
--- a/tests/root_a_dynamic_family1.a_subdyn_family4.sh
+++ b/tests/root_a_dynamic_family1.a_subdyn_family4.sh
@@ -1,16 +1,16 @@
[1;4;96mA dynamic [0m[1;3;4;96mfamily1[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
[1;4;92mA dynamic [0m[1;3;4;92mfamily4[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily4[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily4[0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/root_a_dynamic_family1.a_subfamily.sh b/tests/root_a_dynamic_family1.a_subfamily.sh
index 7825d46cd..1a9b0dbf1 100644
--- a/tests/root_a_dynamic_family1.a_subfamily.sh
+++ b/tests/root_a_dynamic_family1.a_subfamily.sh
@@ -1,15 +1,15 @@
[1;4;96mA dynamic [0m[1;3;4;96mfamily1[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
[1;4;92mA sub family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subfamily
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subfamily
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/root_a_dynamic_family1.a_variable.sh b/tests/root_a_dynamic_family1.a_variable.sh
index 0cbab0460..6e5a8b762 100644
--- a/tests/root_a_dynamic_family1.a_variable.sh
+++ b/tests/root_a_dynamic_family1.a_variable.sh
@@ -1,9 +1,9 @@
[1;4;96mA dynamic [0m[1;3;4;96mfamily1[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/root_a_dynamic_family1.adoc b/tests/root_a_dynamic_family1.adoc
index fb501907d..6d5656235 100644
--- a/tests/root_a_dynamic_family1.adoc
+++ b/tests/root_a_dynamic_family1.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
**Default**: a_value
|====
-=== A dynamic __family3__ or A dynamic __family4__
+=== A dynamic __family3__ or __family4__
====
**π Informations**
diff --git a/tests/root_a_dynamic_family1.gitlab.md b/tests/root_a_dynamic_family1.gitlab.md
index 7d1aa233e..c085234e9 100644
--- a/tests/root_a_dynamic_family1.gitlab.md
+++ b/tests/root_a_dynamic_family1.gitlab.md
@@ -19,7 +19,7 @@
-A dynamic *family3* or A dynamic *family4*
+A dynamic *family3* or *family4*
> [!note] π Informations
> This family builds families dynamically.\
diff --git a/tests/root_a_dynamic_family1.html b/tests/root_a_dynamic_family1.html
index f732cbe47..b0d34aa8e 100644
--- a/tests/root_a_dynamic_family1.html
+++ b/tests/root_a_dynamic_family1.html
@@ -26,7 +26,7 @@ This family builds families dynamically.
-A dynamic family3 or A dynamic family4
+A dynamic family3 or family4
This family builds families dynamically.
diff --git a/tests/root_a_dynamic_family1.md b/tests/root_a_dynamic_family1.md
index f6a2229cb..208ee165d 100644
--- a/tests/root_a_dynamic_family1.md
+++ b/tests/root_a_dynamic_family1.md
@@ -19,7 +19,7 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
| **a_dynamic_*family1*.a_subfamily.a_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A variable.
**Default**: a_value |
-## A dynamic *family3* or A dynamic *family4*
+## A dynamic *family3* or *family4*
> [!NOTE]
>
diff --git a/tests/root_a_dynamic_family1.sh b/tests/root_a_dynamic_family1.sh
index 84e3971a5..6044cca29 100644
--- a/tests/root_a_dynamic_family1.sh
+++ b/tests/root_a_dynamic_family1.sh
@@ -1,9 +1,9 @@
[1;4;96mA dynamic [0m[1;3;4;96mfamily1[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -13,9 +13,9 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA sub family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subfamily
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subfamily
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -24,17 +24,17 @@
β [1;7m string [0m [1;7m mandatory [0m β [1mDefault[0m: a_value β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
- [1;4;92mA dynamic [0m[1;3;4;92mfamily3[0m[1;4;92m or A dynamic [0m[1;3;4;92mfamily4[0m
+ [1;4;92mA dynamic [0m[1;3;4;92mfamily3[0m[1;4;92m or [0m[1;3;4;92mfamily4[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily3[0m
-[34mβ [0m β’ a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily4[0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ family3
-[34mβ [0m β’ family4
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily3[0m
+[34mβ [0m β’ a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily4[0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ family3
+[34mβ [0m β’ family4
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/root_a_family.a_second_family.a_variable.sh b/tests/root_a_family.a_second_family.a_variable.sh
index 5b60e305e..ad4bf76cd 100644
--- a/tests/root_a_family.a_second_family.a_variable.sh
+++ b/tests/root_a_family.a_second_family.a_variable.sh
@@ -1,14 +1,14 @@
[1;4;96mFirst family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_family
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_family
[1;4;92mA second family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_family.a_second_family
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_family.a_second_family
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/root_a_family.adoc b/tests/root_a_family.adoc
index 098fd9c01..b021ac749 100644
--- a/tests/root_a_family.adoc
+++ b/tests/root_a_family.adoc
@@ -27,16 +27,16 @@
**Path**: a_family.an_other_family +
`__hidden__` +
-**Hidden**: when the variable "a boolean variable" has the value "true".
+**Hidden**: when the variable "a boolean variable" (a_family.a_second_family.a_variable) has the value "true".
====
[cols="1a,1a"]
|====
| Variable | Description
| **a_family.an_other_family.a_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `mandatory` | A new variable. +
-**Default**: the value of the variable "a root variable"
+**Default**: the value of the variable "a root variable" (a_variable).
| **a_family.an_other_family.a_new_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` | A new variable 2. +
-**Default**: the value of "a root variable".
+**Default**: the value of "a root variable" (a_variable).
|====
diff --git a/tests/root_a_family.an_other_family.adoc b/tests/root_a_family.an_other_family.adoc
index 23e9068ea..fb32e856b 100644
--- a/tests/root_a_family.an_other_family.adoc
+++ b/tests/root_a_family.an_other_family.adoc
@@ -12,16 +12,16 @@
**Path**: a_family.an_other_family +
`__hidden__` +
-**Hidden**: when the variable "a boolean variable" has the value "true".
+**Hidden**: when the variable "a boolean variable" (a_family.a_second_family.a_variable) has the value "true".
====
[cols="1a,1a"]
|====
| Variable | Description
| **a_family.an_other_family.a_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `mandatory` | A new variable. +
-**Default**: the value of the variable "a root variable"
+**Default**: the value of the variable "a root variable" (a_variable).
| **a_family.an_other_family.a_new_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` | A new variable 2. +
-**Default**: the value of "a root variable".
+**Default**: the value of "a root variable" (a_variable).
|====
diff --git a/tests/root_a_family.an_other_family.gitlab.md b/tests/root_a_family.an_other_family.gitlab.md
index 6c1a2d487..ae404e4c3 100644
--- a/tests/root_a_family.an_other_family.gitlab.md
+++ b/tests/root_a_family.an_other_family.gitlab.md
@@ -8,12 +8,12 @@
> [!note] π Informations
> **Path**: a_family.an_other_family\
> *`hidden`*\
-> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" has the value "true".
+> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" (a_family.a_second_family.a_variable) has the value "true".
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)" (a_variable). |
diff --git a/tests/root_a_family.an_other_family.html b/tests/root_a_family.an_other_family.html
index a8b16e618..f932b9ef8 100644
--- a/tests/root_a_family.an_other_family.html
+++ b/tests/root_a_family.an_other_family.html
@@ -8,15 +8,15 @@
hidden
-Hidden: when the variable "a boolean variable" has the value "true".
+Hidden: when the variable "a boolean variable" (a_family.a_second_family.a_variable) has the value "true".
-| Variable | Description |
+| Variable | Description |
-a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" |
-a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable". |
+a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" (a_variable). |
+a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable" (a_variable). |
diff --git a/tests/root_a_family.an_other_family.json b/tests/root_a_family.an_other_family.json
index ab0c5511a..5c218bd21 100644
--- a/tests/root_a_family.an_other_family.json
+++ b/tests/root_a_family.an_other_family.json
@@ -21,7 +21,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "a_family.a_second_family.a_variable"
},
@@ -47,7 +47,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "a_variable",
"type": "variable"
@@ -73,7 +73,7 @@
"default": {
"name": "Default",
"values": {
- "description": "the value of \"{0}\".",
+ "description": "the value of {0}.",
"variables": [
{
"path": "a_variable",
diff --git a/tests/root_a_family.an_other_family.md b/tests/root_a_family.an_other_family.md
index 990a696f3..5f58fd14f 100644
--- a/tests/root_a_family.an_other_family.md
+++ b/tests/root_a_family.an_other_family.md
@@ -10,10 +10,10 @@
>
> **Path**: a_family.an_other_family\
> *`hidden`*\
-> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" has the value "true".
+> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" (a_family.a_second_family.a_variable) has the value "true".
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)" (a_variable). |
diff --git a/tests/root_a_family.an_other_family.sh b/tests/root_a_family.an_other_family.sh
index 7910add36..777910778 100644
--- a/tests/root_a_family.an_other_family.sh
+++ b/tests/root_a_family.an_other_family.sh
@@ -1,27 +1,28 @@
[1;4;96mFirst family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_family
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_family
[1;4;92mAn other family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_family.an_other_family
-[34mβ [0m[1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"a boolean variable"[0m has the value [32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_family.an_other_family
+[34mβ [0m[1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"a boolean variable"[0m
+[34mβ [0m[1m([0ma_family.a_second_family.a_variable[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1ma_family.an_other_family.a_variable[0m β A new variable. β
β [1;7m integer [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a root variable" β
+β β "a root variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1ma_family.an_other_family.a_new_variaβ¦[0m β A new variable 2. β
β [1;7m string [0m [1;7m mandatory [0m β [1mDefault[0m: the value of "a root β
-β β variable". β
+β β variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/root_a_family.an_other_family_changelog.adoc b/tests/root_a_family.an_other_family_changelog.adoc
index e6b58766a..98f96cfd8 100644
--- a/tests/root_a_family.an_other_family_changelog.adoc
+++ b/tests/root_a_family.an_other_family_changelog.adoc
@@ -5,9 +5,9 @@
| Variable | Description
| **a_family.an_other_family.a_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `mandatory` | A new variable. +
-**Default**: the value of the variable "a root variable"
+**Default**: the value of the variable "a root variable" (a_variable).
| **a_family.an_other_family.a_new_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` | A new variable 2. +
-**Default**: the value of "a root variable".
+**Default**: the value of "a root variable" (a_variable).
|====
diff --git a/tests/root_a_family.an_other_family_changelog.gitlab.md b/tests/root_a_family.an_other_family_changelog.gitlab.md
index 69d6886fd..77b37c14f 100644
--- a/tests/root_a_family.an_other_family_changelog.gitlab.md
+++ b/tests/root_a_family.an_other_family_changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)" (a_variable). |
diff --git a/tests/root_a_family.an_other_family_changelog.html b/tests/root_a_family.an_other_family_changelog.html
index 6389ac792..2e478143b 100644
--- a/tests/root_a_family.an_other_family_changelog.html
+++ b/tests/root_a_family.an_other_family_changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" |
-a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable". |
+a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" (a_variable). |
+a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable" (a_variable). |
diff --git a/tests/root_a_family.an_other_family_changelog.md b/tests/root_a_family.an_other_family_changelog.md
index 85ac7c9a3..28a1fe77d 100644
--- a/tests/root_a_family.an_other_family_changelog.md
+++ b/tests/root_a_family.an_other_family_changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)" (a_variable). |
diff --git a/tests/root_a_family.an_other_family_changelog.sh b/tests/root_a_family.an_other_family_changelog.sh
index 92536bb1c..80652d806 100644
--- a/tests/root_a_family.an_other_family_changelog.sh
+++ b/tests/root_a_family.an_other_family_changelog.sh
@@ -5,10 +5,10 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1ma_family.an_other_family.a_variable[0m β A new variable. β
β [1;7m integer [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a root variable" β
+β β "a root variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1ma_family.an_other_family.a_new_variaβ¦[0m β A new variable 2. β
β [1;7m string [0m [1;7m mandatory [0m β [1mDefault[0m: the value of "a root β
-β β variable". β
+β β variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/root_a_family.gitlab.md b/tests/root_a_family.gitlab.md
index 4a30e8ad1..74b2a32f6 100644
--- a/tests/root_a_family.gitlab.md
+++ b/tests/root_a_family.gitlab.md
@@ -19,12 +19,12 @@
> [!note] π Informations
> **Path**: a_family.an_other_family\
> *`hidden`*\
-> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" has the value "true".
+> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" (a_family.a_second_family.a_variable) has the value "true".
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)" (a_variable). |
diff --git a/tests/root_a_family.html b/tests/root_a_family.html
index 23d323089..21e4c019b 100644
--- a/tests/root_a_family.html
+++ b/tests/root_a_family.html
@@ -21,15 +21,15 @@
hidden
-Hidden: when the variable "a boolean variable" has the value "true".
+Hidden: when the variable "a boolean variable" (a_family.a_second_family.a_variable) has the value "true".
-| Variable | Description |
+| Variable | Description |
-a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" |
-a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable". |
+a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" (a_variable). |
+a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable" (a_variable). |
diff --git a/tests/root_a_family.json b/tests/root_a_family.json
index 78ad7aa95..846392fee 100644
--- a/tests/root_a_family.json
+++ b/tests/root_a_family.json
@@ -51,7 +51,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "a_family.a_second_family.a_variable"
},
@@ -77,7 +77,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "a_variable",
"type": "variable"
@@ -103,7 +103,7 @@
"default": {
"name": "Default",
"values": {
- "description": "the value of \"{0}\".",
+ "description": "the value of {0}.",
"variables": [
{
"path": "a_variable",
diff --git a/tests/root_a_family.md b/tests/root_a_family.md
index ca89f768a..ade5a7a0a 100644
--- a/tests/root_a_family.md
+++ b/tests/root_a_family.md
@@ -20,10 +20,10 @@
>
> **Path**: a_family.an_other_family\
> *`hidden`*\
-> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" has the value "true".
+> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" (a_family.a_second_family.a_variable) has the value "true".
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)" (a_variable). |
diff --git a/tests/root_a_family.sh b/tests/root_a_family.sh
index 887329af7..71ccca72e 100644
--- a/tests/root_a_family.sh
+++ b/tests/root_a_family.sh
@@ -1,14 +1,14 @@
[1;4;96mFirst family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_family
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_family
[1;4;92mA second family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_family.a_second_family
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_family.a_second_family
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -19,22 +19,23 @@
[1;4;92mAn other family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_family.an_other_family
-[34mβ [0m[1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"a boolean variable"[0m has the value [32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_family.an_other_family
+[34mβ [0m[1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"a boolean variable"[0m
+[34mβ [0m[1m([0ma_family.a_second_family.a_variable[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1ma_family.an_other_family.a_variable[0m β A new variable. β
β [1;7m integer [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a root variable" β
+β β "a root variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1ma_family.an_other_family.a_new_variaβ¦[0m β A new variable 2. β
β [1;7m string [0m [1;7m mandatory [0m β [1mDefault[0m: the value of "a root β
-β β variable". β
+β β variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/root_a_family_changelog.adoc b/tests/root_a_family_changelog.adoc
index d01a08895..7deb1f8e5 100644
--- a/tests/root_a_family_changelog.adoc
+++ b/tests/root_a_family_changelog.adoc
@@ -8,9 +8,9 @@
**Default**: true
| **a_family.an_other_family.a_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `mandatory` | A new variable. +
-**Default**: the value of the variable "a root variable"
+**Default**: the value of the variable "a root variable" (a_variable).
| **a_family.an_other_family.a_new_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` | A new variable 2. +
-**Default**: the value of "a root variable".
+**Default**: the value of "a root variable" (a_variable).
|====
diff --git a/tests/root_a_family_changelog.gitlab.md b/tests/root_a_family_changelog.gitlab.md
index 0f995270d..3e46ae7dc 100644
--- a/tests/root_a_family_changelog.gitlab.md
+++ b/tests/root_a_family_changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **a_family.a_second_family.a_variable**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A boolean variable.
**Default**: true |
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
+| **a_family.a_second_family.a_variable**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A boolean variable.
**Default**: true |
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)" (a_variable). |
diff --git a/tests/root_a_family_changelog.html b/tests/root_a_family_changelog.html
index 27ca7d858..49b1c420d 100644
--- a/tests/root_a_family_changelog.html
+++ b/tests/root_a_family_changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
-a_family.a_second_family.a_variable boolean mandatory | A boolean variable. Default: true |
-a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" |
-a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable". |
+a_family.a_second_family.a_variable boolean mandatory | A boolean variable. Default: true |
+a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" (a_variable). |
+a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable" (a_variable). |
diff --git a/tests/root_a_family_changelog.md b/tests/root_a_family_changelog.md
index bc80b0568..f84a93cbe 100644
--- a/tests/root_a_family_changelog.md
+++ b/tests/root_a_family_changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
-| **a_family.a_second_family.a_variable**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A boolean variable.
**Default**: true |
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|
+| **a_family.a_second_family.a_variable**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A boolean variable.
**Default**: true |
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](#a_variable)" (a_variable). |
diff --git a/tests/root_a_family_changelog.sh b/tests/root_a_family_changelog.sh
index 30816bf76..dbf32f5f9 100644
--- a/tests/root_a_family_changelog.sh
+++ b/tests/root_a_family_changelog.sh
@@ -8,10 +8,10 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1ma_family.an_other_family.a_variable[0m β A new variable. β
β [1;7m integer [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a root variable" β
+β β "a root variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1ma_family.an_other_family.a_new_variaβ¦[0m β A new variable 2. β
β [1;7m string [0m [1;7m mandatory [0m β [1mDefault[0m: the value of "a root β
-β β variable". β
+β β variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/root_filenames/a_dynamic_family1.a_subdyn_family4.a_variable.sh b/tests/root_filenames/a_dynamic_family1.a_subdyn_family4.a_variable.sh
index 172db49cb..949d3a23e 100644
--- a/tests/root_filenames/a_dynamic_family1.a_subdyn_family4.a_variable.sh
+++ b/tests/root_filenames/a_dynamic_family1.a_subdyn_family4.a_variable.sh
@@ -1,16 +1,16 @@
[1;4;96mA dynamic [0m[1;3;4;96mfamily1[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
[1;4;92mA dynamic [0m[1;3;4;92mfamily4[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily4[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily4[0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/root_filenames/a_dynamic_family1.a_subdyn_family4.sh b/tests/root_filenames/a_dynamic_family1.a_subdyn_family4.sh
index 172db49cb..949d3a23e 100644
--- a/tests/root_filenames/a_dynamic_family1.a_subdyn_family4.sh
+++ b/tests/root_filenames/a_dynamic_family1.a_subdyn_family4.sh
@@ -1,16 +1,16 @@
[1;4;96mA dynamic [0m[1;3;4;96mfamily1[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
[1;4;92mA dynamic [0m[1;3;4;92mfamily4[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily4[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily4[0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/root_filenames/a_dynamic_family1.a_subfamily.sh b/tests/root_filenames/a_dynamic_family1.a_subfamily.sh
index 7825d46cd..1a9b0dbf1 100644
--- a/tests/root_filenames/a_dynamic_family1.a_subfamily.sh
+++ b/tests/root_filenames/a_dynamic_family1.a_subfamily.sh
@@ -1,15 +1,15 @@
[1;4;96mA dynamic [0m[1;3;4;96mfamily1[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
[1;4;92mA sub family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subfamily
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subfamily
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/root_filenames/a_dynamic_family1.a_variable.sh b/tests/root_filenames/a_dynamic_family1.a_variable.sh
index 0cbab0460..6e5a8b762 100644
--- a/tests/root_filenames/a_dynamic_family1.a_variable.sh
+++ b/tests/root_filenames/a_dynamic_family1.a_variable.sh
@@ -1,9 +1,9 @@
[1;4;96mA dynamic [0m[1;3;4;96mfamily1[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/root_filenames/a_dynamic_family1.adoc b/tests/root_filenames/a_dynamic_family1.adoc
index fb501907d..6d5656235 100644
--- a/tests/root_filenames/a_dynamic_family1.adoc
+++ b/tests/root_filenames/a_dynamic_family1.adoc
@@ -29,7 +29,7 @@ This family builds families dynamically. +
**Default**: a_value
|====
-=== A dynamic __family3__ or A dynamic __family4__
+=== A dynamic __family3__ or __family4__
====
**π Informations**
diff --git a/tests/root_filenames/a_dynamic_family1.gitlab.md b/tests/root_filenames/a_dynamic_family1.gitlab.md
index 7d1aa233e..c085234e9 100644
--- a/tests/root_filenames/a_dynamic_family1.gitlab.md
+++ b/tests/root_filenames/a_dynamic_family1.gitlab.md
@@ -19,7 +19,7 @@
-A dynamic *family3* or A dynamic *family4*
+A dynamic *family3* or *family4*
> [!note] π Informations
> This family builds families dynamically.\
diff --git a/tests/root_filenames/a_dynamic_family1.html b/tests/root_filenames/a_dynamic_family1.html
index f732cbe47..b0d34aa8e 100644
--- a/tests/root_filenames/a_dynamic_family1.html
+++ b/tests/root_filenames/a_dynamic_family1.html
@@ -26,7 +26,7 @@ This family builds families dynamically.
-A dynamic family3 or A dynamic family4
+A dynamic family3 or family4
This family builds families dynamically.
diff --git a/tests/root_filenames/a_dynamic_family1.md b/tests/root_filenames/a_dynamic_family1.md
index f6a2229cb..208ee165d 100644
--- a/tests/root_filenames/a_dynamic_family1.md
+++ b/tests/root_filenames/a_dynamic_family1.md
@@ -19,7 +19,7 @@
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
| **a_dynamic_*family1*.a_subfamily.a_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A variable.
**Default**: a_value |
-## A dynamic *family3* or A dynamic *family4*
+## A dynamic *family3* or *family4*
> [!NOTE]
>
diff --git a/tests/root_filenames/a_dynamic_family1.sh b/tests/root_filenames/a_dynamic_family1.sh
index 84e3971a5..6044cca29 100644
--- a/tests/root_filenames/a_dynamic_family1.sh
+++ b/tests/root_filenames/a_dynamic_family1.sh
@@ -1,9 +1,9 @@
[1;4;96mA dynamic [0m[1;3;4;96mfamily1[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -13,9 +13,9 @@
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
[1;4;92mA sub family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subfamily
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_dynamic_[3mfamily1[0m.a_subfamily
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -24,17 +24,17 @@
β [1;7m string [0m [1;7m mandatory [0m β [1mDefault[0m: a_value β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
- [1;4;92mA dynamic [0m[1;3;4;92mfamily3[0m[1;4;92m or A dynamic [0m[1;3;4;92mfamily4[0m
+ [1;4;92mA dynamic [0m[1;3;4;92mfamily3[0m[1;4;92m or [0m[1;3;4;92mfamily4[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0mThis family builds families dynamically.
-[34mβ [0m[1mPath[0m:
-[34mβ [0m β’ a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily3[0m
-[34mβ [0m β’ a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily4[0m
-[34mβ [0m[1mIdentifiers[0m:
-[34mβ [0m β’ family3
-[34mβ [0m β’ family4
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0mThis family builds families dynamically.
+[34mβ [0m[1mPath[0m:
+[34mβ [0m β’ a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily3[0m
+[34mβ [0m β’ a_dynamic_[3mfamily1[0m.a_subdyn_[3mfamily4[0m
+[34mβ [0m[1mIdentifiers[0m:
+[34mβ [0m β’ family3
+[34mβ [0m β’ family4
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/root_filenames/a_family.a_second_family.a_variable.sh b/tests/root_filenames/a_family.a_second_family.a_variable.sh
index 5b60e305e..ad4bf76cd 100644
--- a/tests/root_filenames/a_family.a_second_family.a_variable.sh
+++ b/tests/root_filenames/a_family.a_second_family.a_variable.sh
@@ -1,14 +1,14 @@
[1;4;96mFirst family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_family
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_family
[1;4;92mA second family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_family.a_second_family
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_family.a_second_family
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
diff --git a/tests/root_filenames/a_family.adoc b/tests/root_filenames/a_family.adoc
index 098fd9c01..b021ac749 100644
--- a/tests/root_filenames/a_family.adoc
+++ b/tests/root_filenames/a_family.adoc
@@ -27,16 +27,16 @@
**Path**: a_family.an_other_family +
`__hidden__` +
-**Hidden**: when the variable "a boolean variable" has the value "true".
+**Hidden**: when the variable "a boolean variable" (a_family.a_second_family.a_variable) has the value "true".
====
[cols="1a,1a"]
|====
| Variable | Description
| **a_family.an_other_family.a_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `mandatory` | A new variable. +
-**Default**: the value of the variable "a root variable"
+**Default**: the value of the variable "a root variable" (a_variable).
| **a_family.an_other_family.a_new_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` | A new variable 2. +
-**Default**: the value of "a root variable".
+**Default**: the value of "a root variable" (a_variable).
|====
diff --git a/tests/root_filenames/a_family.an_other_family.adoc b/tests/root_filenames/a_family.an_other_family.adoc
index 23e9068ea..fb32e856b 100644
--- a/tests/root_filenames/a_family.an_other_family.adoc
+++ b/tests/root_filenames/a_family.an_other_family.adoc
@@ -12,16 +12,16 @@
**Path**: a_family.an_other_family +
`__hidden__` +
-**Hidden**: when the variable "a boolean variable" has the value "true".
+**Hidden**: when the variable "a boolean variable" (a_family.a_second_family.a_variable) has the value "true".
====
[cols="1a,1a"]
|====
| Variable | Description
| **a_family.an_other_family.a_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `mandatory` | A new variable. +
-**Default**: the value of the variable "a root variable"
+**Default**: the value of the variable "a root variable" (a_variable).
| **a_family.an_other_family.a_new_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` | A new variable 2. +
-**Default**: the value of "a root variable".
+**Default**: the value of "a root variable" (a_variable).
|====
diff --git a/tests/root_filenames/a_family.an_other_family.gitlab.md b/tests/root_filenames/a_family.an_other_family.gitlab.md
index 6a1866103..1e29f9211 100644
--- a/tests/root_filenames/a_family.an_other_family.gitlab.md
+++ b/tests/root_filenames/a_family.an_other_family.gitlab.md
@@ -8,12 +8,12 @@
> [!note] π Informations
> **Path**: a_family.an_other_family\
> *`hidden`*\
-> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" has the value "true".
+> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" (a_family.a_second_family.a_variable) has the value "true".
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)" (a_variable). |
diff --git a/tests/root_filenames/a_family.an_other_family.html b/tests/root_filenames/a_family.an_other_family.html
index a8b16e618..f932b9ef8 100644
--- a/tests/root_filenames/a_family.an_other_family.html
+++ b/tests/root_filenames/a_family.an_other_family.html
@@ -8,15 +8,15 @@
hidden
-Hidden: when the variable "a boolean variable" has the value "true".
+Hidden: when the variable "a boolean variable" (a_family.a_second_family.a_variable) has the value "true".
-| Variable | Description |
+| Variable | Description |
-a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" |
-a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable". |
+a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" (a_variable). |
+a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable" (a_variable). |
diff --git a/tests/root_filenames/a_family.an_other_family.json b/tests/root_filenames/a_family.an_other_family.json
index ab0c5511a..5c218bd21 100644
--- a/tests/root_filenames/a_family.an_other_family.json
+++ b/tests/root_filenames/a_family.an_other_family.json
@@ -21,7 +21,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "a_family.a_second_family.a_variable"
},
@@ -47,7 +47,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "a_variable",
"type": "variable"
@@ -73,7 +73,7 @@
"default": {
"name": "Default",
"values": {
- "description": "the value of \"{0}\".",
+ "description": "the value of {0}.",
"variables": [
{
"path": "a_variable",
diff --git a/tests/root_filenames/a_family.an_other_family.md b/tests/root_filenames/a_family.an_other_family.md
index e4dba910c..d992dc591 100644
--- a/tests/root_filenames/a_family.an_other_family.md
+++ b/tests/root_filenames/a_family.an_other_family.md
@@ -10,10 +10,10 @@
>
> **Path**: a_family.an_other_family\
> *`hidden`*\
-> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" has the value "true".
+> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" (a_family.a_second_family.a_variable) has the value "true".
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)" (a_variable). |
diff --git a/tests/root_filenames/a_family.an_other_family.sh b/tests/root_filenames/a_family.an_other_family.sh
index 7910add36..777910778 100644
--- a/tests/root_filenames/a_family.an_other_family.sh
+++ b/tests/root_filenames/a_family.an_other_family.sh
@@ -1,27 +1,28 @@
[1;4;96mFirst family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_family
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_family
[1;4;92mAn other family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_family.an_other_family
-[34mβ [0m[1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"a boolean variable"[0m has the value [32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_family.an_other_family
+[34mβ [0m[1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"a boolean variable"[0m
+[34mβ [0m[1m([0ma_family.a_second_family.a_variable[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1ma_family.an_other_family.a_variable[0m β A new variable. β
β [1;7m integer [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a root variable" β
+β β "a root variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1ma_family.an_other_family.a_new_variaβ¦[0m β A new variable 2. β
β [1;7m string [0m [1;7m mandatory [0m β [1mDefault[0m: the value of "a root β
-β β variable". β
+β β variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/root_filenames/a_family.an_other_family_changelog.adoc b/tests/root_filenames/a_family.an_other_family_changelog.adoc
index e6b58766a..98f96cfd8 100644
--- a/tests/root_filenames/a_family.an_other_family_changelog.adoc
+++ b/tests/root_filenames/a_family.an_other_family_changelog.adoc
@@ -5,9 +5,9 @@
| Variable | Description
| **a_family.an_other_family.a_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `mandatory` | A new variable. +
-**Default**: the value of the variable "a root variable"
+**Default**: the value of the variable "a root variable" (a_variable).
| **a_family.an_other_family.a_new_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` | A new variable 2. +
-**Default**: the value of "a root variable".
+**Default**: the value of "a root variable" (a_variable).
|====
diff --git a/tests/root_filenames/a_family.an_other_family_changelog.gitlab.md b/tests/root_filenames/a_family.an_other_family_changelog.gitlab.md
index 9b0c4c690..c603baab8 100644
--- a/tests/root_filenames/a_family.an_other_family_changelog.gitlab.md
+++ b/tests/root_filenames/a_family.an_other_family_changelog.gitlab.md
@@ -1,9 +1,9 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)" (a_variable). |
diff --git a/tests/root_filenames/a_family.an_other_family_changelog.html b/tests/root_filenames/a_family.an_other_family_changelog.html
index 6389ac792..2e478143b 100644
--- a/tests/root_filenames/a_family.an_other_family_changelog.html
+++ b/tests/root_filenames/a_family.an_other_family_changelog.html
@@ -2,11 +2,11 @@
-| Variable | Description |
+| Variable | Description |
-a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" |
-a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable". |
+a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" (a_variable). |
+a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable" (a_variable). |
diff --git a/tests/root_filenames/a_family.an_other_family_changelog.md b/tests/root_filenames/a_family.an_other_family_changelog.md
index c99b87bae..5033fa3f0 100644
--- a/tests/root_filenames/a_family.an_other_family_changelog.md
+++ b/tests/root_filenames/a_family.an_other_family_changelog.md
@@ -1,7 +1,7 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)" (a_variable). |
diff --git a/tests/root_filenames/a_family.an_other_family_changelog.sh b/tests/root_filenames/a_family.an_other_family_changelog.sh
index 92536bb1c..80652d806 100644
--- a/tests/root_filenames/a_family.an_other_family_changelog.sh
+++ b/tests/root_filenames/a_family.an_other_family_changelog.sh
@@ -5,10 +5,10 @@
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1ma_family.an_other_family.a_variable[0m β A new variable. β
β [1;7m integer [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a root variable" β
+β β "a root variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1ma_family.an_other_family.a_new_variaβ¦[0m β A new variable 2. β
β [1;7m string [0m [1;7m mandatory [0m β [1mDefault[0m: the value of "a root β
-β β variable". β
+β β variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/root_filenames/a_family.gitlab.md b/tests/root_filenames/a_family.gitlab.md
index 9199cb0db..9e3d2e407 100644
--- a/tests/root_filenames/a_family.gitlab.md
+++ b/tests/root_filenames/a_family.gitlab.md
@@ -19,12 +19,12 @@
> [!note] π Informations
> **Path**: a_family.an_other_family\
> *`hidden`*\
-> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" has the value "true".
+> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" (a_family.a_second_family.a_variable) has the value "true".
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)" (a_variable). |
diff --git a/tests/root_filenames/a_family.html b/tests/root_filenames/a_family.html
index 23d323089..21e4c019b 100644
--- a/tests/root_filenames/a_family.html
+++ b/tests/root_filenames/a_family.html
@@ -21,15 +21,15 @@
hidden
-Hidden: when the variable "a boolean variable" has the value "true".
+Hidden: when the variable "a boolean variable" (a_family.a_second_family.a_variable) has the value "true".
-| Variable | Description |
+| Variable | Description |
-a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" |
-a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable". |
+a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" (a_variable). |
+a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable" (a_variable). |
diff --git a/tests/root_filenames/a_family.json b/tests/root_filenames/a_family.json
index 78ad7aa95..846392fee 100644
--- a/tests/root_filenames/a_family.json
+++ b/tests/root_filenames/a_family.json
@@ -51,7 +51,7 @@
"ori_name": "hidden",
"access_control": true,
"annotation": {
- "message": "when the variable \"{0}\" has the value \"true\".",
+ "message": "when the variable {0} has the value \"true\".",
"path": {
"path": "a_family.a_second_family.a_variable"
},
@@ -77,7 +77,7 @@
"default": {
"name": "Default",
"values": {
- "message": "the value of the variable \"{0}\"",
+ "message": "the value of the variable {0}.",
"path": {
"path": "a_variable",
"type": "variable"
@@ -103,7 +103,7 @@
"default": {
"name": "Default",
"values": {
- "description": "the value of \"{0}\".",
+ "description": "the value of {0}.",
"variables": [
{
"path": "a_variable",
diff --git a/tests/root_filenames/a_family.md b/tests/root_filenames/a_family.md
index e41f29a31..933ade4be 100644
--- a/tests/root_filenames/a_family.md
+++ b/tests/root_filenames/a_family.md
@@ -20,10 +20,10 @@
>
> **Path**: a_family.an_other_family\
> *`hidden`*\
-> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" has the value "true".
+> **Hidden**: when the variable "[a boolean variable](#a_family.a_second_family.a_variable)" (a_family.a_second_family.a_variable) has the value "true".
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)" (a_variable). |
diff --git a/tests/root_filenames/a_family.sh b/tests/root_filenames/a_family.sh
index 887329af7..71ccca72e 100644
--- a/tests/root_filenames/a_family.sh
+++ b/tests/root_filenames/a_family.sh
@@ -1,14 +1,14 @@
[1;4;96mFirst family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_family
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_family
[1;4;92mA second family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_family.a_second_family
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_family.a_second_family
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
@@ -19,22 +19,23 @@
[1;4;92mAn other family[0m
-[34mβ [0m[1;34mπ Informations[0m
-[34mβ [0m
-[34mβ [0m[1mPath[0m: a_family.an_other_family
-[34mβ [0m[1;7m [0m[1;3;7mhidden[0m[1;7m [0m
-[34mβ [0m[1mHidden[0m: when the variable [32m"a boolean variable"[0m has the value [32m"true"[0m.
+[34mβ [0m[1;34mπ Informations[0m
+[34mβ [0m
+[34mβ [0m[1mPath[0m: a_family.an_other_family
+[34mβ [0m[1;7m [0m[1;3;7mhidden[0m[1;7m [0m
+[34mβ [0m[1mHidden[0m: when the variable [32m"a boolean variable"[0m
+[34mβ [0m[1m([0ma_family.a_second_family.a_variable[1m)[0m has the value [32m"true"[0m.
βββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββ
β[1m [0m[1mVariable [0m[1m [0mβ[1m [0m[1mDescription [0m[1m [0mβ
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β [1ma_family.an_other_family.a_variable[0m β A new variable. β
β [1;7m integer [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a root variable" β
+β β "a root variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1ma_family.an_other_family.a_new_variaβ¦[0m β A new variable 2. β
β [1;7m string [0m [1;7m mandatory [0m β [1mDefault[0m: the value of "a root β
-β β variable". β
+β β variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/root_filenames/a_family_changelog.adoc b/tests/root_filenames/a_family_changelog.adoc
index d01a08895..7deb1f8e5 100644
--- a/tests/root_filenames/a_family_changelog.adoc
+++ b/tests/root_filenames/a_family_changelog.adoc
@@ -8,9 +8,9 @@
**Default**: true
| **a_family.an_other_family.a_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `mandatory` | A new variable. +
-**Default**: the value of the variable "a root variable"
+**Default**: the value of the variable "a root variable" (a_variable).
| **a_family.an_other_family.a_new_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` | A new variable 2. +
-**Default**: the value of "a root variable".
+**Default**: the value of "a root variable" (a_variable).
|====
diff --git a/tests/root_filenames/a_family_changelog.gitlab.md b/tests/root_filenames/a_family_changelog.gitlab.md
index 259ab4f03..a1b812fd1 100644
--- a/tests/root_filenames/a_family_changelog.gitlab.md
+++ b/tests/root_filenames/a_family_changelog.gitlab.md
@@ -1,10 +1,10 @@
New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
-| **a_family.a_second_family.a_variable**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A boolean variable.
**Default**: true |
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
+| **a_family.a_second_family.a_variable**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A boolean variable.
**Default**: true |
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)" (a_variable). |
diff --git a/tests/root_filenames/a_family_changelog.html b/tests/root_filenames/a_family_changelog.html
index 27ca7d858..49b1c420d 100644
--- a/tests/root_filenames/a_family_changelog.html
+++ b/tests/root_filenames/a_family_changelog.html
@@ -2,12 +2,12 @@
-| Variable | Description |
+| Variable | Description |
-a_family.a_second_family.a_variable boolean mandatory | A boolean variable. Default: true |
-a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" |
-a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable". |
+a_family.a_second_family.a_variable boolean mandatory | A boolean variable. Default: true |
+a_family.an_other_family.a_variable integer mandatory | A new variable. Default: the value of the variable "a root variable" (a_variable). |
+a_family.an_other_family.a_new_variable string mandatory | A new variable 2. Default: the value of "a root variable" (a_variable). |
diff --git a/tests/root_filenames/a_family_changelog.md b/tests/root_filenames/a_family_changelog.md
index e7e7d8885..3fa9ed938 100644
--- a/tests/root_filenames/a_family_changelog.md
+++ b/tests/root_filenames/a_family_changelog.md
@@ -1,8 +1,8 @@
# New variables
-| Variable | Description |
-|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
-| **a_family.a_second_family.a_variable**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A boolean variable.
**Default**: true |
-| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" |
-| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)". |
+| Variable | Description |
+|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
+| **a_family.a_second_family.a_variable**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A boolean variable.
**Default**: true |
+| **a_family.an_other_family.a_variable**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable.
**Default**: the value of the variable "[a root variable](another_path/#a_variable)" (a_variable). |
+| **a_family.an_other_family.a_new_variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | A new variable 2.
**Default**: the value of "[a root variable](another_path/#a_variable)" (a_variable). |
diff --git a/tests/root_filenames/a_family_changelog.sh b/tests/root_filenames/a_family_changelog.sh
index 30816bf76..dbf32f5f9 100644
--- a/tests/root_filenames/a_family_changelog.sh
+++ b/tests/root_filenames/a_family_changelog.sh
@@ -8,10 +8,10 @@
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1ma_family.an_other_family.a_variable[0m β A new variable. β
β [1;7m integer [0m [1;7m mandatory [0m β [1mDefault[0m: the value of the variable β
-β β "a root variable" β
+β β "a root variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββ€
β [1ma_family.an_other_family.a_new_variaβ¦[0m β A new variable 2. β
β [1;7m string [0m [1;7m mandatory [0m β [1mDefault[0m: the value of "a root β
-β β variable". β
+β β variable" (a_variable). β
βββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββ
diff --git a/tests/test_load.py b/tests/test_load.py
index b5894a11c..3ed2ba482 100644
--- a/tests/test_load.py
+++ b/tests/test_load.py
@@ -11,21 +11,21 @@ from rougail_tests.utils import get_structures_list, get_rougail_config, get_val
WITH_DONE = False
-#WITH_DONE = True
+# WITH_DONE = True
HERE = Path(__file__).parent
excludes = []
excludes = [
- '60_5family_dynamic_unknown_suffix',
- '60_5family_dynamic_variable_outside_sub_suffix',
+# '60_5family_dynamic_unknown_suffix',
+# '60_5family_dynamic_variable_outside_sub_suffix',
]
if WITH_DONE:
test_ok = get_structures_list(excludes, HERE)
else:
test_ok = get_structures_list(excludes)
-# test_ok = [HERE.parent.parent / "rougail-tests" / "structures" / "20_0multi_family_order"]
+# test_ok = [HERE.parent.parent / "rougail-tests" / "structures" / "60_5family_dynamic_variable_outside_suffix"]
os.environ['COLUMNS'] = '80'
@@ -41,6 +41,7 @@ def test_dir(request):
EXT = {'json': 'json', 'github': 'md', 'asciidoc': 'adoc', 'console': 'sh', 'gitlab': 'gitlab.md', "html": "html"}
#EXT = {'json': 'json'}
#EXT = {'console': 'sh'}
+#EXT = {'github': 'md'}
def gen_cases(ext_name):